]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/menu.cpp
MingW32 compilation works now.
[wxWidgets.git] / src / gtk / menu.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: menu.cpp
3// Purpose:
4// Author: Robert Roebling
96fd301f 5// Id: $Id$
a81258be 6// Copyright: (c) 1998 Robert Roebling
96fd301f 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifdef __GNUG__
11#pragma implementation "menu.h"
6ca41e57 12#pragma implementation "menuitem.h"
c801d85f
KB
13#endif
14
15#include "wx/menu.h"
96fd301f 16#include "wx/log.h"
30dea054 17#include "wx/intl.h"
06cfab17 18#include "wx/app.h"
c801d85f 19
83624f79
RR
20#include "gdk/gdk.h"
21#include "gtk/gtk.h"
22
acfd422a
RR
23//-----------------------------------------------------------------------------
24// idle system
25//-----------------------------------------------------------------------------
26
27extern void wxapp_install_idle_handler();
28extern bool g_isIdle;
29
c801d85f
KB
30//-----------------------------------------------------------------------------
31// wxMenuBar
32//-----------------------------------------------------------------------------
33
34IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow)
35
3502e687
RR
36wxMenuBar::wxMenuBar( long style )
37{
1e133b7d 38 /* the parent window is known after wxFrame::SetMenu() */
23280650 39 m_needParent = FALSE;
ae53c98c 40 m_style = style;
23280650 41
16bcc879 42 PreCreation( (wxWindow *) NULL, -1, wxDefaultPosition, wxDefaultSize, style, "menu" );
3502e687
RR
43
44 m_menus.DeleteContents( TRUE );
45
1e133b7d
RR
46 /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */
47#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
48 m_accel = gtk_accel_group_new();
49 m_factory = gtk_item_factory_new( GTK_TYPE_MENU_BAR, "<main>", m_accel );
50 m_menubar = gtk_item_factory_get_widget( m_factory, "<main>" );
23280650 51#else
3502e687 52 m_menubar = gtk_menu_bar_new();
1e133b7d 53#endif
3502e687
RR
54
55 if (style & wxMB_DOCKABLE)
56 {
57 m_widget = gtk_handle_box_new();
c626a8b7
VZ
58 gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_menubar) );
59 gtk_widget_show( GTK_WIDGET(m_menubar) );
3502e687
RR
60 }
61 else
62 {
63 m_widget = GTK_WIDGET(m_menubar);
64 }
65
66 PostCreation();
3502e687
RR
67}
68
96fd301f 69wxMenuBar::wxMenuBar()
c801d85f 70{
1e133b7d
RR
71 /* the parent window is known after wxFrame::SetMenu() */
72 m_needParent = FALSE;
ae53c98c 73 m_style = 0;
23280650 74
83624f79 75 PreCreation( (wxWindow *) NULL, -1, wxDefaultPosition, wxDefaultSize, 0, "menu" );
c801d85f 76
83624f79 77 m_menus.DeleteContents( TRUE );
96fd301f 78
1e133b7d
RR
79 /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */
80#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
81 m_accel = gtk_accel_group_new();
82 m_factory = gtk_item_factory_new( GTK_TYPE_MENU_BAR, "<main>", m_accel );
83 m_menubar = gtk_item_factory_get_widget( m_factory, "<main>" );
23280650 84#else
83624f79 85 m_menubar = gtk_menu_bar_new();
1e133b7d 86#endif
8bbe427f 87
828f655f 88 m_widget = GTK_WIDGET(m_menubar);
96fd301f 89
83624f79 90 PostCreation();
6de97a3b 91}
c801d85f 92
1e133b7d
RR
93wxMenuBar::~wxMenuBar()
94{
95 // how to destroy a GtkItemFactory ?
96}
97
5bd9e519
RR
98static void wxMenubarUnsetInvokingWindow( wxMenu *menu, wxWindow *win )
99{
100 menu->SetInvokingWindow( (wxWindow*) NULL );
101
102#if (GTK_MINOR_VERSION > 0)
103 wxWindow *top_frame = win;
104 while (top_frame->GetParent()) top_frame = top_frame->GetParent();
105
106 /* support for native hot keys */
107 gtk_accel_group_detach( menu->m_accel, GTK_OBJECT(top_frame->m_widget) );
108#endif
109
110 wxNode *node = menu->GetItems().First();
111 while (node)
112 {
113 wxMenuItem *menuitem = (wxMenuItem*)node->Data();
114 if (menuitem->IsSubMenu())
115 wxMenubarUnsetInvokingWindow( menuitem->GetSubMenu(), win );
116 node = node->Next();
117 }
118}
119
120static void wxMenubarSetInvokingWindow( wxMenu *menu, wxWindow *win )
121{
122 menu->SetInvokingWindow( win );
123
124#if (GTK_MINOR_VERSION > 0)
125 wxWindow *top_frame = win;
126 while (top_frame->GetParent())
127 top_frame = top_frame->GetParent();
128
129 /* support for native hot keys */
130 gtk_accel_group_attach( menu->m_accel, GTK_OBJECT(top_frame->m_widget) );
131#endif
132
133 wxNode *node = menu->GetItems().First();
134 while (node)
135 {
136 wxMenuItem *menuitem = (wxMenuItem*)node->Data();
137 if (menuitem->IsSubMenu())
138 wxMenubarSetInvokingWindow( menuitem->GetSubMenu(), win );
139 node = node->Next();
140 }
141}
142
143void wxMenuBar::SetInvokingWindow( wxWindow *win )
144{
145#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
146 wxWindow *top_frame = win;
147 while (top_frame->GetParent())
148 top_frame = top_frame->GetParent();
149
150 /* support for native key accelerators indicated by underscroes */
151 gtk_accel_group_attach( m_accel, GTK_OBJECT(top_frame->m_widget) );
152#endif
153
154 wxNode *node = m_menus.First();
155 while (node)
156 {
157 wxMenu *menu = (wxMenu*)node->Data();
158 wxMenubarSetInvokingWindow( menu, win );
159 node = node->Next();
160 }
161}
162
163void wxMenuBar::UnsetInvokingWindow( wxWindow *win )
164{
165#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
166 wxWindow *top_frame = win;
167 while (top_frame->GetParent())
168 top_frame = top_frame->GetParent();
169
170 /* support for native key accelerators indicated by underscroes */
171 gtk_accel_group_detach( m_accel, GTK_OBJECT(top_frame->m_widget) );
172#endif
173
174 wxNode *node = m_menus.First();
175 while (node)
176 {
177 wxMenu *menu = (wxMenu*)node->Data();
178 wxMenubarUnsetInvokingWindow( menu, win );
179 node = node->Next();
180 }
181}
182
c801d85f
KB
183void wxMenuBar::Append( wxMenu *menu, const wxString &title )
184{
83624f79 185 m_menus.Append( menu );
23280650 186
a533f5c1 187 const wxChar *pc;
23280650 188
1e133b7d
RR
189 /* GTK 1.2 wants to have "_" instead of "&" for accelerators */
190 wxString str;
a533f5c1 191 for ( pc = title; *pc != _T('\0'); pc++ )
83624f79 192 {
b019151f 193 if (*pc == _T('&'))
23280650 194 {
1e133b7d
RR
195#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
196 str << _T('_');
23280650
VZ
197 } else
198 if (*pc == _T('/'))
199 {
fac4253c 200 str << _T('\\');
034be888 201#endif
23280650 202 }
d38ceae8
KB
203 else
204 str << *pc;
1e133b7d
RR
205 }
206
207 /* this doesn't have much effect right now */
208 menu->SetTitle( str );
23280650 209
1e133b7d
RR
210 /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */
211#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
212
213 /* local buffer in multibyte form */
2b2edbed 214 wxString buf;
c980c992
GL
215 buf << _T('/') << str.c_str();
216
2b2edbed 217 char *cbuf = new char[buf.Length()];
c980c992
GL
218 strcpy(cbuf, buf.mbc_str());
219
1e133b7d 220 GtkItemFactoryEntry entry;
c980c992 221 entry.path = (gchar *)cbuf; // const_cast
1e133b7d
RR
222 entry.accelerator = (gchar*) NULL;
223 entry.callback = (GtkItemFactoryCallback) NULL;
224 entry.callback_action = 0;
2b2edbed
KB
225 entry.item_type = "<Branch>";
226
1e133b7d 227 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
1e133b7d
RR
228 /* in order to get the pointer to the item we need the item text _without_ underscores */
229 wxString tmp = _T("<main>/");
a533f5c1 230 for ( pc = str; *pc != _T('\0'); pc++ )
1e133b7d 231 {
2b2edbed
KB
232 if (*pc == _T('_')) pc++; /* skip it */
233 tmp << *pc;
034be888 234 }
1e133b7d 235 menu->m_owner = gtk_item_factory_get_item( m_factory, tmp.mb_str() );
1e133b7d 236 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu );
2b2edbed 237 delete [] cbuf;
1e133b7d 238#else
96fd301f 239
1e133b7d 240 menu->m_owner = gtk_menu_item_new_with_label( str.mb_str() );
2b1c162e
RR
241 gtk_widget_show( menu->m_owner );
242 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu );
96fd301f 243
2b1c162e 244 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar), menu->m_owner );
23280650 245
1e133b7d 246#endif
6de97a3b 247}
96fd301f 248
716b7364 249static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString )
c801d85f 250{
c626a8b7 251 if (menu->GetTitle() == menuString)
83624f79
RR
252 {
253 int res = menu->FindItem( itemString );
c626a8b7
VZ
254 if (res != wxNOT_FOUND)
255 return res;
83624f79 256 }
c626a8b7
VZ
257
258 wxNode *node = ((wxMenu *)menu)->GetItems().First(); // const_cast
83624f79
RR
259 while (node)
260 {
261 wxMenuItem *item = (wxMenuItem*)node->Data();
262 if (item->IsSubMenu())
263 return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString);
2b1c162e 264
83624f79
RR
265 node = node->Next();
266 }
267
c626a8b7
VZ
268 return wxNOT_FOUND;
269}
270
80ec928c 271wxMenuItem *wxMenuBar::FindItemForId(int itemId, wxMenu **menuForItem ) const
c626a8b7
VZ
272{
273 if ( menuForItem )
274 {
275 // TODO return the pointer to the menu
276
277 *menuForItem = NULL;
278 }
279
280 return FindItem(itemId);
6de97a3b 281}
c801d85f
KB
282
283int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const
284{
83624f79
RR
285 wxNode *node = m_menus.First();
286 while (node)
287 {
288 wxMenu *menu = (wxMenu*)node->Data();
289 int res = FindMenuItemRecursive( menu, menuString, itemString);
290 if (res != -1) return res;
291 node = node->Next();
292 }
293 return -1;
6de97a3b 294}
c801d85f 295
c626a8b7 296// Find a wxMenuItem using its id. Recurses down into sub-menus
96fd301f 297static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id)
716b7364 298{
83624f79 299 wxMenuItem* result = menu->FindItem(id);
716b7364 300
c626a8b7
VZ
301 wxNode *node = ((wxMenu *)menu)->GetItems().First(); // const_cast
302 while ( node && result == NULL )
83624f79
RR
303 {
304 wxMenuItem *item = (wxMenuItem*)node->Data();
305 if (item->IsSubMenu())
c626a8b7 306 {
83624f79 307 result = FindMenuItemByIdRecursive( item->GetSubMenu(), id );
c626a8b7 308 }
83624f79
RR
309 node = node->Next();
310 }
96fd301f 311
83624f79 312 return result;
6de97a3b 313}
716b7364 314
c626a8b7 315wxMenuItem* wxMenuBar::FindItem( int id ) const
716b7364 316{
83624f79
RR
317 wxMenuItem* result = 0;
318 wxNode *node = m_menus.First();
319 while (node && result == 0)
320 {
321 wxMenu *menu = (wxMenu*)node->Data();
322 result = FindMenuItemByIdRecursive( menu, id );
323 node = node->Next();
324 }
c626a8b7 325
83624f79 326 return result;
716b7364
RR
327}
328
54ff4a70
RR
329void wxMenuBar::Check( int id, bool check )
330{
83624f79 331 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 332
b019151f 333 wxCHECK_RET( item, _T("wxMenuBar::Check: no such item") );
c626a8b7
VZ
334
335 item->Check(check);
6de97a3b 336}
54ff4a70 337
c626a8b7 338bool wxMenuBar::IsChecked( int id ) const
716b7364 339{
83624f79 340 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 341
b019151f 342 wxCHECK_MSG( item, FALSE, _T("wxMenuBar::IsChecked: no such item") );
c626a8b7
VZ
343
344 return item->IsChecked();
6de97a3b 345}
716b7364 346
54ff4a70
RR
347void wxMenuBar::Enable( int id, bool enable )
348{
83624f79 349 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 350
b019151f 351 wxCHECK_RET( item, _T("wxMenuBar::Enable: no such item") );
c626a8b7
VZ
352
353 item->Enable(enable);
6de97a3b 354}
54ff4a70 355
c626a8b7 356bool wxMenuBar::IsEnabled( int id ) const
716b7364 357{
83624f79 358 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 359
b019151f 360 wxCHECK_MSG( item, FALSE, _T("wxMenuBar::IsEnabled: no such item") );
c626a8b7
VZ
361
362 return item->IsEnabled();
6de97a3b 363}
716b7364 364
bbe0af5b
RR
365wxString wxMenuBar::GetLabel( int id ) const
366{
367 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 368
b019151f 369 wxCHECK_MSG( item, _T(""), _T("wxMenuBar::GetLabel: no such item") );
c626a8b7
VZ
370
371 return item->GetText();
bbe0af5b
RR
372}
373
374void wxMenuBar::SetLabel( int id, const wxString &label )
375{
376 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 377
b019151f 378 wxCHECK_RET( item, _T("wxMenuBar::SetLabel: no such item") );
c626a8b7
VZ
379
380 item->SetText( label );
bbe0af5b
RR
381}
382
2b1c162e 383void wxMenuBar::EnableTop( int pos, bool flag )
bbe0af5b 384{
2b1c162e 385 wxNode *node = m_menus.Nth( pos );
c626a8b7 386
b019151f 387 wxCHECK_RET( node, _T("menu not found") );
c626a8b7 388
2b1c162e 389 wxMenu* menu = (wxMenu*)node->Data();
c626a8b7
VZ
390
391 if (menu->m_owner)
392 gtk_widget_set_sensitive( menu->m_owner, flag );
bbe0af5b
RR
393}
394
2b1c162e 395wxString wxMenuBar::GetLabelTop( int pos ) const
bbe0af5b 396{
2b1c162e 397 wxNode *node = m_menus.Nth( pos );
c626a8b7 398
b019151f 399 wxCHECK_MSG( node, _T("invalid"), _T("menu not found") );
c626a8b7 400
2b1c162e 401 wxMenu* menu = (wxMenu*)node->Data();
c626a8b7 402
2b1c162e 403 return menu->GetTitle();
bbe0af5b
RR
404}
405
2b1c162e 406void wxMenuBar::SetLabelTop( int pos, const wxString& label )
bbe0af5b 407{
2b1c162e 408 wxNode *node = m_menus.Nth( pos );
c626a8b7 409
b019151f 410 wxCHECK_RET( node, _T("menu not found") );
c626a8b7 411
2b1c162e 412 wxMenu* menu = (wxMenu*)node->Data();
c626a8b7 413
2b1c162e 414 menu->SetTitle( label );
bbe0af5b
RR
415}
416
342b6a2f
RR
417void wxMenuBar::SetHelpString( int id, const wxString& helpString )
418{
419 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 420
b019151f 421 wxCHECK_RET( item, _T("wxMenuBar::SetHelpString: no such item") );
c626a8b7
VZ
422
423 item->SetHelp( helpString );
342b6a2f
RR
424}
425
426wxString wxMenuBar::GetHelpString( int id ) const
427{
428 wxMenuItem* item = FindMenuItemById( id );
c626a8b7 429
b019151f 430 wxCHECK_MSG( item, _T(""), _T("wxMenuBar::GetHelpString: no such item") );
c626a8b7
VZ
431
432 return item->GetHelp();
342b6a2f
RR
433}
434
c801d85f 435//-----------------------------------------------------------------------------
cf7a7e13 436// "activate"
c801d85f
KB
437//-----------------------------------------------------------------------------
438
6de97a3b 439static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
c801d85f 440{
acfd422a
RR
441 if (g_isIdle) wxapp_install_idle_handler();
442
83624f79 443 int id = menu->FindMenuIdByMenuItem(widget);
96fd301f 444
83624f79 445 /* should find it for normal (not popup) menu */
c626a8b7 446 wxASSERT( (id != -1) || (menu->GetInvokingWindow() != NULL) );
96fd301f 447
c626a8b7
VZ
448 if (!menu->IsEnabled(id))
449 return;
96fd301f 450
2d17d68f 451 wxMenuItem* item = menu->FindItem( id );
b019151f 452 wxCHECK_RET( item, _T("error in menu item callback") );
c626a8b7
VZ
453
454 if (item->IsCheckable())
2d17d68f 455 {
c626a8b7 456 if (item->GetCheckedFlag() == item->IsChecked())
2d17d68f 457 {
c626a8b7 458 /* the menu item has been checked by calling wxMenuItem->Check() */
2d17d68f 459 return;
c626a8b7
VZ
460 }
461 else
462 {
463 /* the user pressed on the menu item -> report */
464 item->SetCheckedFlag(item->IsChecked()); /* make consistent again */
465 }
2d17d68f
RR
466 }
467
83624f79
RR
468 wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, id );
469 event.SetEventObject( menu );
470 event.SetInt(id );
8bbe427f 471
c626a8b7 472 if (menu->GetCallback())
83624f79 473 {
c626a8b7 474 (void) (*(menu->GetCallback())) (*menu, event);
83624f79
RR
475 return;
476 }
cf7a7e13 477
c626a8b7
VZ
478 if (menu->GetEventHandler()->ProcessEvent(event))
479 return;
cf7a7e13 480
83624f79 481 wxWindow *win = menu->GetInvokingWindow();
c626a8b7
VZ
482 if (win)
483 win->GetEventHandler()->ProcessEvent( event );
cf7a7e13
RR
484}
485
486//-----------------------------------------------------------------------------
487// "select"
488//-----------------------------------------------------------------------------
489
490static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu )
491{
acfd422a
RR
492 if (g_isIdle) wxapp_install_idle_handler();
493
83624f79
RR
494 int id = menu->FindMenuIdByMenuItem(widget);
495
496 wxASSERT( id != -1 ); // should find it!
cf7a7e13 497
c626a8b7
VZ
498 if (!menu->IsEnabled(id))
499 return;
cf7a7e13 500
342b6a2f 501 wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, id );
83624f79 502 event.SetEventObject( menu );
cf7a7e13 503
c626a8b7
VZ
504 if (menu->GetEventHandler()->ProcessEvent(event))
505 return;
6de97a3b 506
83624f79
RR
507 wxWindow *win = menu->GetInvokingWindow();
508 if (win) win->GetEventHandler()->ProcessEvent( event );
6de97a3b 509}
c801d85f 510
cd743a6f
RR
511//-----------------------------------------------------------------------------
512// "deselect"
513//-----------------------------------------------------------------------------
514
515static void gtk_menu_nolight_callback( GtkWidget *widget, wxMenu *menu )
516{
acfd422a
RR
517 if (g_isIdle) wxapp_install_idle_handler();
518
cd743a6f
RR
519 int id = menu->FindMenuIdByMenuItem(widget);
520
521 wxASSERT( id != -1 ); // should find it!
522
c626a8b7
VZ
523 if (!menu->IsEnabled(id))
524 return;
cd743a6f
RR
525
526 wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, -1 );
527 event.SetEventObject( menu );
528
c626a8b7
VZ
529 if (menu->GetEventHandler()->ProcessEvent(event))
530 return;
cd743a6f
RR
531
532 wxWindow *win = menu->GetInvokingWindow();
c626a8b7
VZ
533 if (win)
534 win->GetEventHandler()->ProcessEvent( event );
cd743a6f
RR
535}
536
cf7a7e13 537//-----------------------------------------------------------------------------
db1b4961 538// wxMenuItem
cf7a7e13
RR
539//-----------------------------------------------------------------------------
540
c801d85f 541IMPLEMENT_DYNAMIC_CLASS(wxMenuItem,wxObject)
96fd301f
VZ
542
543wxMenuItem::wxMenuItem()
c801d85f 544{
83624f79
RR
545 m_id = ID_SEPARATOR;
546 m_isCheckMenu = FALSE;
547 m_isChecked = FALSE;
548 m_isEnabled = TRUE;
549 m_subMenu = (wxMenu *) NULL;
550 m_menuItem = (GtkWidget *) NULL;
6de97a3b 551}
c801d85f 552
c626a8b7 553// it's valid for this function to be called even if m_menuItem == NULL
83624f79 554void wxMenuItem::SetName( const wxString& str )
716b7364 555{
ab46dc18 556 /* '\t' is the deliminator indicating a hot key */
b019151f 557 m_text = _T("");
ab46dc18
RR
558 const wxChar *pc = str;
559 for (; (*pc != _T('\0')) && (*pc != _T('\t')); pc++ )
83624f79 560 {
b019151f 561 if (*pc == _T('&'))
23280650 562 {
034be888 563#if (GTK_MINOR_VERSION > 0)
b019151f 564 m_text << _T('_');
23280650
VZ
565 } else
566 if (*pc == _T('/')) /* we have to filter out slashes ... */
567 {
6bc8a1c8 568 m_text << _T('\\'); /* ... and replace them with back slashes */
034be888
RR
569#endif
570 }
d38ceae8
KB
571 else
572 m_text << *pc;
83624f79 573 }
23280650 574
837904f2 575 /* only GTK 1.2 knows about hot keys */
ab46dc18
RR
576 m_hotKey = _T("");
577#if (GTK_MINOR_VERSION > 0)
d7dbc98a
KB
578 if(*pc == _T('\t'))
579 {
580 pc++;
581 m_hotKey = pc;
582 }
ab46dc18 583#endif
96fd301f 584
83624f79
RR
585 if (m_menuItem)
586 {
587 GtkLabel *label = GTK_LABEL( GTK_BIN(m_menuItem)->child );
1e133b7d 588 gtk_label_set( label, m_text.mb_str());
83624f79 589 }
716b7364
RR
590}
591
96fd301f 592void wxMenuItem::Check( bool check )
716b7364 593{
b019151f 594 wxCHECK_RET( m_menuItem, _T("invalid menu item") );
db1b4961 595
b019151f 596 wxCHECK_RET( IsCheckable(), _T("Can't check uncheckable item!") )
96fd301f 597
2d17d68f
RR
598 if (check == m_isChecked) return;
599
83624f79
RR
600 m_isChecked = check;
601 gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check );
716b7364
RR
602}
603
8bbe427f
VZ
604void wxMenuItem::Enable( bool enable )
605{
b019151f 606 wxCHECK_RET( m_menuItem, _T("invalid menu item") );
db1b4961 607
83624f79
RR
608 gtk_widget_set_sensitive( m_menuItem, enable );
609 m_isEnabled = enable;
a9c96bcc
RR
610}
611
96fd301f 612bool wxMenuItem::IsChecked() const
716b7364 613{
b019151f 614 wxCHECK_MSG( m_menuItem, FALSE, _T("invalid menu item") );
db1b4961 615
83624f79 616 wxCHECK( IsCheckable(), FALSE ); // can't get state of uncheckable item!
96fd301f 617
83624f79 618 bool bIsChecked = ((GtkCheckMenuItem*)m_menuItem)->active != 0;
96fd301f 619
83624f79 620 return bIsChecked;
716b7364
RR
621}
622
db1b4961 623//-----------------------------------------------------------------------------
83624f79 624// wxMenu
db1b4961
RR
625//-----------------------------------------------------------------------------
626
c801d85f
KB
627IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler)
628
ae53c98c 629void
b908d224 630wxMenu::Init( const wxString& title,
1ecffbff 631 long style
b908d224
VZ
632#ifdef WXWIN_COMPATIBILITY
633 , const wxFunction func
634#endif
635 )
c801d85f 636{
83624f79
RR
637 m_title = title;
638 m_items.DeleteContents( TRUE );
639 m_invokingWindow = (wxWindow *) NULL;
ae53c98c 640 m_style = style;
23280650 641
034be888
RR
642#if (GTK_MINOR_VERSION > 0)
643 m_accel = gtk_accel_group_new();
644 m_factory = gtk_item_factory_new( GTK_TYPE_MENU, "<main>", m_accel );
645 m_menu = gtk_item_factory_get_widget( m_factory, "<main>" );
23280650 646#else
83624f79 647 m_menu = gtk_menu_new(); // Do not show!
034be888 648#endif
8bbe427f 649
b908d224 650#ifdef WXWIN_COMPATIBILITY
83624f79 651 m_callback = func;
b908d224
VZ
652#endif
653
83624f79
RR
654 m_eventHandler = this;
655 m_clientData = (void*) NULL;
8bbe427f 656
b019151f
OK
657 if (m_title.IsNull()) m_title = _T("");
658 if (m_title != _T(""))
83624f79
RR
659 {
660 Append(-2, m_title);
661 AppendSeparator();
662 }
c626a8b7 663
2b1c162e 664 m_owner = (GtkWidget*) NULL;
2b2edbed
KB
665
666#if (GTK_MINOR_VERSION > 0)
667 /* Tearoffs are entries, just like separators. So if we want this
668 menu to be a tear-off one, we just append a tearoff entry
669 immediately. */
670 if(m_style & wxMENU_TEAROFF)
671 {
672 GtkItemFactoryEntry entry;
673 entry.path = "/tearoff";
674 entry.callback = (GtkItemFactoryCallback) NULL;
675 entry.callback_action = 0;
676 entry.item_type = "<Tearoff>";
677 entry.accelerator = (gchar*) NULL;
678 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
23280650 679 //GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, "<main>/tearoff" );
2b2edbed
KB
680 }
681#endif
6de97a3b 682}
c801d85f 683
034be888
RR
684wxMenu::~wxMenu()
685{
686 /* how do we delete an item-factory ? */
687}
688
c2dd8380
GL
689void wxMenu::SetTitle( const wxString& title )
690{
c626a8b7 691 // TODO Waiting for something better
83624f79 692 m_title = title;
c2dd8380
GL
693}
694
695const wxString wxMenu::GetTitle() const
696{
83624f79 697 return m_title;
c2dd8380
GL
698}
699
96fd301f 700void wxMenu::AppendSeparator()
c801d85f 701{
83624f79
RR
702 wxMenuItem *mitem = new wxMenuItem();
703 mitem->SetId(ID_SEPARATOR);
96fd301f 704
08fc1744
RR
705#if (GTK_MINOR_VERSION > 0)
706 GtkItemFactoryEntry entry;
707 entry.path = "/sep";
708 entry.callback = (GtkItemFactoryCallback) NULL;
709 entry.callback_action = 0;
710 entry.item_type = "<Separator>";
711 entry.accelerator = (gchar*) NULL;
23280650 712
08fc1744 713 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
23280650 714
08fc1744
RR
715 /* this will be wrong for more than one separator. do we care? */
716 GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, "<main>/sep" );
717#else
83624f79
RR
718 GtkWidget *menuItem = gtk_menu_item_new();
719 gtk_menu_append( GTK_MENU(m_menu), menuItem );
720 gtk_widget_show( menuItem );
08fc1744 721#endif
23280650 722
83624f79
RR
723 mitem->SetMenuItem(menuItem);
724 m_items.Append( mitem );
6de97a3b 725}
c801d85f 726
837904f2
RR
727static char* GetHotKey( const wxString &hotkey, char *hotbuf )
728{
729 if (hotkey.IsEmpty()) return (char*) NULL;
23280650 730
837904f2
RR
731 switch (hotkey[0])
732 {
733 case _T('a'): /* Alt */
23280650
VZ
734 case _T('A'):
735 case _T('m'): /* Meta */
736 case _T('M'):
737 {
738 strcpy( hotbuf, "<alt>" );
739 wxString last = hotkey.Right(1);
740 strcat( hotbuf, last.mb_str() );
837904f2 741 return hotbuf;
23280650
VZ
742 }
743 case _T('c'): /* Ctrl */
744 case _T('C'):
745 case _T('s'): /* Strg, yeah man, I'm German */
746 case _T('S'):
747 {
748 strcpy( hotbuf, "<control>" );
749 wxString last = hotkey.Right(1);
750 strcat( hotbuf, last.mb_str() );
837904f2
RR
751 return hotbuf;
752 }
23280650
VZ
753 case _T('F'): /* function keys */
754 {
755 strcpy( hotbuf, hotkey.mb_str() );
837904f2 756 return hotbuf;
23280650
VZ
757 }
758 default:
759 {
760 }
837904f2
RR
761 }
762 return (char*) NULL;
763}
764
debe6624 765void wxMenu::Append( int id, const wxString &item, const wxString &helpStr, bool checkable )
c801d85f 766{
83624f79
RR
767 wxMenuItem *mitem = new wxMenuItem();
768 mitem->SetId(id);
769 mitem->SetText(item);
770 mitem->SetHelp(helpStr);
771 mitem->SetCheckable(checkable);
23280650 772
034be888 773#if (GTK_MINOR_VERSION > 0)
23280650 774 /* text has "_" instead of "&" after mitem->SetText() */
1e133b7d 775 wxString text( mitem->GetText() );
23280650 776
1e133b7d
RR
777 /* local buffer in multibyte form */
778 char buf[200];
779 strcpy( buf, "/" );
780 strcat( buf, text.mb_str() );
23280650 781
034be888 782 GtkItemFactoryEntry entry;
1e133b7d 783 entry.path = buf;
034be888
RR
784 entry.callback = (GtkItemFactoryCallback) gtk_menu_clicked_callback;
785 entry.callback_action = 0;
786 if (checkable)
787 entry.item_type = "<CheckItem>";
788 else
789 entry.item_type = "<Item>";
23280650 790
ab46dc18 791 char hotbuf[50];
837904f2 792 entry.accelerator = GetHotKey( mitem->GetHotKey(), hotbuf );
23280650 793
034be888 794 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
23280650 795
034be888 796 /* in order to get the pointer to the item we need the item text _without_ underscores */
b019151f
OK
797 wxString s = _T("<main>/");
798 for ( const wxChar *pc = text; *pc != _T('\0'); pc++ )
034be888 799 {
b019151f 800 if (*pc == _T('_')) pc++; /* skip it */
034be888
RR
801 s << *pc;
802 }
23280650 803
1e133b7d 804 GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, s.mb_str() );
23280650 805
034be888
RR
806#else
807
d38ceae8
KB
808 GtkWidget *menuItem = checkable ? gtk_check_menu_item_new_with_label( mitem->GetText().mb_str() )
809 : gtk_menu_item_new_with_label( mitem->GetText().mb_str() );
23280650 810
83624f79
RR
811 gtk_signal_connect( GTK_OBJECT(menuItem), "activate",
812 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback),
034be888 813 (gpointer)this );
23280650 814
034be888
RR
815 gtk_menu_append( GTK_MENU(m_menu), menuItem );
816 gtk_widget_show( menuItem );
23280650 817
034be888 818#endif
96fd301f 819
83624f79
RR
820 gtk_signal_connect( GTK_OBJECT(menuItem), "select",
821 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback),
034be888 822 (gpointer)this );
cf7a7e13 823
cd743a6f
RR
824 gtk_signal_connect( GTK_OBJECT(menuItem), "deselect",
825 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback),
034be888
RR
826 (gpointer)this );
827
828 mitem->SetMenuItem(menuItem);
cd743a6f 829
83624f79 830 m_items.Append( mitem );
6de97a3b 831}
c801d85f 832
837904f2 833void wxMenu::Append( int id, const wxString &item, wxMenu *subMenu, const wxString &helpStr )
c801d85f 834{
83624f79
RR
835 wxMenuItem *mitem = new wxMenuItem();
836 mitem->SetId(id);
837904f2 837 mitem->SetText(item);
828f655f 838 mitem->SetHelp(helpStr);
96fd301f 839
837904f2 840#if (GTK_MINOR_VERSION > 0)
23280650 841 /* text has "_" instead of "&" after mitem->SetText() */
837904f2 842 wxString text( mitem->GetText() );
23280650 843
837904f2
RR
844 /* local buffer in multibyte form */
845 char buf[200];
846 strcpy( buf, "/" );
847 strcat( buf, text.mb_str() );
23280650 848
837904f2
RR
849 GtkItemFactoryEntry entry;
850 entry.path = buf;
851 entry.callback = (GtkItemFactoryCallback) 0;
852 entry.callback_action = 0;
2b2edbed 853 entry.item_type = "<Branch>";
23280650 854
837904f2 855 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
23280650 856
837904f2
RR
857 /* in order to get the pointer to the item we need the item text _without_ underscores */
858 wxString s = _T("<main>/");
859 for ( const wxChar *pc = text; *pc != _T('\0'); pc++ )
860 {
861 if (*pc == _T('_')) pc++; /* skip it */
862 s << *pc;
863 }
23280650 864
837904f2 865 GtkWidget *menuItem = gtk_item_factory_get_item( m_factory, s.mb_str() );
23280650 866
837904f2
RR
867#else
868
b019151f 869 GtkWidget *menuItem = gtk_menu_item_new_with_label(mitem->GetText().mbc_str());
23280650 870
837904f2
RR
871 gtk_menu_append( GTK_MENU(m_menu), menuItem );
872 gtk_widget_show( menuItem );
23280650
VZ
873
874#endif
96fd301f 875
cd743a6f
RR
876 gtk_signal_connect( GTK_OBJECT(menuItem), "select",
877 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback),
878 (gpointer*)this );
879
880 gtk_signal_connect( GTK_OBJECT(menuItem), "deselect",
881 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback),
882 (gpointer*)this );
883
83624f79 884 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), subMenu->m_menu );
23280650 885
837904f2
RR
886 mitem->SetMenuItem(menuItem);
887 mitem->SetSubMenu(subMenu);
888
83624f79 889 m_items.Append( mitem );
6de97a3b 890}
c801d85f 891
828f655f
RR
892void wxMenu::Append( wxMenuItem *item )
893{
894 m_items.Append( item );
c626a8b7 895
828f655f
RR
896 GtkWidget *menuItem = (GtkWidget*) NULL;
897
c626a8b7 898 if (item->IsSeparator())
828f655f 899 menuItem = gtk_menu_item_new();
c626a8b7 900 else if (item->IsSubMenu())
b019151f 901 menuItem = gtk_menu_item_new_with_label(item->GetText().mbc_str());
c626a8b7 902 else
b019151f
OK
903 menuItem = item->IsCheckable() ? gtk_check_menu_item_new_with_label(item->GetText().mbc_str())
904 : gtk_menu_item_new_with_label(item->GetText().mbc_str());
828f655f
RR
905
906 if (!item->IsSeparator())
907 {
908 gtk_signal_connect( GTK_OBJECT(menuItem), "select",
909 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback),
910 (gpointer*)this );
911
912 gtk_signal_connect( GTK_OBJECT(menuItem), "deselect",
913 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback),
914 (gpointer*)this );
c626a8b7
VZ
915
916 if (!item->IsSubMenu())
917 {
828f655f
RR
918 gtk_signal_connect( GTK_OBJECT(menuItem), "activate",
919 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback),
920 (gpointer*)this );
c626a8b7 921 }
828f655f 922 }
c626a8b7 923
828f655f
RR
924 gtk_menu_append( GTK_MENU(m_menu), menuItem );
925 gtk_widget_show( menuItem );
926 item->SetMenuItem(menuItem);
927}
928
c801d85f
KB
929int wxMenu::FindItem( const wxString itemString ) const
930{
b019151f
OK
931 wxString s = _T("");
932 for ( const wxChar *pc = itemString; *pc != _T('\0'); pc++ )
83624f79 933 {
b019151f 934 if (*pc == _T('&'))
23280650
VZ
935 {
936 pc++; /* skip it */
034be888 937#if (GTK_MINOR_VERSION > 0)
b019151f 938 s << _T('_');
034be888
RR
939#endif
940 }
941 s << *pc;
942 }
96fd301f 943
83624f79
RR
944 wxNode *node = m_items.First();
945 while (node)
946 {
947 wxMenuItem *item = (wxMenuItem*)node->Data();
948 if (item->GetText() == s)
c626a8b7 949 {
83624f79 950 return item->GetId();
c626a8b7 951 }
83624f79
RR
952 node = node->Next();
953 }
96fd301f 954
c626a8b7 955 return wxNOT_FOUND;
6de97a3b 956}
c801d85f 957
96fd301f 958void wxMenu::Enable( int id, bool enable )
716b7364 959{
83624f79 960 wxMenuItem *item = FindItem(id);
c626a8b7 961
b019151f 962 wxCHECK_RET( item, _T("wxMenu::Enable: no such item") );
c626a8b7
VZ
963
964 item->Enable(enable);
6de97a3b 965}
716b7364 966
96fd301f 967bool wxMenu::IsEnabled( int id ) const
e2414cbe 968{
83624f79 969 wxMenuItem *item = FindItem(id);
c626a8b7 970
b019151f 971 wxCHECK_MSG( item, FALSE, _T("wxMenu::IsEnabled: no such item") );
c626a8b7
VZ
972
973 return item->IsEnabled();
6de97a3b 974}
e2414cbe 975
96fd301f 976void wxMenu::Check( int id, bool enable )
c801d85f 977{
83624f79 978 wxMenuItem *item = FindItem(id);
c626a8b7 979
b019151f 980 wxCHECK_RET( item, _T("wxMenu::Check: no such item") );
c626a8b7
VZ
981
982 item->Check(enable);
6de97a3b 983}
c801d85f 984
96fd301f 985bool wxMenu::IsChecked( int id ) const
c801d85f 986{
83624f79 987 wxMenuItem *item = FindItem(id);
c626a8b7 988
b019151f 989 wxCHECK_MSG( item, FALSE, _T("wxMenu::IsChecked: no such item") );
c626a8b7
VZ
990
991 return item->IsChecked();
6de97a3b 992}
c801d85f 993
debe6624 994void wxMenu::SetLabel( int id, const wxString &label )
c801d85f 995{
83624f79 996 wxMenuItem *item = FindItem(id);
c626a8b7 997
b019151f 998 wxCHECK_RET( item, _T("wxMenu::SetLabel: no such item") );
c626a8b7
VZ
999
1000 item->SetText(label);
6de97a3b 1001}
96fd301f 1002
c33c4050
RR
1003wxString wxMenu::GetLabel( int id ) const
1004{
83624f79 1005 wxMenuItem *item = FindItem(id);
c626a8b7 1006
b019151f 1007 wxCHECK_MSG( item, _T(""), _T("wxMenu::GetLabel: no such item") );
c626a8b7
VZ
1008
1009 return item->GetText();
c33c4050
RR
1010}
1011
1012void wxMenu::SetHelpString( int id, const wxString& helpString )
1013{
83624f79 1014 wxMenuItem *item = FindItem(id);
c626a8b7 1015
b019151f 1016 wxCHECK_RET( item, _T("wxMenu::SetHelpString: no such item") );
c626a8b7
VZ
1017
1018 item->SetHelp( helpString );
c33c4050
RR
1019}
1020
1021wxString wxMenu::GetHelpString( int id ) const
1022{
83624f79 1023 wxMenuItem *item = FindItem(id);
c626a8b7 1024
b019151f 1025 wxCHECK_MSG( item, _T(""), _T("wxMenu::GetHelpString: no such item") );
c626a8b7
VZ
1026
1027 return item->GetHelp();
c33c4050
RR
1028}
1029
96fd301f
VZ
1030int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const
1031{
83624f79
RR
1032 wxNode *node = m_items.First();
1033 while (node)
1034 {
1035 wxMenuItem *item = (wxMenuItem*)node->Data();
1036 if (item->GetMenuItem() == menuItem)
1037 return item->GetId();
1038 node = node->Next();
1039 }
96fd301f 1040
c626a8b7 1041 return wxNOT_FOUND;
6de97a3b 1042}
c801d85f 1043
96fd301f 1044wxMenuItem *wxMenu::FindItem(int id) const
c801d85f 1045{
83624f79 1046 wxNode *node = m_items.First();
c626a8b7 1047 while (node)
83624f79
RR
1048 {
1049 wxMenuItem *item = (wxMenuItem*)node->Data();
1050 if (item->GetId() == id)
c626a8b7 1051 {
83624f79 1052 return item;
c626a8b7 1053 }
83624f79
RR
1054 node = node->Next();
1055 }
96fd301f 1056
83624f79
RR
1057 /* Not finding anything here can be correct
1058 * when search the entire menu system for
1059 * an entry -> no error message. */
8bbe427f 1060
83624f79 1061 return (wxMenuItem *) NULL;
96fd301f 1062}
c801d85f
KB
1063
1064void wxMenu::SetInvokingWindow( wxWindow *win )
1065{
83624f79 1066 m_invokingWindow = win;
6de97a3b 1067}
c801d85f 1068
96fd301f 1069wxWindow *wxMenu::GetInvokingWindow()
c801d85f 1070{
83624f79 1071 return m_invokingWindow;
6de97a3b 1072}
c801d85f 1073
c626a8b7
VZ
1074// Update a menu and all submenus recursively. source is the object that has
1075// the update event handlers defined for it. If NULL, the menu or associated
1076// window will be used.
631f1bfe
JS
1077void wxMenu::UpdateUI(wxEvtHandler* source)
1078{
1079 if (!source && GetInvokingWindow())
1080 source = GetInvokingWindow()->GetEventHandler();
1081 if (!source)
1082 source = GetEventHandler();
1083 if (!source)
1084 source = this;
1085
1086 wxNode* node = GetItems().First();
1087 while (node)
1088 {
1089 wxMenuItem* item = (wxMenuItem*) node->Data();
1090 if ( !item->IsSeparator() )
1091 {
1092 wxWindowID id = item->GetId();
1093 wxUpdateUIEvent event(id);
1094 event.SetEventObject( source );
1095
1096 if (source->ProcessEvent(event))
1097 {
1098 if (event.GetSetText())
1099 SetLabel(id, event.GetText());
1100 if (event.GetSetChecked())
1101 Check(id, event.GetChecked());
1102 if (event.GetSetEnabled())
1103 Enable(id, event.GetEnabled());
1104 }
1105
1106 if (item->GetSubMenu())
1107 item->GetSubMenu()->UpdateUI(source);
1108 }
1109 node = node->Next();
1110 }
1111}
1112