#ifndef __GTKMENUH__
#define __GTKMENUH__
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "menu.h"
#endif
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
+ // compatibility only
+#if wxUSE_MENU_CALLBACK
wxMenu(const wxString& title, const wxFunction func)
: wxMenuBase(title)
{
+ Init();
+
Callback(func);
}
-#endif // WXWIN_COMPATIBILITY
+#endif // WXWIN_COMPATIBILITY_2
// implementation
int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
// common code for all constructors:
void Init();
+ // common part of Append and Insert
+ bool GtkAppend(wxMenuItem *item);
+
+ // if the last menu item was a radio one, this field contains its path,
+ // otherwise it is empty
+ wxString m_pathLastRadio;
+
DECLARE_DYNAMIC_CLASS(wxMenu)
};