X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1987af7e9f5685198b0c19e2326eebf7e56b7834..82ea63e6e046652bc0799badd9d62f91c9918dbe:/include/wx/gtk/menu.h diff --git a/include/wx/gtk/menu.h b/include/wx/gtk/menu.h index 13d2f6b343..fa6580f0ab 100644 --- a/include/wx/gtk/menu.h +++ b/include/wx/gtk/menu.h @@ -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) };