00001
00002
00003
00004 #include <wx-2.6/wx/wx.h>
00005
00006 class MyApp : public wxApp
00007 {
00008 virtual bool OnInit();
00009 };
00010
00011 class MyFrame : public wxFrame
00012 {
00013 public:
00014 MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size);
00015
00016 void OnQuit(wxCommandEvent& event);
00017 void OnAbout(wxCommandEvent& event);
00018
00019 DECLARE_EVENT_TABLE()
00020 };
00021
00022
00023
00024 enum {ID_Quit = 1, ID_About};
00025 BEGIN_EVENT_TABLE(MyFrame, wxFrame)
00026 EVT_MENU(ID_Quit,MyFrame::OnQuit)
00027 EVT_MENU(ID_About,MyFrame::OnAbout)
00028 END_EVENT_TABLE()