]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/menu.h
Implement wxMenuBar::EnableTop() for wxMSW and wxGTK.
[wxWidgets.git] / include / wx / gtk / menu.h
index 61a9bf631a4fba92697623b11887527c0841ad67..9e2f53f5a29b740a706f075e1438e7767fe63bd1 100644 (file)
@@ -33,6 +33,7 @@ public:
     virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const;
 
     virtual void EnableTop( size_t pos, bool flag );
+    virtual bool IsEnabledTop(size_t pos) const;
     virtual void SetMenuLabel( size_t pos, const wxString& label );
     virtual wxString GetMenuLabel( size_t pos ) const;
 
@@ -51,7 +52,7 @@ public:
 
 private:
     // common part of Append and Insert
-    bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1);
+    void GtkAppend(wxMenu* menu, const wxString& title, int pos = -1);
 
     void Init(size_t n, wxMenu *menus[], const wxString titles[], long style);
 
@@ -79,7 +80,7 @@ public:
     wxLayoutDirection GetLayoutDirection() const;
 
     // Returns the title, with mnemonics translated to wx format
-    const wxString GetTitle() const;
+    wxString GetTitle() const;
 
     // TODO: virtual void SetTitle(const wxString& title);
 
@@ -99,9 +100,8 @@ private:
     void Init();
 
     // common part of Append (if pos == -1)  and Insert
-    bool GtkAppend(wxMenuItem *item, int pos=-1);
+    void GtkAppend(wxMenuItem* item, int pos = -1);
 
-    GtkWidget *m_prevRadio;
 
     DECLARE_DYNAMIC_CLASS(wxMenu)
 };