comparison include/myframe.h @ 4:a505f7417742

v0.1 release
author pyon@macmini
date Thu, 06 Oct 2011 07:56:12 +0900
parents a5bddd859104
children 3b734fd6ee2b
comparison
equal deleted inserted replaced
3:a5bddd859104 4:a505f7417742
1 // Filename : myframe.h 1 // Filename : myframe.h
2 // Last Change: 03-Oct-2011. 2 // Last Change: 05-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
8 #ifndef WX_PRECOMP 8 #ifndef WX_PRECOMP
9 #include "wx/wx.h" 9 #include <wx/wx.h>
10 #include <wx/icon.h> 10 #include <wx/icon.h>
11 #include <wx/dir.h>
11 #include <wx/menu.h> 12 #include <wx/menu.h>
12 #include <wx/string.h> 13 #include <wx/string.h>
13 #include <wx/statusbr.h> 14 #include <wx/statusbr.h>
14 #include "wx/stattext.h" 15 #include <wx/stattext.h>
15 #include <wx/button.h> 16 #include <wx/button.h>
16 #include "wx/datectrl.h" 17 #include <wx/datectrl.h>
17 #include <wx/dateevt.h> 18 #include <wx/dateevt.h>
18 #include "wx/textctrl.h" 19 #include <wx/textctrl.h>
19 #include "wx/filepicker.h" 20 #include <wx/filepicker.h>
21 #include <wx/filename.h>
20 #include <wx/listctrl.h> 22 #include <wx/listctrl.h>
21 #include "wx/dir.h" 23 #include <wx/dir.h>
22 #include "wx/stdpaths.h" 24 #include <wx/file.h>
25 #include <wx/tokenzr.h>
26 #include <wx/stdpaths.h>
23 #include <wx/sizer.h> 27 #include <wx/sizer.h>
24 #include <wx/combobox.h> 28 #include <wx/combobox.h>
25 #include <wx/frame.h> 29 #include <wx/frame.h>
26 #endif 30 #endif
27 31
57 61
58 void OnSize( wxSizeEvent& event ); 62 void OnSize( wxSizeEvent& event );
59 void OnMove( wxMoveEvent& event ); 63 void OnMove( wxMoveEvent& event );
60 void OnQuit( wxCommandEvent& event ); 64 void OnQuit( wxCommandEvent& event );
61 void OnAbout( wxCommandEvent& event ); 65 void OnAbout( wxCommandEvent& event );
66 void OnOpenWorkDir(wxCommandEvent& event);
62 void OnDetectWhite( wxCommandEvent& event ); 67 void OnDetectWhite( wxCommandEvent& event );
63 void SetDir( wxCommandEvent& event ); 68 void SetDir( wxCommandEvent& event );
64 void MakeDir( wxCommandEvent& event ); 69 void MakeDir( wxCommandEvent& event );
70 void MoveImages( wxCommandEvent& event );
65 void SaveConfig( wxCloseEvent& event ); 71 void SaveConfig( wxCloseEvent& event );
66 void TellLocation( void ); 72 void TellLocation( void );
67 }; 73 };
68 74
69 #endif 75 #endif