comparison include/myframe.h @ 3:a5bddd859104

implement delwhtie
author pyon@macmini
date Tue, 04 Oct 2011 07:43:08 +0900
parents 1ea4f7981ff5
children a505f7417742
comparison
equal deleted inserted replaced
2:1ea4f7981ff5 3:a5bddd859104
1 // Filename : myframe.h 1 // Filename : myframe.h
2 // Last Change: 02-Oct-2011. 2 // Last Change: 03-Oct-2011.
3 // 3 //
4 #ifndef MYFRAME 4 #ifndef MYFRAME
5 #define MYFRAME 5 #define MYFRAME
6 #include "wx/wxprec.h" 6 #include "wx/wxprec.h"
7 7
41 41
42 wxStaticText* m_staticTextMoveTo; 42 wxStaticText* m_staticTextMoveTo;
43 wxComboBox* m_comboBoxMoveDrive; 43 wxComboBox* m_comboBoxMoveDrive;
44 wxDatePickerCtrl* m_datePickerCcn; 44 wxDatePickerCtrl* m_datePickerCcn;
45 wxComboBox* m_comboBoxCcn; 45 wxComboBox* m_comboBoxCcn;
46 wxButton* m_buttonSetDir;
46 wxButton* m_buttonMkDir; 47 wxButton* m_buttonMkDir;
47 48
48 wxStaticText* m_staticTextDummy; 49 wxStaticText* m_staticTextDummy;
49 wxTextCtrl* m_textCtrlMoveDir; 50 wxTextCtrl* m_textCtrlMoveDir;
50 wxButton* m_buttonDoMove; 51 wxButton* m_buttonDoMove;
57 void OnSize( wxSizeEvent& event ); 58 void OnSize( wxSizeEvent& event );
58 void OnMove( wxMoveEvent& event ); 59 void OnMove( wxMoveEvent& event );
59 void OnQuit( wxCommandEvent& event ); 60 void OnQuit( wxCommandEvent& event );
60 void OnAbout( wxCommandEvent& event ); 61 void OnAbout( wxCommandEvent& event );
61 void OnDetectWhite( wxCommandEvent& event ); 62 void OnDetectWhite( wxCommandEvent& event );
63 void SetDir( wxCommandEvent& event );
64 void MakeDir( wxCommandEvent& event );
62 void SaveConfig( wxCloseEvent& event ); 65 void SaveConfig( wxCloseEvent& event );
63 void TellLocation( void ); 66 void TellLocation( void );
64 }; 67 };
65 68
66 #endif 69 #endif