Mercurial > mercurial > hgweb_mover2.cgi
comparison include/common.h @ 0:7bf900d47e9e
start mover2
| author | pyon@macmini | 
|---|---|
| date | Sat, 15 Oct 2011 13:24:27 +0900 | 
| parents | |
| children | b47bd4618c16 | 
   comparison
  equal
  deleted
  inserted
  replaced
| -1:000000000000 | 0:7bf900d47e9e | 
|---|---|
| 1 // Filename : common.h | |
| 2 // Last Change: 15-Oct-2011. | |
| 3 // | |
| 4 #ifndef __COMMON__ | |
| 5 #define __COMMON__ | |
| 6 | |
| 7 #include "wx/wxprec.h" | |
| 8 | |
| 9 #ifndef WX_PRECOMP | |
| 10 #include "wx/wx.h" | |
| 11 #include <wx/icon.h> | |
| 12 #include <wx/dir.h> | |
| 13 #include <wx/menu.h> | |
| 14 #include <wx/string.h> | |
| 15 #include <wx/statusbr.h> | |
| 16 #include <wx/stattext.h> | |
| 17 #include <wx/button.h> | |
| 18 #include <wx/datectrl.h> | |
| 19 #include <wx/dateevt.h> | |
| 20 #include <wx/textctrl.h> | |
| 21 #include <wx/filepicker.h> | |
| 22 #include <wx/filename.h> | |
| 23 #include <wx/listctrl.h> | |
| 24 #include <wx/dir.h> | |
| 25 #include <wx/file.h> | |
| 26 #include <wx/tokenzr.h> | |
| 27 #include <wx/stdpaths.h> | |
| 28 #include <wx/sizer.h> | |
| 29 #include <wx/combobox.h> | |
| 30 #include <wx/progdlg.h> | |
| 31 #include <wx/frame.h> | |
| 32 #endif | |
| 33 | |
| 34 enum { | |
| 35 // mainframe | |
| 36 ID_MAIN = wxID_HIGHEST + 1, | |
| 37 ID_TEST, | |
| 38 | |
| 39 ID_MENUBARFILE, | |
| 40 ID_MENUITEMPARAM, | |
| 41 ID_MENUITEMAPPDIR, | |
| 42 ID_MENUITEMQUIT, | |
| 43 | |
| 44 ID_BUTTONMKDIR, | |
| 45 ID_TEXTCTRLDIST, | |
| 46 ID_TEXTCTRLGUESS, | |
| 47 ID_LISTCTRLVIEW, | |
| 48 | |
| 49 ID_BUTTONMOVE, | |
| 50 ID_BUTTONDEL, | |
| 51 ID_BUTTONUNDO, | |
| 52 | |
| 53 // param | |
| 54 ID_BUTTONSAVE, | |
| 55 }; | |
| 56 #endif // __COMMON__ | |
| 57 | 
