]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/menu.h
compilation fixes
[wxWidgets.git] / include / wx / gtk1 / menu.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: 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
11 #ifndef __GTKMENUH__
12 #define __GTKMENUH__
13
14 #ifdef __GNUG__
15 #pragma interface
16 #endif
17
18 #include "wx/defs.h"
19 #include "wx/object.h"
20 #include "wx/list.h"
21 #include "wx/window.h"
22 #include "wx/menuitem.h"
23
24 //-----------------------------------------------------------------------------
25 // classes
26 //-----------------------------------------------------------------------------
27
28 class wxMenuBar;
29 class wxMenuItem;
30 class wxMenu;
31
32 //-----------------------------------------------------------------------------
33 // const
34 //-----------------------------------------------------------------------------
35
36 #define ID_SEPARATOR (-1)
37
38 //-----------------------------------------------------------------------------
39 // wxMenuBar
40 //-----------------------------------------------------------------------------
41
42 class wxMenuBar : public wxWindow
43 {
44 DECLARE_DYNAMIC_CLASS(wxMenuBar)
45
46 public:
47 // ctors
48 wxMenuBar();
49 wxMenuBar(long style);
50 wxMenuBar(int n, wxMenu *menus[], const wxString titles[]);
51 ~wxMenuBar();
52
53 // menubar construction
54 void Append( wxMenu *menu, const wxString &title );
55
56 // item search
57 // by menu and item names, returns wxNOT_FOUND if not found
58 virtual int FindMenuItem(const wxString& menuString,
59 const wxString& itemString) const;
60 // returns NULL if not found
61 wxMenuItem* FindItem( int id ) const;
62 // returns NULL if not found, fills menuForItem if !NULL
63 wxMenuItem *FindItemForId(int itemId, wxMenu **menuForItem = NULL) const;
64
65 // state control
66 void Check( int id, bool check );
67 bool IsChecked( int id ) const;
68 void Enable( int id, bool enable );
69 bool IsEnabled( int id ) const;
70
71 void SetLabel( int id, const wxString &label );
72 wxString GetLabel( int id ) const;
73 wxString GetLabel() const { return wxWindow::GetLabel(); }
74
75 void EnableTop( int pos, bool flag );
76 void SetLabelTop( int pos, const wxString& label );
77 wxString GetLabelTop( int pos ) const;
78
79 virtual void SetHelpString( int id, const wxString& helpString );
80 virtual wxString GetHelpString( int id ) const;
81
82 int GetMenuCount() const { return m_menus.Number(); }
83 wxMenu *GetMenu( int n ) const { return (wxMenu *)m_menus.Nth(n)->Data(); }
84
85 #ifdef WXWIN_COMPATIBILITY
86 // compatibility: these functions are deprecated
87 bool Enabled(int id) const { return IsEnabled(id); }
88 bool Checked(int id) const { return IsChecked(id); }
89
90 wxMenuItem* FindMenuItemById( int id ) const { return FindItem(id); }
91 #endif // WXWIN_COMPATIBILITY
92
93 // implementation only
94 wxList& GetMenus() { return m_menus; }
95
96 void SetInvokingWindow( wxWindow *win );
97 void UnsetInvokingWindow( wxWindow *win );
98
99 GtkAccelGroup *m_accel;
100 GtkItemFactory *m_factory;
101 wxList m_menus;
102 GtkWidget *m_menubar;
103 long m_style;
104 };
105
106 //-----------------------------------------------------------------------------
107 // wxMenu
108 //-----------------------------------------------------------------------------
109
110 class wxMenu : public wxEvtHandler
111 {
112 DECLARE_DYNAMIC_CLASS(wxMenu)
113
114 public:
115 #ifdef WXWIN_COMPATIBILITY
116 wxMenu( const wxString& title, const wxFunction func)
117 {
118 Init(title, 0, func);
119 }
120 #endif
121 wxMenu( const wxString& title = wxEmptyString, long style = 0 )
122 {
123 Init(title, style);
124 }
125
126 ~wxMenu();
127
128 // operations
129 // title
130 void SetTitle(const wxString& label);
131 const wxString GetTitle() const;
132 // menu creation
133 void AppendSeparator();
134 void Append(int id, const wxString &item,
135 const wxString &helpStr = "", bool checkable = FALSE);
136 void Append(int id, const wxString &item,
137 wxMenu *subMenu, const wxString &helpStr = "" );
138 void Append(wxMenuItem *pItem);
139 void Break() { }
140
141 // find item by name/id
142 int FindItem( const wxString itemString ) const;
143 wxMenuItem *FindItem( int id ) const;
144
145 // get/set item's state
146 void Enable( int id, bool enable );
147 bool IsEnabled( int id ) const;
148 void Check( int id, bool check );
149 bool IsChecked( int id ) const;
150
151 void SetLabel( int id, const wxString &label );
152 wxString GetLabel( int id ) const;
153
154 // helpstring
155 virtual void SetHelpString(int id, const wxString& helpString);
156 virtual wxString GetHelpString(int id) const ;
157
158 // accessors
159 wxList& GetItems() { return m_items; }
160
161 void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
162 wxEvtHandler *GetEventHandler() { return m_eventHandler; }
163
164 void SetClientData( void* clientData ) { m_clientData = clientData; }
165 void* GetClientData() const { return m_clientData; }
166
167 // Updates the UI for a menu and all submenus recursively.
168 // source is the object that has the update event handlers
169 // defined for it. If NULL, the menu or associated window
170 // will be used.
171 void UpdateUI(wxEvtHandler* source = (wxEvtHandler*) NULL);
172
173 wxMenuItem *FindItemForId( int id ) const { return FindItem( id ); }
174
175 #ifdef WXWIN_COMPATIBILITY
176 wxFunction GetCallback() const { return m_callback; }
177 void Callback(const wxFunction func) { m_callback = func; }
178
179 // compatibility: these functions are deprecated
180 bool Enabled(int id) const { return IsEnabled(id); }
181 bool Checked(int id) const { return IsChecked(id); }
182
183 wxFunction m_callback;
184 #endif // WXWIN_COMPATIBILITY
185
186 // implementation
187 int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
188 void SetInvokingWindow( wxWindow *win );
189 wxWindow *GetInvokingWindow();
190
191 // implementation GTK only
192 GtkWidget *m_menu; // GtkMenu
193 GtkWidget *m_owner;
194 GtkAccelGroup *m_accel;
195 GtkItemFactory *m_factory;
196
197 // used by wxMenuBar
198 long GetStyle(void) const { return m_style; }
199
200 private:
201 // common code for both constructors:
202 void Init( const wxString& title,
203 long style
204 #ifdef WXWIN_COMPATIBILITY
205 , const wxFunction func = (wxFunction) NULL
206 #endif
207 );
208
209 wxString m_title;
210 wxList m_items;
211 wxWindow *m_invokingWindow;
212 wxEvtHandler *m_eventHandler;
213 void *m_clientData;
214 long m_style;
215 };
216
217 #endif // __GTKMENUH__