]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/menu.cpp
Updates to memcheck
[wxWidgets.git] / src / gtk / menu.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: menu.cpp
3// Purpose:
4// Author: Robert Roebling
5// Created: 01/02/97
96fd301f 6// Id: $Id$
c801d85f 7// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
96fd301f 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
11
12#ifdef __GNUG__
13#pragma implementation "menu.h"
14#endif
15
16#include "wx/menu.h"
96fd301f 17#include "wx/log.h"
30dea054 18#include "wx/intl.h"
c801d85f
KB
19
20//-----------------------------------------------------------------------------
21// wxMenuBar
22//-----------------------------------------------------------------------------
23
24IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow)
25
96fd301f 26wxMenuBar::wxMenuBar()
c801d85f
KB
27{
28 m_needParent = FALSE; // hmmm
96fd301f 29
c67daf87 30 PreCreation( (wxWindow *) NULL, -1, wxDefaultPosition, wxDefaultSize, 0, "menu" );
c801d85f
KB
31
32 m_menus.DeleteContents( TRUE );
96fd301f 33
c801d85f 34 m_widget = gtk_handle_box_new();
96fd301f 35
c801d85f 36 m_menubar = gtk_menu_bar_new();
96fd301f 37
c801d85f 38 gtk_container_add( GTK_CONTAINER(m_widget), m_menubar );
96fd301f 39
c801d85f 40 gtk_widget_show( m_menubar );
96fd301f 41
c801d85f
KB
42 PostCreation();
43
44 Show( TRUE );
6de97a3b 45}
c801d85f
KB
46
47void wxMenuBar::Append( wxMenu *menu, const wxString &title )
48{
49 m_menus.Append( menu );
50 menu->m_title = title; // ??????
96fd301f 51
d355d3fe 52 int pos;
c801d85f
KB
53 do {
54 pos = menu->m_title.First( '&' );
d355d3fe
RR
55 if (pos != -1) menu->m_title.Remove( pos, 1 );
56 } while (pos != -1);
96fd301f 57
c801d85f
KB
58 GtkWidget *root_menu;
59 root_menu = gtk_menu_item_new_with_label( WXSTRINGCAST(menu->m_title) );
60 gtk_widget_show( root_menu );
61 gtk_menu_item_set_submenu( GTK_MENU_ITEM(root_menu), menu->m_menu );
96fd301f 62
c801d85f 63 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar), root_menu );
6de97a3b 64}
96fd301f 65
716b7364 66static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString )
c801d85f
KB
67{
68 if (menu->m_title == menuString)
69 {
70 int res = menu->FindItem( itemString );
71 if (res != -1) return res;
6de97a3b 72 }
c801d85f
KB
73 wxNode *node = menu->m_items.First();
74 while (node)
75 {
76 wxMenuItem *item = (wxMenuItem*)node->Data();
96fd301f
VZ
77 if (item->IsSubMenu())
78 return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString);
c801d85f 79 node = node->Next();
6de97a3b 80 }
c801d85f 81 return -1;
6de97a3b 82}
c801d85f
KB
83
84int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const
85{
86 wxNode *node = m_menus.First();
87 while (node)
88 {
89 wxMenu *menu = (wxMenu*)node->Data();
90 int res = FindMenuItemRecursive( menu, menuString, itemString);
91 if (res != -1) return res;
92 node = node->Next();
6de97a3b 93 }
c801d85f 94 return -1;
6de97a3b 95}
c801d85f 96
716b7364 97// Find a wxMenuItem using its id. Recurses down into sub-menus
96fd301f 98static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id)
716b7364 99{
96fd301f 100 wxMenuItem* result = menu->FindItem(id);
716b7364
RR
101
102 wxNode *node = menu->m_items.First();
96fd301f 103 while ( node && result == NULL ) {
716b7364 104 wxMenuItem *item = (wxMenuItem*)node->Data();
96fd301f
VZ
105 if ( item->IsSubMenu() )
106 result = FindMenuItemByIdRecursive( item->GetSubMenu(), id );
716b7364 107 node = node->Next();
6de97a3b 108 }
96fd301f 109
716b7364 110 return result;
6de97a3b 111}
716b7364
RR
112
113wxMenuItem* wxMenuBar::FindMenuItemById( int id ) const
114{
115 wxMenuItem* result = 0;
116 wxNode *node = m_menus.First();
117 while (node && result == 0)
118 {
119 wxMenu *menu = (wxMenu*)node->Data();
120 result = FindMenuItemByIdRecursive( menu, id );
121 node = node->Next();
122 }
123 return result;
124}
125
54ff4a70
RR
126void wxMenuBar::Check( int id, bool check )
127{
128 wxMenuItem* item = FindMenuItemById( id );
129 if (item) item->Check(check);
6de97a3b 130}
54ff4a70
RR
131
132bool wxMenuBar::Checked( int id ) const
716b7364
RR
133{
134 wxMenuItem* item = FindMenuItemById( id );
135 if (item) return item->IsChecked();
136 return FALSE;
6de97a3b 137}
716b7364 138
54ff4a70
RR
139void wxMenuBar::Enable( int id, bool enable )
140{
141 wxMenuItem* item = FindMenuItemById( id );
142 if (item) item->Enable(enable);
6de97a3b 143}
54ff4a70
RR
144
145bool wxMenuBar::Enabled( int id ) const
716b7364
RR
146{
147 wxMenuItem* item = FindMenuItemById( id );
148 if (item) return item->IsEnabled();
149 return FALSE;
6de97a3b 150}
716b7364 151
c801d85f 152//-----------------------------------------------------------------------------
cf7a7e13 153// "activate"
c801d85f
KB
154//-----------------------------------------------------------------------------
155
6de97a3b 156static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
c801d85f 157{
c801d85f 158 int id = menu->FindMenuIdByMenuItem(widget);
96fd301f
VZ
159
160 wxASSERT( id != -1 ); // should find it!
161
6de97a3b 162 if (!menu->IsEnabled(id)) return;
96fd301f 163
cf7a7e13
RR
164 wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, id );
165 event.SetEventObject( menu );
166 event.SetInt(id );
167
168 if (menu->m_callback)
169 {
170 (void) (*(menu->m_callback)) (*menu, event);
171 return;
172 }
173
174 if (menu->GetEventHandler()->ProcessEvent(event)) return;
175
176 wxWindow *win = menu->GetInvokingWindow();
177 if (win) win->GetEventHandler()->ProcessEvent( event );
178}
179
180//-----------------------------------------------------------------------------
181// "select"
182//-----------------------------------------------------------------------------
183
184static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu )
185{
186 int id = menu->FindMenuIdByMenuItem(widget);
187
188 wxASSERT( id != -1 ); // should find it!
189
190 if (!menu->IsEnabled(id)) return;
191
192 wxCommandEvent event( wxEVT_MENU_HIGHLIGHT, id );
c801d85f
KB
193 event.SetEventObject( menu );
194 event.SetInt(id );
6de97a3b 195
13439807 196/* wxMSW doesn't call callback here either
6de97a3b
RR
197 if (menu->m_callback)
198 {
199 (void) (*(menu->m_callback)) (*menu, event);
200 return;
201 }
13439807 202*/
6de97a3b
RR
203
204 if (menu->GetEventHandler()->ProcessEvent(event)) return;
205
c801d85f 206 wxWindow *win = menu->GetInvokingWindow();
cf4219e7 207 if (win) win->GetEventHandler()->ProcessEvent( event );
6de97a3b 208}
c801d85f 209
cf7a7e13
RR
210//-----------------------------------------------------------------------------
211// wxMenu
212//-----------------------------------------------------------------------------
213
c801d85f 214IMPLEMENT_DYNAMIC_CLASS(wxMenuItem,wxObject)
96fd301f
VZ
215
216wxMenuItem::wxMenuItem()
c801d85f 217{
96fd301f 218 m_id = ID_SEPARATOR;
c801d85f 219 m_isCheckMenu = FALSE;
96fd301f
VZ
220 m_isChecked = FALSE;
221 m_isEnabled = TRUE;
c67daf87
UR
222 m_subMenu = (wxMenu *) NULL;
223 m_menuItem = (GtkWidget *) NULL;
6de97a3b 224}
c801d85f 225
96fd301f 226void wxMenuItem::SetText(const wxString& str)
716b7364 227{
30dea054 228 m_text = "";
96fd301f
VZ
229 for ( const char *pc = str; *pc != '\0'; pc++ ) {
230 if ( *pc == '&' )
231 pc++; // skip it
232
233 m_text << *pc;
716b7364
RR
234 }
235}
236
96fd301f 237void wxMenuItem::Check( bool check )
716b7364 238{
30f82ea4 239 wxCHECK_RET( IsCheckable(), "Can't check uncheckable item!" )
96fd301f
VZ
240
241 m_isChecked = check;
242 gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check );
716b7364
RR
243}
244
a9c96bcc
RR
245void wxMenuItem::Enable( bool enable )
246{
247 gtk_widget_set_sensitive( m_menuItem, enable );
248 m_isEnabled = enable;
249}
250
96fd301f 251bool wxMenuItem::IsChecked() const
716b7364 252{
96fd301f
VZ
253 wxCHECK( IsCheckable(), FALSE ); // can't get state of uncheckable item!
254
255 bool bIsChecked = ((GtkCheckMenuItem*)m_menuItem)->active != 0;
256
257 wxASSERT( bIsChecked == m_isChecked ); // consistency check
258
259 return bIsChecked;
716b7364
RR
260}
261
c801d85f
KB
262IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler)
263
6de97a3b 264wxMenu::wxMenu( const wxString& title, const wxFunction func )
c801d85f
KB
265{
266 m_title = title;
267 m_items.DeleteContents( TRUE );
c67daf87 268 m_invokingWindow = (wxWindow *) NULL;
c801d85f 269 m_menu = gtk_menu_new(); // Do not show!
6de97a3b
RR
270 m_callback = func;
271 m_eventHandler = this;
272 if (m_title.IsNull()) m_title = "";
273 if (m_title != "")
274 {
275 Append(-2, m_title);
276 AppendSeparator();
277 }
278}
c801d85f 279
c2dd8380
GL
280void wxMenu::SetTitle( const wxString& title )
281{
282 // Waiting for something better.
283 m_title = title;
284}
285
286const wxString wxMenu::GetTitle() const
287{
288 return m_title;
289}
290
96fd301f 291void wxMenu::AppendSeparator()
c801d85f
KB
292{
293 wxMenuItem *mitem = new wxMenuItem();
96fd301f
VZ
294 mitem->SetId(ID_SEPARATOR);
295
296 GtkWidget *menuItem = gtk_menu_item_new();
297 gtk_menu_append( GTK_MENU(m_menu), menuItem );
298 gtk_widget_show( menuItem );
299 mitem->SetMenuItem(menuItem);
c801d85f 300 m_items.Append( mitem );
6de97a3b 301}
c801d85f 302
debe6624 303void wxMenu::Append( int id, const wxString &item, const wxString &helpStr, bool checkable )
c801d85f
KB
304{
305 wxMenuItem *mitem = new wxMenuItem();
96fd301f
VZ
306 mitem->SetId(id);
307 mitem->SetText(item);
c33c4050 308 mitem->SetHelp(helpStr);
96fd301f
VZ
309 mitem->SetCheckable(checkable);
310 const char *text = mitem->GetText();
311 GtkWidget *menuItem = checkable ? gtk_check_menu_item_new_with_label(text)
312 : gtk_menu_item_new_with_label(text);
a9c96bcc 313
96fd301f
VZ
314 mitem->SetMenuItem(menuItem);
315
316 gtk_signal_connect( GTK_OBJECT(menuItem), "activate",
317 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback),
318 (gpointer*)this );
319
cf7a7e13
RR
320 gtk_signal_connect( GTK_OBJECT(menuItem), "select",
321 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback),
322 (gpointer*)this );
323
96fd301f
VZ
324 gtk_menu_append( GTK_MENU(m_menu), menuItem );
325 gtk_widget_show( menuItem );
c801d85f 326 m_items.Append( mitem );
6de97a3b 327}
c801d85f 328
96fd301f 329void wxMenu::Append( int id, const wxString &text, wxMenu *subMenu, const wxString &helpStr )
c801d85f
KB
330{
331 wxMenuItem *mitem = new wxMenuItem();
96fd301f
VZ
332 mitem->SetId(id);
333 mitem->SetText(text);
334
335 GtkWidget *menuItem = gtk_menu_item_new_with_label(mitem->GetText());
c33c4050 336 mitem->SetHelp(helpStr);
96fd301f
VZ
337 mitem->SetMenuItem(menuItem);
338 mitem->SetSubMenu(subMenu);
339
340 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), subMenu->m_menu );
341 gtk_menu_append( GTK_MENU(m_menu), menuItem );
342 gtk_widget_show( menuItem );
c801d85f 343 m_items.Append( mitem );
6de97a3b 344}
c801d85f
KB
345
346int wxMenu::FindItem( const wxString itemString ) const
347{
348 wxString s( itemString );
96fd301f 349
d355d3fe 350 int pos;
c801d85f
KB
351 do {
352 pos = s.First( '&' );
d355d3fe
RR
353 if (pos != -1) s.Remove( pos, 1 );
354 } while (pos != -1);
96fd301f 355
c801d85f
KB
356 wxNode *node = m_items.First();
357 while (node)
358 {
359 wxMenuItem *item = (wxMenuItem*)node->Data();
96fd301f
VZ
360 if (item->GetText() == s)
361 return item->GetId();
c801d85f 362 node = node->Next();
6de97a3b 363 }
96fd301f 364
c801d85f 365 return -1;
6de97a3b 366}
c801d85f 367
96fd301f 368void wxMenu::Enable( int id, bool enable )
716b7364 369{
96fd301f
VZ
370 wxMenuItem *item = FindItem(id);
371 if ( item )
372 item->Enable(enable);
6de97a3b 373}
716b7364 374
96fd301f 375bool wxMenu::IsEnabled( int id ) const
e2414cbe 376{
96fd301f
VZ
377 wxMenuItem *item = FindItem(id);
378 if ( item )
379 return item->IsEnabled();
380 else
381 return FALSE;
6de97a3b 382}
e2414cbe 383
96fd301f 384void wxMenu::Check( int id, bool enable )
c801d85f 385{
96fd301f
VZ
386 wxMenuItem *item = FindItem(id);
387 if ( item )
388 item->Check(enable);
6de97a3b 389}
c801d85f 390
96fd301f 391bool wxMenu::IsChecked( int id ) const
c801d85f 392{
96fd301f
VZ
393 wxMenuItem *item = FindItem(id);
394 if ( item )
395 return item->IsChecked();
396 else
397 return FALSE;
6de97a3b 398}
c801d85f 399
debe6624 400void wxMenu::SetLabel( int id, const wxString &label )
c801d85f 401{
96fd301f 402 wxMenuItem *item = FindItem(id);
c33c4050 403 if (item)
96fd301f 404 item->SetText(label);
6de97a3b 405}
96fd301f 406
c33c4050
RR
407wxString wxMenu::GetLabel( int id ) const
408{
409 wxMenuItem *item = FindItem(id);
410 if (item) return item->GetText();
411 return "";
412}
413
414void wxMenu::SetHelpString( int id, const wxString& helpString )
415{
416 wxMenuItem *item = FindItem(id);
417 if (item) item->SetHelp( helpString );
418}
419
420wxString wxMenu::GetHelpString( int id ) const
421{
422 wxMenuItem *item = FindItem(id);
423 if (item) return item->GetHelp();
424 return "";
425}
426
96fd301f
VZ
427int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const
428{
c801d85f
KB
429 wxNode *node = m_items.First();
430 while (node)
431 {
432 wxMenuItem *item = (wxMenuItem*)node->Data();
96fd301f
VZ
433 if (item->GetMenuItem() == menuItem)
434 return item->GetId();
c801d85f 435 node = node->Next();
6de97a3b 436 }
96fd301f
VZ
437
438 return -1;
6de97a3b 439}
c801d85f 440
96fd301f 441wxMenuItem *wxMenu::FindItem(int id) const
c801d85f
KB
442{
443 wxNode *node = m_items.First();
96fd301f 444 while (node) {
c801d85f 445 wxMenuItem *item = (wxMenuItem*)node->Data();
96fd301f
VZ
446 if ( item->GetId() == id )
447 return item;
c801d85f 448 node = node->Next();
6de97a3b 449 }
96fd301f 450
30f82ea4 451 wxLogDebug( "wxMenu::FindItem: item %d not found.", id);
96fd301f 452
c67daf87 453 return (wxMenuItem *) NULL;
96fd301f 454}
c801d85f
KB
455
456void wxMenu::SetInvokingWindow( wxWindow *win )
457{
458 m_invokingWindow = win;
6de97a3b 459}
c801d85f 460
96fd301f 461wxWindow *wxMenu::GetInvokingWindow()
c801d85f
KB
462{
463 return m_invokingWindow;
6de97a3b 464}
c801d85f
KB
465
466