-class wxMenu: public wxEvtHandler
-{
- DECLARE_DYNAMIC_CLASS(wxMenu)
-
- public:
-
- wxMenu( const wxString &title = "" );
- void AppendSeparator(void);
- void Append( int id, const wxString &item,
- const wxString &helpStr = "", bool checkable = FALSE );
- void Append( int id, const wxString &item,
- wxMenu *subMenu, const wxString &helpStr = "" );
- int FindItem( const wxString itemString ) const;
- wxMenuItem* FindItemForId( int id ) const;
- void Break(void) {};
- void Check(int id, bool Flag);
- void Enable( int id, bool enable );
- bool Enabled( int id ) const;
- void SetLabel( int id, const wxString &label );
-
- public:
-
- int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
- void SetInvokingWindow( wxWindow *win );
- wxWindow *GetInvokingWindow(void);
-
- wxString m_title;
- wxList m_items;
- wxWindow *m_invokingWindow;
-
- GtkWidget *m_menu; // GtkMenu
-
+ wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
+
+ virtual ~wxMenu();
+
+ void Attach(wxMenuBarBase *menubar);
+
+ void SetLayoutDirection(const wxLayoutDirection dir);
+ wxLayoutDirection GetLayoutDirection() const;
+
+ // Returns the title, with mnemonics translated to wx format
+ wxString GetTitle() const;
+
+ // TODO: virtual void SetTitle(const wxString& title);
+
+ // implementation GTK only
+ GtkWidget *m_menu; // GtkMenu
+ GtkWidget *m_owner;
+ GtkAccelGroup *m_accel;
+ bool m_popupShown;
+
+protected:
+ virtual wxMenuItem* DoAppend(wxMenuItem *item);
+ virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
+ virtual wxMenuItem* DoRemove(wxMenuItem *item);
+
+private:
+ // common code for all constructors:
+ void Init();
+
+ // common part of Append (if pos == -1) and Insert
+ void GtkAppend(wxMenuItem* item, int pos = -1);
+
+
+ DECLARE_DYNAMIC_CLASS(wxMenu)