]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/menu.h
1) APPCONF_ constants renamed to wxCONFIG_
[wxWidgets.git] / include / wx / msw / menu.h
index ff91771a08cdc77045c1fe5392fdee89ca9e8d34..d193d990483983cc53e6cd7d7ff68eb1986e496e 100644 (file)
@@ -86,6 +86,8 @@ public:
   inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
   inline wxEvtHandler *GetEventHandler(void) { return m_eventHandler; }
 
+  inline wxList& GetItems() const { return (wxList&) m_menuItems; }
+
   // IMPLEMENTATION
   bool MSWCommand(WXUINT param, WXWORD id);
 
@@ -162,6 +164,9 @@ class WXDLLEXPORT wxMenuBar: public wxEvtHandler
   inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
   inline wxEvtHandler *GetEventHandler(void) { return m_eventHandler; }
 
+  inline int GetMenuCount() const { return m_menuCount; }
+  inline wxMenu* GetMenu(int i) const { return m_menus[i]; }
+
  public:
   wxEvtHandler *            m_eventHandler;
   int                       m_menuCount;