diff -r a3d29fb016c3 -r f2a2f64eb682 cpp/MainWindow.hpp --- a/cpp/MainWindow.hpp Sun Feb 13 08:27:44 2011 +0100 +++ b/cpp/MainWindow.hpp Sun Feb 13 08:43:06 2011 +0100 @@ -2,11 +2,23 @@ #define _HEADER_MAINWINDOW_HPP_ #include +#include class MainWindow : public wxFrame { -public: - MainWindow(); + public: + enum + { + ID_SKIP_QUESTION, + ID_SAVE_SENTENCE + }; + + MainWindow(); + + void OnSkipQuestion(wxCommandEvent &e); + void OnSaveSentence(wxCommandEvent &e); + + DECLARE_EVENT_TABLE(); }; #endif /* _HEADER_MAINWINDOW_HPP_ */