comparison include/myframe.h @ 8:550c143ab194

implement NextThursday button.
author pyon@macmini
date Wed, 19 Oct 2011 20:36:52 +0900
parents 52697c869ce8
children dfa5cae8c992
comparison
equal deleted inserted replaced
7:a43adb9537b2 8:550c143ab194
1 // Filename : myframe.h 1 // Filename : myframe.h
2 // Last Change: 17-Oct-2011. 2 // Last Change: 19-Oct-2011.
3 // 3 //
4 4
5 #ifndef __myframe__ 5 #ifndef __myframe__
6 #define __myframe__ 6 #define __myframe__
7 7
23 wxDirPickerCtrl* m_dirPickerWork; 23 wxDirPickerCtrl* m_dirPickerWork;
24 wxStaticText* m_staticTextDrive; 24 wxStaticText* m_staticTextDrive;
25 wxComboBox* m_comboBoxDrive; 25 wxComboBox* m_comboBoxDrive;
26 wxStaticText* m_staticTextDate; 26 wxStaticText* m_staticTextDate;
27 wxDatePickerCtrl* m_datePicker; 27 wxDatePickerCtrl* m_datePicker;
28 wxButton* m_buttonNextThu;
28 wxStaticText* m_staticTextCcn; 29 wxStaticText* m_staticTextCcn;
29 wxComboBox* m_comboBoxCcn; 30 wxComboBox* m_comboBoxCcn;
30 wxButton* m_buttonMkDir; 31 wxButton* m_buttonMkDir;
31 wxStaticText* m_staticTextDist; 32 wxStaticText* m_staticTextDist;
32 wxTextCtrl* m_textCtrlDist; 33 wxTextCtrl* m_textCtrlDist;
40 41
41 wxListCtrl* m_listCtrlView; 42 wxListCtrl* m_listCtrlView;
42 43
43 wxButton* m_buttonDetect; 44 wxButton* m_buttonDetect;
44 wxButton* m_buttonMove; 45 wxButton* m_buttonMove;
45 //wxButton* m_buttonMD;
46 wxButton* m_buttonDel; 46 wxButton* m_buttonDel;
47 wxButton* m_buttonUndo; 47 wxButton* m_buttonUndo;
48 48
49 public: 49 public:
50 MyFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL ); 50 MyFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL );
51 ~MyFrame(); 51 ~MyFrame();
52 52
53 void OnParam(wxCommandEvent& event); 53 void OnParam(wxCommandEvent& event);
54 void OnNextThursday(wxCommandEvent& event);
54 void OnMakeDir(wxCommandEvent& event); 55 void OnMakeDir(wxCommandEvent& event);
55 void GetImageInfo(wxListEvent& event); 56 void GetImageInfo(wxListEvent& event);
56 void ViewLarge(wxListEvent& event); 57 void ViewLarge(wxListEvent& event);
57 void OnDetect(wxCommandEvent& event); 58 void OnDetect(wxCommandEvent& event);
58 void OnMove(wxCommandEvent& event); 59 void OnMove(wxCommandEvent& event);
59 void OnMoveAndDetect(wxCommandEvent& event); 60 void OnMoveAndDetect(wxCommandEvent& event);
60 void OnDelete(wxCommandEvent& event); 61 void OnDelete(wxCommandEvent& event);
61 void OnUndo(wxCommandEvent& event); 62 void OnUndo(wxCommandEvent& event);
62 void ReadyImage(void); 63 void ReadyImage(void);
63 //void MoveImage(void);
64 // $B0J2<!$Dj7?$b$N(B 64 // $B0J2<!$Dj7?$b$N(B
65 void OnWinSize(wxSizeEvent& event); 65 void OnWinSize(wxSizeEvent& event);
66 void OnWinMove(wxMoveEvent& event); 66 void OnWinMove(wxMoveEvent& event);
67 void TellLocation( void ); 67 void TellLocation( void );
68 void OnOpenAppDir(wxCommandEvent& event); 68 void OnOpenAppDir(wxCommandEvent& event);