Mercurial > mercurial > hgweb_mover.cgi
view include/myframe.h @ 8:b59dfcc84d7a default tip
v0.4b
author | pyon@macmini |
---|---|
date | Thu, 13 Oct 2011 20:13:41 +0900 |
parents | 3b734fd6ee2b |
children |
line wrap: on
line source
// Filename : myframe.h // Last Change: 13-Oct-2011. // #ifndef MYFRAME #define MYFRAME #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 ////////////////////////////////////////////////////////////////////////// class MyFrame : public wxFrame { DECLARE_EVENT_TABLE() public: wxMenuBar* m_menubar; wxMenu* m_menuFile; wxStatusBar* m_statusBar; wxStaticText* m_staticTextWork; wxDirPickerCtrl* m_dirPickerWork; wxButton* m_buttonDetWhite; wxStaticText* m_staticTextMoveTo; wxComboBox* m_comboBoxMoveDrive; wxDatePickerCtrl* m_datePickerCcn; wxComboBox* m_comboBoxCcn; wxButton* m_buttonSetDir; wxButton* m_buttonMkDir; wxStaticText* m_staticTextDummy; wxTextCtrl* m_textCtrlMoveDir; wxButton* m_buttonDoMove; wxListCtrl* m_listCtrl; MyFrame( wxWindow* parent, wxWindowID id, const wxString& title ); ~MyFrame(); void OnSize( wxSizeEvent& event ); void OnMove( wxMoveEvent& event ); void OnQuit( wxCommandEvent& event ); void OnAbout( wxCommandEvent& event ); void OnOpenWorkDir(wxCommandEvent& event); void OnDetectWhite( wxCommandEvent& event ); void SetDir( wxCommandEvent& event ); void MakeDir( wxCommandEvent& event ); void OnOpenHhsDir(wxListEvent& event); void MoveImages( wxCommandEvent& event ); void SaveConfig( wxCloseEvent& event ); void TellLocation( void ); }; #endif //__MYFRAME__