Mercurial > mercurial > hgweb_mover2.cgi
diff include/common.h @ 0:7bf900d47e9e
start mover2
author | pyon@macmini |
---|---|
date | Sat, 15 Oct 2011 13:24:27 +0900 |
parents | |
children | b47bd4618c16 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/common.h Sat Oct 15 13:24:27 2011 +0900 @@ -0,0 +1,57 @@ +// Filename : common.h +// Last Change: 15-Oct-2011. +// +#ifndef __COMMON__ +#define __COMMON__ + +#include "wx/wxprec.h" + +#ifndef WX_PRECOMP + #include "wx/wx.h" + #include <wx/icon.h> + #include <wx/dir.h> + #include <wx/menu.h> + #include <wx/string.h> + #include <wx/statusbr.h> + #include <wx/stattext.h> + #include <wx/button.h> + #include <wx/datectrl.h> + #include <wx/dateevt.h> + #include <wx/textctrl.h> + #include <wx/filepicker.h> + #include <wx/filename.h> + #include <wx/listctrl.h> + #include <wx/dir.h> + #include <wx/file.h> + #include <wx/tokenzr.h> + #include <wx/stdpaths.h> + #include <wx/sizer.h> + #include <wx/combobox.h> + #include <wx/progdlg.h> + #include <wx/frame.h> +#endif + +enum { + // mainframe + ID_MAIN = wxID_HIGHEST + 1, + ID_TEST, + + ID_MENUBARFILE, + ID_MENUITEMPARAM, + ID_MENUITEMAPPDIR, + ID_MENUITEMQUIT, + + ID_BUTTONMKDIR, + ID_TEXTCTRLDIST, + ID_TEXTCTRLGUESS, + ID_LISTCTRLVIEW, + + ID_BUTTONMOVE, + ID_BUTTONDEL, + ID_BUTTONUNDO, + + // param + ID_BUTTONSAVE, +}; +#endif // __COMMON__ +