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;
// 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;
// common code for all constructors:
void Init();
+ // common part of Append and Insert
+ bool GtkAppend(wxMenuItem *item);
+
DECLARE_DYNAMIC_CLASS(wxMenu)
};