Mercurial > mercurial > hgweb_madnm.cgi
comparison include/mainframe.h @ 1:f40a65687079
small fix.
author | pyon@macmini |
---|---|
date | Mon, 10 Jun 2019 05:56:36 +0900 |
parents | 2f5584f0d127 |
children | 45d4fd954c31 |
comparison
equal
deleted
inserted
replaced
0:2f5584f0d127 | 1:f40a65687079 |
---|---|
1 // Filename : mainframe.h | 1 // Filename : mainframe.h |
2 // Last Change: 2019-06-07 Fri 22:20:40. | 2 // Last Change: 2019-06-09 Sun 16:31:59. |
3 // | 3 // |
4 #pragma once | 4 #pragma once |
5 | 5 |
6 #include <wx/artprov.h> | 6 #include <wx/artprov.h> |
7 #include <wx/bitmap.h> | 7 #include <wx/bitmap.h> |
64 wxStaticText* m_staticTextDate; | 64 wxStaticText* m_staticTextDate; |
65 wxDatePickerCtrl* m_datePicker; | 65 wxDatePickerCtrl* m_datePicker; |
66 wxStaticText* m_staticTextCcn; | 66 wxStaticText* m_staticTextCcn; |
67 wxComboBox* m_comboBox; | 67 wxComboBox* m_comboBox; |
68 wxStaticText* m_staticTextDrive; | 68 wxStaticText* m_staticTextDrive; |
69 //wxComboBox* m_comboBoxDrive2; // check list box | 69 wxCheckListBox* m_checkList; |
70 wxButton* m_buttonMkdir; | 70 wxButton* m_buttonMkdir; |
71 | 71 |
72 wxStaticLine* m_staticline; | 72 wxStaticLine* m_staticline; |
73 wxCheckBox* m_checkBox; | 73 wxCheckBox* m_checkBox; |
74 wxButton* m_button30; // ? | 74 wxButton* m_button30; // ? |
102 wxDirPickerCtrl* m_dirPicker; | 102 wxDirPickerCtrl* m_dirPicker; |
103 wxButton* m_buttonSelectAll; | 103 wxButton* m_buttonSelectAll; |
104 wxButton* m_buttonDel; | 104 wxButton* m_buttonDel; |
105 wxSlider* m_slider; | 105 wxSlider* m_slider; |
106 wxButton* m_buttonUpdate; | 106 wxButton* m_buttonUpdate; |
107 //* m_customControl; | 107 ListThumbnail* m_listViewThumb; |
108 | 108 |
109 wxCollapsiblePane* m_collapsiblePane; | 109 wxCollapsiblePane* m_collapsiblePane; |
110 wxTextCtrl* m_textCtrlMsg; | 110 wxTextCtrl* m_textCtrlMsg; |
111 | 111 |
112 public: | 112 public: |
138 void OnSpinH3( wxSpinEvent& event ); | 138 void OnSpinH3( wxSpinEvent& event ); |
139 void OnSpinH4( wxSpinEvent& event ); | 139 void OnSpinH4( wxSpinEvent& event ); |
140 | 140 |
141 void OnMakeDir( wxCommandEvent& event ); | 141 void OnMakeDir( wxCommandEvent& event ); |
142 void OnPrint( wxCommandEvent& event ); | 142 void OnPrint( wxCommandEvent& event ); |
143 | |
144 void OnHno( wxCommandEvent& event ); | |
143 void OnMove( wxCommandEvent& event ); | 145 void OnMove( wxCommandEvent& event ); |
146 | |
147 void OnUpdate( wxCommandEvent& event); | |
144 | 148 |
145 void OnClose( wxCloseEvent& event ); | 149 void OnClose( wxCloseEvent& event ); |
146 | 150 |
147 void CreateControls( void ); | 151 void CreateControls( void ); |
148 void SetCanvas( void ); | 152 void UpdateCanvas( void ); |
153 void UpdateThumbnail( void ); | |
149 void LookMarksheet( wxString file ); | 154 void LookMarksheet( wxString file ); |
150 void DoMask( wxString file, wxRect rect ); | 155 void DoMask( wxString file, wxRect rect ); |
151 }; | 156 }; |
152 | 157 |