diff include/batchprint.h @ 16:b651aa41b9d4 default tip

hhsinfo method (server)
author pyon@macmini
date Mon, 15 Jul 2019 07:03:05 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/batchprint.h	Mon Jul 15 07:03:05 2019 +0900
@@ -0,0 +1,59 @@
+// Filename   : batchprint.h
+// Last Change: 2019-07-09 ‰Î 08:18:52.
+//
+
+#pragma once
+
+#include <wx/artprov.h>
+#include <wx/xrc/xmlres.h>
+#include <wx/gdicmn.h>
+#include <wx/font.h>
+#include <wx/colour.h>
+#include <wx/settings.h>
+#include <wx/string.h>
+#include <wx/dataview.h>
+#include <wx/listbox.h>
+#include <wx/button.h>
+#include <wx/sizer.h>
+#include <wx/gbsizer.h>
+#include <wx/frame.h>
+#include <wx/stattext.h>
+#include <wx/datectrl.h>
+#include <wx/dateevt.h>
+#include <wx/filepicker.h>
+
+class BatchPrintFrame : public wxFrame
+{
+    DECLARE_EVENT_TABLE()
+	private:
+
+	protected:
+		wxStaticText*     m_staticText;
+		wxFilePickerCtrl* m_filePicker;
+		wxButton*         m_buttonLoad;
+
+		wxDataViewListCtrl* m_dataViewListCtrl;
+		wxDataViewColumn*   m_dataViewListColumnCheck;
+		wxDataViewColumn*   m_dataViewListColumnNo;
+		wxDataViewColumn*   m_dataViewListColumnHno;
+		wxDataViewColumn*   m_dataViewListColumnName;
+		wxDataViewColumn*   m_dataViewListColumnKana;
+		wxDataViewColumn*   m_dataViewListColumnStatus;
+
+		wxButton*           m_buttonMaskPrint;
+		wxButton*           m_buttonPrint;
+		wxButton*           m_buttonUnCheckAll;
+		wxButton*           m_buttonCheckAll;
+		wxButton*           m_buttonClear;
+		wxButton*           m_buttonDel;
+		wxButton*           m_buttonClose;
+
+	public:
+		BatchPrintFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 500,300 ), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL );
+		~BatchPrintFrame();
+
+		void OnCheckAll();
+		void OnUnCheckAll();
+		void OnClear();
+};
+