X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a3622daa901777a33969d8bc04e2d62dee14d164..30dea05497c1f00d72d7dbf7f2f4818dfaa0e500:/include/wx/msw/menu.h diff --git a/include/wx/msw/menu.h b/include/wx/msw/menu.h index f2ced3f6d4..68f3f67d08 100644 --- a/include/wx/msw/menu.h +++ b/include/wx/msw/menu.h @@ -9,8 +9,8 @@ // Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// -#ifndef __MENUH__ -#define __MENUH__ +#ifndef _WX_MENU_H_ +#define _WX_MENU_H_ #ifdef __GNUG__ #pragma interface "menu.h" @@ -19,9 +19,9 @@ #include "wx/defs.h" #include "wx/event.h" -class wxMenuItem; -class wxMenuBar; -class wxMenu; +class WXDLLEXPORT wxMenuItem; +class WXDLLEXPORT wxMenuBar; +class WXDLLEXPORT wxMenu; WXDLLEXPORT_DATA(extern const char*) wxEmptyString; @@ -45,7 +45,7 @@ public: void Append(int id, const wxString& Label, const wxString& helpString = wxEmptyString, bool checkable = FALSE); // a submenu - void Append(int id, const wxString& Label, wxMenu *SubMenu, + void Append(int id, const wxString& Label, wxMenu *SubMenu, const wxString& helpString = wxEmptyString); // the most generic form (create wxMenuItem first and use it's functions) void Append(wxMenuItem *pItem); @@ -125,7 +125,7 @@ public: // ---------------------------------------------------------------------------- // Menu Bar (a la Windows) // ---------------------------------------------------------------------------- -class wxFrame; +class WXDLLEXPORT wxFrame; class WXDLLEXPORT wxMenuBar: public wxEvtHandler { DECLARE_DYNAMIC_CLASS(wxMenuBar) @@ -162,9 +162,6 @@ public: // menu too if itemMenu is non-NULL. wxMenuItem *FindItemForId(int itemId, wxMenu **menuForItem = NULL) const ; - int GetMenuCount() const { return m_menuCount; } - wxMenu *GetMenu(int n) const { return m_menus[n]; } - inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; } inline wxEvtHandler *GetEventHandler() { return m_eventHandler; } @@ -180,4 +177,4 @@ public: WXHMENU m_hMenu; }; -#endif // __MENUH__ +#endif // _WX_MENU_H_