comparison include/myframe.h @ 1:b47bd4618c16

design done.
author pyon@macmini
date Sat, 15 Oct 2011 20:07:12 +0900
parents 7bf900d47e9e
children e4ba3cc9b4b1
comparison
equal deleted inserted replaced
0:7bf900d47e9e 1:b47bd4618c16
36 wxStaticBitmap* m_bitmapHHsno; 36 wxStaticBitmap* m_bitmapHHsno;
37 wxStaticText* m_staticTextGuess; 37 wxStaticText* m_staticTextGuess;
38 wxTextCtrl* m_textCtrlGuess; 38 wxTextCtrl* m_textCtrlGuess;
39 39
40 wxListCtrl* m_listCtrlView; 40 wxListCtrl* m_listCtrlView;
41
42 wxButton* m_buttonDetect;
41 wxButton* m_buttonMove; 43 wxButton* m_buttonMove;
44 wxButton* m_buttonMD;
42 wxButton* m_buttonDel; 45 wxButton* m_buttonDel;
43 wxButton* m_buttonUndo; 46 wxButton* m_buttonUndo;
44 47
45 public: 48 public:
46 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 ); 49 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 );
47 ~MyFrame(); 50 ~MyFrame();
48 51
49 void SetDir(wxCommandEvent& event); 52 void OnParam(wxCommandEvent& event);
50 void MakeDir(wxCommandEvent& event); 53 void MakeDir(wxCommandEvent& event);
51 void Do(wxCommandEvent& event); 54 void ToggleSelect(wxListEvent& event);
55 void OnDetect(wxCommandEvent& event);
56 void OnMove(wxCommandEvent& event);
57 void OnMoveAndDetect(wxCommandEvent& event);
52 void ReadyImage(void); 58 void ReadyImage(void);
53 void MoveImage(void); 59 void MoveImage(void);
54 // $B0J2<!$Dj7?$b$N(B 60 // $B0J2<!$Dj7?$b$N(B
55 void OnSize(wxSizeEvent& event); 61 void OnWinSize(wxSizeEvent& event);
56 void OnMove(wxMoveEvent& event); 62 void OnWinMove(wxMoveEvent& event);
57 void TellLocation( void ); 63 void TellLocation( void );
64 void OnOpenAppDir(wxCommandEvent& event);
58 void OnQuit(wxCommandEvent& event); 65 void OnQuit(wxCommandEvent& event);
59 void OnOpenAppDir(wxCommandEvent& event);
60 void SaveConfig(wxCloseEvent& event); 66 void SaveConfig(wxCloseEvent& event);
61 }; 67 };
62 68
63 #endif // __myframe__ 69 #endif // __myframe__
64 70