- // ctor & dtor
- wxMenuItem(wxMenu *pParentMenu = NULL, int id = ID_SEPARATOR,
- const wxString& strName = "", const wxString& wxHelp = "",
- bool bCheckable = FALSE, wxMenu *pSubMenu = NULL);
- virtual ~wxMenuItem();
-
- // accessors (some more are inherited from wxOwnerDrawn or are below)
- bool IsSeparator() const { return m_idItem == ID_SEPARATOR; }
- bool IsEnabled() const { return m_bEnabled; }
- bool IsChecked() const { return m_bChecked; }
-
- int GetId() const { return m_idItem; }
- const wxString& GetHelp() const { return m_strHelp; }
- wxMenu *GetSubMenu() const { return m_pSubMenu; }
-
- // operations
- void SetName(const wxString& strName) { m_strName = strName; }
- void SetHelp(const wxString& strHelp) { m_strHelp = strHelp; }
-
- void Enable(bool bDoEnable = TRUE);
- void Check(bool bDoCheck = TRUE);
-
- void DeleteSubMenu();
-
- //// Motif-specific
-
- // These two should probably exist for all ports
- void SetLabel(const wxString& label);
- wxString GetLabel() const { return m_strName; }
- void CreateItem (WXWidget menu, wxMenuBar * menuBar, wxMenu * topMenu);
- void DestroyItem(bool full);
-
- inline WXWidget GetButtonWidget() const { return m_buttonWidget; }
- inline void SetChecked(bool check) { m_bChecked = check; }
- inline wxMenuBar* GetMenuBar() const { return m_menuBar; }
- inline void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; }
- inline wxMenu* GetTopMenu() const { return m_topMenu; }
- inline void SetTopMenu(wxMenu* menu) { m_topMenu = menu; }
+ // ctor & dtor
+ wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL,
+ int id = wxID_SEPARATOR,
+ const wxString& text = wxEmptyString,
+ const wxString& help = wxEmptyString,
+ wxItemKind kind = wxITEM_NORMAL,
+ wxMenu *subMenu = (wxMenu *)NULL);
+ virtual ~wxMenuItem();
+
+ // accessors (some more are inherited from wxOwnerDrawn or are below)
+ virtual void SetItemLabel(const wxString& label);
+ virtual void Enable(bool enable = true);
+ virtual void Check(bool check = true);
+ // included SetBitmap and GetBitmap as copied from the GTK include file
+ // I'm not sure if this works but it silences the linker in the
+ // menu sample.
+ // JJ
+ virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; }
+ virtual const wxBitmap& GetBitmap() const { return m_bitmap; }
+
+ // implementation from now on
+ void CreateItem (WXWidget menu, wxMenuBar * menuBar, wxMenu * topMenu,
+ size_t index);
+ void DestroyItem(bool full);
+
+ WXWidget GetButtonWidget() const { return m_buttonWidget; }
+
+ wxMenuBar* GetMenuBar() const { return m_menuBar; }
+ void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; }
+
+ wxMenu* GetTopMenu() const { return m_topMenu; }
+ void SetTopMenu(wxMenu* menu) { m_topMenu = menu; }