1. wxMenu changes: wxMenuBase appears, several new functions for dynamic menu
[wxWidgets.git] / include / wx / gtk1 / menu.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/menu.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __GTKMENUH__
11 #define __GTKMENUH__
12
13 #ifdef __GNUG__
14 #pragma interface "menu.h"
15 #endif
16
17 //-----------------------------------------------------------------------------
18 // wxMenuBar
19 //-----------------------------------------------------------------------------
20
21 class wxMenuBar : public wxMenuBarBase
22 {
23 public:
24 // ctors
25 wxMenuBar();
26 wxMenuBar(long style);
27 wxMenuBar(int n, wxMenu *menus[], const wxString titles[]);
28 virtual ~wxMenuBar();
29
30 // implement base class (pure) virtuals
31 virtual bool Append( wxMenu *menu, const wxString &title );
32 virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title);
33 virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title);
34 virtual wxMenu *Remove(size_t pos);
35
36 virtual int FindMenuItem(const wxString& menuString,
37 const wxString& itemString) const;
38 virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const;
39
40 virtual void EnableTop( size_t pos, bool flag );
41 virtual void SetLabelTop( size_t pos, const wxString& label );
42 virtual wxString GetLabelTop( size_t pos ) const;
43
44 // implementation only from now on
45 void SetInvokingWindow( wxWindow *win );
46 void UnsetInvokingWindow( wxWindow *win );
47
48 GtkAccelGroup *m_accel;
49 GtkItemFactory *m_factory;
50 GtkWidget *m_menubar;
51 long m_style;
52 wxWindow *m_invokingWindow;
53
54 private:
55 DECLARE_DYNAMIC_CLASS(wxMenuBar)
56 };
57
58 //-----------------------------------------------------------------------------
59 // wxMenu
60 //-----------------------------------------------------------------------------
61
62 class wxMenu : public wxMenuBase
63 {
64 public:
65 // ctors & dtor
66 wxMenu(const wxString& title, long style = 0)
67 : wxMenuBase(title, style) { Init(); }
68
69 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
70
71 virtual ~wxMenu();
72
73 // implement base class virtuals
74 virtual bool DoAppend(wxMenuItem *item);
75 virtual bool DoInsert(size_t pos, wxMenuItem *item);
76 virtual wxMenuItem *DoRemove(wxMenuItem *item);
77
78 // TODO: virtual void SetTitle(const wxString& title);
79
80 #ifdef WXWIN_COMPATIBILITY
81 wxMenu(const wxString& title, const wxFunction func)
82 : wxMenuBase(title)
83 {
84 Callback(func);
85 }
86 #endif // WXWIN_COMPATIBILITY
87
88 // implementation
89 int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
90
91 // implementation GTK only
92 GtkWidget *m_menu; // GtkMenu
93 GtkWidget *m_owner;
94 GtkAccelGroup *m_accel;
95 GtkItemFactory *m_factory;
96
97 private:
98 // common code for all constructors:
99 void Init();
100
101 DECLARE_DYNAMIC_CLASS(wxMenu)
102 };
103
104 #endif // __GTKMENUH__