]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/menu.h
Chnages to mono-bitmap code.
[wxWidgets.git] / include / wx / gtk / menu.h
index 13d2f6b343f4ecefb3e4be441700a088d58783ca..fa6580f0abeb6a9ecd74a720dd97933b039e3413 100644 (file)
@@ -45,6 +45,9 @@ public:
     void SetInvokingWindow( wxWindow *win );
     void UnsetInvokingWindow( wxWindow *win );
 
+    // common part of Append and Insert
+    bool GtkAppend(wxMenu *menu, const wxString& title);
+
     GtkAccelGroup   *m_accel;
     GtkItemFactory  *m_factory;
     GtkWidget       *m_menubar;
@@ -77,13 +80,11 @@ public:
 
     // TODO: virtual void SetTitle(const wxString& title);
 
-#if WXWIN_COMPATIBILITY
     wxMenu(const wxString& title, const wxFunction func)
         : wxMenuBase(title)
     {
         Callback(func);
     }
-#endif // WXWIN_COMPATIBILITY
 
     // implementation
     int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
@@ -98,6 +99,9 @@ private:
     // common code for all constructors:
     void Init();
 
+    // common part of Append and Insert
+    bool GtkAppend(wxMenuItem *item);
+
     DECLARE_DYNAMIC_CLASS(wxMenu)
 };