X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1483e5db8d719803c2d04984fd5ad85176964e16..f155075229d771430f0793700f5048ad4be00e9d:/samples/mdi/mdi.h?ds=sidebyside diff --git a/samples/mdi/mdi.h b/samples/mdi/mdi.h index 550ee6720e..4d84f6cf49 100644 --- a/samples/mdi/mdi.h +++ b/samples/mdi/mdi.h @@ -6,7 +6,7 @@ // Created: 04/01/98 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #include "wx/toolbar.h" @@ -45,6 +45,8 @@ public: MyFrame(); virtual ~MyFrame(); + static wxMenuBar *CreateMainMenubar(); + private: void InitToolBar(wxToolBar* toolBar); @@ -92,13 +94,33 @@ private: MyCanvas *m_canvas; + // simple test event handler class + class EventHandler : public wxEvtHandler + { + public: + EventHandler(unsigned numChild) : m_numChild(numChild) { } + + private: + void OnRefresh(wxCommandEvent& event) + { + wxLogMessage("Child #%u refreshed.", m_numChild); + event.Skip(); + } + + const unsigned m_numChild; + + DECLARE_EVENT_TABLE() + + wxDECLARE_NO_COPY_CLASS(EventHandler); + }; + DECLARE_EVENT_TABLE() }; // menu items ids enum { - MDI_FULLSCREEN, + MDI_FULLSCREEN = 100, MDI_REFRESH, MDI_CHANGE_TITLE, MDI_CHANGE_POSITION,