]> git.saurik.com Git - wxWidgets.git/blob - src/gtk1/menu.cpp
provide overloads for all kinds of strings for wxDataFormat ctor to allow passing...
[wxWidgets.git] / src / gtk1 / menu.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/gtk1/menu.cpp
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 // For compilers that support precompilation, includes "wx.h".
11 #include "wx/wxprec.h"
12
13 #include "wx/menu.h"
14 #include "wx/stockitem.h"
15
16 #ifndef WX_PRECOMP
17 #include "wx/intl.h"
18 #include "wx/log.h"
19 #include "wx/app.h"
20 #include "wx/bitmap.h"
21 #endif
22
23 #if wxUSE_ACCEL
24 #include "wx/accel.h"
25 #endif // wxUSE_ACCEL
26
27 #include "wx/gtk1/private.h"
28
29 #include <gdk/gdkkeysyms.h>
30
31 #define ACCEL_OBJECT GtkObject
32 #define ACCEL_OBJECTS(a) (a)->attach_objects
33 #define ACCEL_OBJ_CAST(obj) GTK_OBJECT(obj)
34
35 // we use normal item but with a special id for the menu title
36 static const int wxGTK_TITLE_ID = -3;
37
38 // defined in window.cpp
39 extern guint32 wxGtkTimeLastClick;
40
41 //-----------------------------------------------------------------------------
42 // idle system
43 //-----------------------------------------------------------------------------
44
45 extern void wxapp_install_idle_handler();
46 extern bool g_isIdle;
47
48 #if wxUSE_ACCEL
49 static wxString GetGtkHotKey( const wxMenuItem& item );
50 #endif
51
52 //-----------------------------------------------------------------------------
53 // idle system
54 //-----------------------------------------------------------------------------
55
56 static wxString wxReplaceUnderscore( const wxString& title )
57 {
58 const wxChar *pc;
59
60 // GTK 1.2 wants to have "_" instead of "&" for accelerators
61 wxString str;
62 pc = title;
63 while (*pc != wxT('\0'))
64 {
65 if ((*pc == wxT('&')) && (*(pc+1) == wxT('&')))
66 {
67 // "&" is doubled to indicate "&" instead of accelerator
68 ++pc;
69 str << wxT('&');
70 }
71 else if (*pc == wxT('&'))
72 {
73 str << wxT('_');
74 }
75 else
76 {
77 if ( *pc == wxT('_') )
78 {
79 // underscores must be doubled to prevent them from being
80 // interpreted as accelerator character prefix by GTK
81 str << *pc;
82 }
83
84 str << *pc;
85 }
86 ++pc;
87 }
88
89 // wxPrintf( wxT("before %s after %s\n"), title.c_str(), str.c_str() );
90
91 return str;
92 }
93
94 //-----------------------------------------------------------------------------
95 // activate message from GTK
96 //-----------------------------------------------------------------------------
97
98 static void DoCommonMenuCallbackCode(wxMenu *menu, wxMenuEvent& event)
99 {
100 if (g_isIdle)
101 wxapp_install_idle_handler();
102
103 event.SetEventObject( menu );
104
105 wxEvtHandler* handler = menu->GetEventHandler();
106 if (handler && handler->ProcessEvent(event))
107 return;
108
109 wxWindow *win = menu->GetInvokingWindow();
110 if (win)
111 win->GetEventHandler()->ProcessEvent( event );
112 }
113
114 extern "C" {
115
116 static void gtk_menu_open_callback( GtkWidget *widget, wxMenu *menu )
117 {
118 wxMenuEvent event(wxEVT_MENU_OPEN, -1, menu);
119
120 DoCommonMenuCallbackCode(menu, event);
121 }
122
123 static void gtk_menu_close_callback( GtkWidget *widget, wxMenuBar *menubar )
124 {
125 if ( !menubar->GetMenuCount() )
126 {
127 // if menubar is empty we can't call GetMenu(0) below
128 return;
129 }
130
131 wxMenuEvent event( wxEVT_MENU_CLOSE, -1, NULL );
132
133 DoCommonMenuCallbackCode(menubar->GetMenu(0), event);
134 }
135
136 }
137
138 //-----------------------------------------------------------------------------
139 // wxMenuBar
140 //-----------------------------------------------------------------------------
141
142 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow)
143
144 void wxMenuBar::Init(size_t n, wxMenu *menus[], const wxString titles[], long style)
145 {
146 // the parent window is known after wxFrame::SetMenu()
147 m_needParent = false;
148 m_style = style;
149 m_invokingWindow = (wxWindow*) NULL;
150
151 if (!PreCreation( (wxWindow*) NULL, wxDefaultPosition, wxDefaultSize ) ||
152 !CreateBase( (wxWindow*) NULL, -1, wxDefaultPosition, wxDefaultSize, style, wxDefaultValidator, wxT("menubar") ))
153 {
154 wxFAIL_MSG( wxT("wxMenuBar creation failed") );
155 return;
156 }
157
158 m_menubar = gtk_menu_bar_new();
159 m_accel = gtk_accel_group_new();
160
161 if (style & wxMB_DOCKABLE)
162 {
163 m_widget = gtk_handle_box_new();
164 gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_menubar) );
165 gtk_widget_show( GTK_WIDGET(m_menubar) );
166 }
167 else
168 {
169 m_widget = GTK_WIDGET(m_menubar);
170 }
171
172 PostCreation();
173
174 ApplyWidgetStyle();
175
176 for (size_t i = 0; i < n; ++i )
177 Append(menus[i], titles[i]);
178
179 // VZ: for some reason connecting to menus "deactivate" doesn't work (we
180 // don't get it when the menu is dismissed by clicking outside the
181 // toolbar) so we connect to the global one, even if it means that we
182 // can't pass the menu which was closed in wxMenuEvent object
183 gtk_signal_connect( GTK_OBJECT(GTK_MENU_SHELL(m_menubar)),
184 "deactivate",
185 GTK_SIGNAL_FUNC(gtk_menu_close_callback),
186 (gpointer)this );
187
188 }
189
190 wxMenuBar::wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style)
191 {
192 Init(n, menus, titles, style);
193 }
194
195 wxMenuBar::wxMenuBar(long style)
196 {
197 Init(0, NULL, NULL, style);
198 }
199
200 wxMenuBar::wxMenuBar()
201 {
202 Init(0, NULL, NULL, 0);
203 }
204
205 wxMenuBar::~wxMenuBar()
206 {
207 }
208
209 static void wxMenubarUnsetInvokingWindow( wxMenu *menu, wxWindow *win )
210 {
211 menu->SetInvokingWindow( (wxWindow*) NULL );
212
213 wxWindow *top_frame = win;
214 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
215 top_frame = top_frame->GetParent();
216
217 // support for native hot keys
218 gtk_accel_group_detach( menu->m_accel, ACCEL_OBJ_CAST(top_frame->m_widget) );
219
220 wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst();
221 while (node)
222 {
223 wxMenuItem *menuitem = node->GetData();
224 if (menuitem->IsSubMenu())
225 wxMenubarUnsetInvokingWindow( menuitem->GetSubMenu(), win );
226 node = node->GetNext();
227 }
228 }
229
230 static void wxMenubarSetInvokingWindow( wxMenu *menu, wxWindow *win )
231 {
232 menu->SetInvokingWindow( win );
233
234 wxWindow *top_frame = win;
235 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
236 top_frame = top_frame->GetParent();
237
238 // support for native hot keys
239 ACCEL_OBJECT *obj = ACCEL_OBJ_CAST(top_frame->m_widget);
240 if ( !g_slist_find( ACCEL_OBJECTS(menu->m_accel), obj ) )
241 gtk_accel_group_attach( menu->m_accel, obj );
242
243 wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst();
244 while (node)
245 {
246 wxMenuItem *menuitem = node->GetData();
247 if (menuitem->IsSubMenu())
248 wxMenubarSetInvokingWindow( menuitem->GetSubMenu(), win );
249 node = node->GetNext();
250 }
251 }
252
253 void wxMenuBar::SetInvokingWindow( wxWindow *win )
254 {
255 m_invokingWindow = win;
256 wxWindow *top_frame = win;
257 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
258 top_frame = top_frame->GetParent();
259
260 // support for native key accelerators indicated by underscroes
261 ACCEL_OBJECT *obj = ACCEL_OBJ_CAST(top_frame->m_widget);
262 if ( !g_slist_find( ACCEL_OBJECTS(m_accel), obj ) )
263 gtk_accel_group_attach( m_accel, obj );
264
265 wxMenuList::compatibility_iterator node = m_menus.GetFirst();
266 while (node)
267 {
268 wxMenu *menu = node->GetData();
269 wxMenubarSetInvokingWindow( menu, win );
270 node = node->GetNext();
271 }
272 }
273
274 void wxMenuBar::UnsetInvokingWindow( wxWindow *win )
275 {
276 m_invokingWindow = (wxWindow*) NULL;
277 wxWindow *top_frame = win;
278 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
279 top_frame = top_frame->GetParent();
280
281 // support for native key accelerators indicated by underscroes
282 gtk_accel_group_detach( m_accel, ACCEL_OBJ_CAST(top_frame->m_widget) );
283
284 wxMenuList::compatibility_iterator node = m_menus.GetFirst();
285 while (node)
286 {
287 wxMenu *menu = node->GetData();
288 wxMenubarUnsetInvokingWindow( menu, win );
289 node = node->GetNext();
290 }
291 }
292
293 bool wxMenuBar::Append( wxMenu *menu, const wxString &title )
294 {
295 if ( !wxMenuBarBase::Append( menu, title ) )
296 return false;
297
298 return GtkAppend(menu, title);
299 }
300
301 bool wxMenuBar::GtkAppend(wxMenu *menu, const wxString& title, int pos)
302 {
303 wxString str( wxReplaceUnderscore( title ) );
304
305 // This doesn't have much effect right now.
306 menu->SetTitle( str );
307
308 // The "m_owner" is the "menu item"
309 menu->m_owner = gtk_menu_item_new_with_label( wxGTK_CONV( str ) );
310 GtkLabel *label = GTK_LABEL( GTK_BIN(menu->m_owner)->child );
311 // set new text
312 gtk_label_set_text( label, wxGTK_CONV( str ) );
313 // reparse key accel
314 guint accel_key = gtk_label_parse_uline (GTK_LABEL(label), wxGTK_CONV( str ) );
315 if (accel_key != GDK_VoidSymbol)
316 {
317 gtk_widget_add_accelerator (menu->m_owner,
318 "activate_item",
319 m_accel, //gtk_menu_ensure_uline_accel_group(GTK_MENU(m_menubar)),
320 accel_key,
321 GDK_MOD1_MASK,
322 GTK_ACCEL_LOCKED);
323 }
324
325 gtk_widget_show( menu->m_owner );
326
327 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu );
328
329 if (pos == -1)
330 gtk_menu_shell_append( GTK_MENU_SHELL(m_menubar), menu->m_owner );
331 else
332 gtk_menu_shell_insert( GTK_MENU_SHELL(m_menubar), menu->m_owner, pos );
333
334 gtk_signal_connect( GTK_OBJECT(menu->m_owner), "activate",
335 GTK_SIGNAL_FUNC(gtk_menu_open_callback),
336 (gpointer)menu );
337
338 // m_invokingWindow is set after wxFrame::SetMenuBar(). This call enables
339 // addings menu later on.
340 if (m_invokingWindow)
341 {
342 wxMenubarSetInvokingWindow( menu, m_invokingWindow );
343
344 // OPTIMISE ME: we should probably cache this, or pass it
345 // directly, but for now this is a minimal
346 // change to validate the new dynamic sizing.
347 // see (and refactor :) similar code in Remove
348 // below.
349
350 wxFrame *frame = wxDynamicCast( m_invokingWindow, wxFrame );
351
352 if( frame )
353 frame->UpdateMenuBarSize();
354 }
355
356 return true;
357 }
358
359 bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title)
360 {
361 if ( !wxMenuBarBase::Insert(pos, menu, title) )
362 return false;
363
364 // TODO
365
366 if ( !GtkAppend(menu, title, (int)pos) )
367 return false;
368
369 return true;
370 }
371
372 wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title)
373 {
374 // remove the old item and insert a new one
375 wxMenu *menuOld = Remove(pos);
376 if ( menuOld && !Insert(pos, menu, title) )
377 {
378 return (wxMenu*) NULL;
379 }
380
381 // either Insert() succeeded or Remove() failed and menuOld is NULL
382 return menuOld;
383 }
384
385 wxMenu *wxMenuBar::Remove(size_t pos)
386 {
387 wxMenu *menu = wxMenuBarBase::Remove(pos);
388 if ( !menu )
389 return (wxMenu*) NULL;
390
391 gtk_menu_item_remove_submenu( GTK_MENU_ITEM(menu->m_owner) );
392 gtk_container_remove(GTK_CONTAINER(m_menubar), menu->m_owner);
393
394 gtk_widget_destroy( menu->m_owner );
395 menu->m_owner = NULL;
396
397 if (m_invokingWindow)
398 {
399 // OPTIMISE ME: see comment in GtkAppend
400 wxFrame *frame = wxDynamicCast( m_invokingWindow, wxFrame );
401
402 if( frame )
403 frame->UpdateMenuBarSize();
404 }
405
406 return menu;
407 }
408
409 static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString )
410 {
411 if (wxMenuItem::GetLabelFromText(menu->GetTitle()) == wxMenuItem::GetLabelFromText(menuString))
412 {
413 int res = menu->FindItem( itemString );
414 if (res != wxNOT_FOUND)
415 return res;
416 }
417
418 wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst();
419 while (node)
420 {
421 wxMenuItem *item = node->GetData();
422 if (item->IsSubMenu())
423 return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString);
424
425 node = node->GetNext();
426 }
427
428 return wxNOT_FOUND;
429 }
430
431 int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const
432 {
433 wxMenuList::compatibility_iterator node = m_menus.GetFirst();
434 while (node)
435 {
436 wxMenu *menu = node->GetData();
437 int res = FindMenuItemRecursive( menu, menuString, itemString);
438 if (res != -1)
439 return res;
440 node = node->GetNext();
441 }
442
443 return wxNOT_FOUND;
444 }
445
446 // Find a wxMenuItem using its id. Recurses down into sub-menus
447 static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id)
448 {
449 wxMenuItem* result = menu->FindChildItem(id);
450
451 wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst();
452 while ( node && result == NULL )
453 {
454 wxMenuItem *item = node->GetData();
455 if (item->IsSubMenu())
456 {
457 result = FindMenuItemByIdRecursive( item->GetSubMenu(), id );
458 }
459 node = node->GetNext();
460 }
461
462 return result;
463 }
464
465 wxMenuItem* wxMenuBar::FindItem( int id, wxMenu **menuForItem ) const
466 {
467 wxMenuItem* result = 0;
468 wxMenuList::compatibility_iterator node = m_menus.GetFirst();
469 while (node && result == 0)
470 {
471 wxMenu *menu = node->GetData();
472 result = FindMenuItemByIdRecursive( menu, id );
473 node = node->GetNext();
474 }
475
476 if ( menuForItem )
477 {
478 *menuForItem = result ? result->GetMenu() : (wxMenu *)NULL;
479 }
480
481 return result;
482 }
483
484 void wxMenuBar::EnableTop( size_t pos, bool flag )
485 {
486 wxMenuList::compatibility_iterator node = m_menus.Item( pos );
487
488 wxCHECK_RET( node, wxT("menu not found") );
489
490 wxMenu* menu = node->GetData();
491
492 if (menu->m_owner)
493 gtk_widget_set_sensitive( menu->m_owner, flag );
494 }
495
496 wxString wxMenuBar::GetLabelTop( size_t pos ) const
497 {
498 wxMenuList::compatibility_iterator node = m_menus.Item( pos );
499
500 wxCHECK_MSG( node, wxT("invalid"), wxT("menu not found") );
501
502 wxMenu* menu = node->GetData();
503
504 wxString label;
505 wxString text( menu->GetTitle() );
506 for ( const wxChar *pc = text.c_str(); *pc; pc++ )
507 {
508 if ( *pc == wxT('_') )
509 {
510 // '_' is the escape character for GTK+
511 continue;
512 }
513
514 // don't remove ampersands '&' since if we have them in the menu title
515 // it means that they were doubled to indicate "&" instead of accelerator
516
517 label += *pc;
518 }
519
520 return label;
521 }
522
523 void wxMenuBar::SetLabelTop( size_t pos, const wxString& label )
524 {
525 wxMenuList::compatibility_iterator node = m_menus.Item( pos );
526
527 wxCHECK_RET( node, wxT("menu not found") );
528
529 wxMenu* menu = node->GetData();
530
531 const wxString str( wxReplaceUnderscore( label ) );
532
533 menu->SetTitle( str );
534
535 if (menu->m_owner)
536 {
537 GtkLabel *glabel = GTK_LABEL( GTK_BIN(menu->m_owner)->child );
538
539 /* set new text */
540 gtk_label_set( glabel, wxGTK_CONV( str ) );
541
542 /* reparse key accel */
543 (void)gtk_label_parse_uline (GTK_LABEL(glabel), wxGTK_CONV( str ) );
544 gtk_accel_label_refetch( GTK_ACCEL_LABEL(glabel) );
545 }
546
547 }
548
549 //-----------------------------------------------------------------------------
550 // "activate"
551 //-----------------------------------------------------------------------------
552
553 extern "C" {
554 static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
555 {
556 if (g_isIdle)
557 wxapp_install_idle_handler();
558
559 int id = menu->FindMenuIdByMenuItem(widget);
560
561 /* should find it for normal (not popup) menu */
562 wxASSERT_MSG( (id != -1) || (menu->GetInvokingWindow() != NULL),
563 _T("menu item not found in gtk_menu_clicked_callback") );
564
565 if (!menu->IsEnabled(id))
566 return;
567
568 wxMenuItem* item = menu->FindChildItem( id );
569 wxCHECK_RET( item, wxT("error in menu item callback") );
570
571 if ( item->GetId() == wxGTK_TITLE_ID )
572 {
573 // ignore events from the menu title
574 return;
575 }
576
577 if (item->IsCheckable())
578 {
579 bool isReallyChecked = item->IsChecked(),
580 isInternallyChecked = item->wxMenuItemBase::IsChecked();
581
582 // ensure that the internal state is always consistent with what is
583 // shown on the screen
584 item->wxMenuItemBase::Check(isReallyChecked);
585
586 // we must not report the events for the radio button going up nor the
587 // events resulting from the calls to wxMenuItem::Check()
588 if ( (item->GetKind() == wxITEM_RADIO && !isReallyChecked) ||
589 (isInternallyChecked == isReallyChecked) )
590 {
591 return;
592 }
593 }
594
595
596 // Is this menu on a menubar? (possibly nested)
597 wxFrame* frame = NULL;
598 if(menu->IsAttached())
599 frame = menu->GetMenuBar()->GetFrame();
600
601 // FIXME: why do we have to call wxFrame::GetEventHandler() directly here?
602 // normally wxMenu::SendEvent() should be enough, if it doesn't work
603 // in wxGTK then we have a bug in wxMenu::GetInvokingWindow() which
604 // should be fixed instead of working around it here...
605 if (frame)
606 {
607 // If it is attached then let the frame send the event.
608 // Don't call frame->ProcessCommand(id) because it toggles
609 // checkable items and we've already done that above.
610 wxCommandEvent commandEvent(wxEVT_COMMAND_MENU_SELECTED, id);
611 commandEvent.SetEventObject(frame);
612 if (item->IsCheckable())
613 commandEvent.SetInt(item->IsChecked());
614 commandEvent.SetEventObject(menu);
615
616 frame->GetEventHandler()->ProcessEvent(commandEvent);
617 }
618 else
619 {
620 // otherwise let the menu have it
621 menu->SendEvent(id, item->IsCheckable() ? item->IsChecked() : -1);
622 }
623 }
624 }
625
626 //-----------------------------------------------------------------------------
627 // "select"
628 //-----------------------------------------------------------------------------
629
630 extern "C" {
631 static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu )
632 {
633 if (g_isIdle) wxapp_install_idle_handler();
634
635 int id = menu->FindMenuIdByMenuItem(widget);
636
637 wxASSERT( id != -1 ); // should find it!
638
639 if (!menu->IsEnabled(id))
640 return;
641
642 wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, id );
643 event.SetEventObject( menu );
644
645 wxEvtHandler* handler = menu->GetEventHandler();
646 if (handler && handler->ProcessEvent(event))
647 return;
648
649 wxWindow *win = menu->GetInvokingWindow();
650 if (win) win->GetEventHandler()->ProcessEvent( event );
651 }
652 }
653
654 //-----------------------------------------------------------------------------
655 // "deselect"
656 //-----------------------------------------------------------------------------
657
658 extern "C" {
659 static void gtk_menu_nolight_callback( GtkWidget *widget, wxMenu *menu )
660 {
661 if (g_isIdle) wxapp_install_idle_handler();
662
663 int id = menu->FindMenuIdByMenuItem(widget);
664
665 wxASSERT( id != -1 ); // should find it!
666
667 if (!menu->IsEnabled(id))
668 return;
669
670 wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, -1 );
671 event.SetEventObject( menu );
672
673 wxEvtHandler* handler = menu->GetEventHandler();
674 if (handler && handler->ProcessEvent(event))
675 return;
676
677 wxWindow *win = menu->GetInvokingWindow();
678 if (win)
679 win->GetEventHandler()->ProcessEvent( event );
680 }
681 }
682
683 //-----------------------------------------------------------------------------
684 // wxMenuItem
685 //-----------------------------------------------------------------------------
686
687 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject)
688
689 wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu,
690 int id,
691 const wxString& name,
692 const wxString& help,
693 wxItemKind kind,
694 wxMenu *subMenu)
695 {
696 return new wxMenuItem(parentMenu, id, name, help, kind, subMenu);
697 }
698
699 wxMenuItem::wxMenuItem(wxMenu *parentMenu,
700 int id,
701 const wxString& text,
702 const wxString& help,
703 wxItemKind kind,
704 wxMenu *subMenu)
705 : wxMenuItemBase(parentMenu, id, text, help, kind, subMenu)
706 {
707 Init();
708 }
709
710 wxMenuItem::wxMenuItem(wxMenu *parentMenu,
711 int id,
712 const wxString& text,
713 const wxString& help,
714 bool isCheckable,
715 wxMenu *subMenu)
716 : wxMenuItemBase(parentMenu, id, text, help,
717 isCheckable ? wxITEM_CHECK : wxITEM_NORMAL, subMenu)
718 {
719 Init();
720 }
721
722 void wxMenuItem::Init()
723 {
724 m_labelWidget = (GtkWidget *) NULL;
725 m_menuItem = (GtkWidget *) NULL;
726
727 DoSetText(m_text);
728 }
729
730 wxMenuItem::~wxMenuItem()
731 {
732 // don't delete menu items, the menus take care of that
733 }
734
735 // return the menu item text without any menu accels
736 /* static */
737 wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
738 {
739 wxString label;
740
741 for ( const wxChar *pc = text.c_str(); *pc; pc++ )
742 {
743 if ( *pc == wxT('\t'))
744 break;
745
746 if ( *pc == wxT('_') )
747 {
748 // GTK 1.2 escapes "xxx_xxx" to "xxx__xxx"
749 pc++;
750 label += *pc;
751 continue;
752 }
753
754 if ( (*pc == wxT('&')) && (*(pc+1) != wxT('&')) )
755 {
756 // wxMSW escapes "&"
757 // "&" is doubled to indicate "&" instead of accelerator
758 continue;
759 }
760
761 label += *pc;
762 }
763
764 // wxPrintf( wxT("GetLabelFromText(): text %s label %s\n"), text.c_str(), label.c_str() );
765
766 return label;
767 }
768
769 void wxMenuItem::SetText( const wxString& string )
770 {
771 wxString str = string;
772 if ( str.empty() && !IsSeparator() )
773 {
774 wxASSERT_MSG(wxIsStockID(GetId()), wxT("A non-stock menu item with an empty label?"));
775 str = wxGetStockLabel(GetId(), wxSTOCK_WITH_ACCELERATOR |
776 wxSTOCK_WITH_MNEMONIC);
777 }
778
779 // Some optimization to avoid flicker
780 wxString oldLabel = m_text;
781 oldLabel = wxStripMenuCodes(oldLabel);
782 oldLabel.Replace(wxT("_"), wxEmptyString);
783 wxString label1 = wxStripMenuCodes(str);
784 wxString oldhotkey = GetHotKey(); // Store the old hotkey in Ctrl-foo format
785 wxCharBuffer oldbuf = wxGTK_CONV( GetGtkHotKey(*this) ); // and as <control>foo
786
787 DoSetText(str);
788
789 if (oldLabel == label1 &&
790 oldhotkey == GetHotKey()) // Make sure we can change a hotkey even if the label is unaltered
791 return;
792
793 if (m_menuItem)
794 {
795 GtkLabel *label;
796 if (m_labelWidget)
797 label = (GtkLabel*) m_labelWidget;
798 else
799 label = GTK_LABEL( GTK_BIN(m_menuItem)->child );
800
801 // set new text
802 gtk_label_set( label, wxGTK_CONV( m_text ) );
803
804 // reparse key accel
805 (void)gtk_label_parse_uline (GTK_LABEL(label), wxGTK_CONV(m_text) );
806 gtk_accel_label_refetch( GTK_ACCEL_LABEL(label) );
807 }
808
809 guint accel_key;
810 GdkModifierType accel_mods;
811 gtk_accelerator_parse( (const char*) oldbuf, &accel_key, &accel_mods);
812 if (accel_key != 0)
813 {
814 gtk_widget_remove_accelerator( GTK_WIDGET(m_menuItem),
815 m_parentMenu->m_accel,
816 accel_key,
817 accel_mods );
818 }
819
820 wxCharBuffer buf = wxGTK_CONV( GetGtkHotKey(*this) );
821 gtk_accelerator_parse( (const char*) buf, &accel_key, &accel_mods);
822 if (accel_key != 0)
823 {
824 gtk_widget_add_accelerator( GTK_WIDGET(m_menuItem),
825 "activate",
826 m_parentMenu->m_accel,
827 accel_key,
828 accel_mods,
829 GTK_ACCEL_VISIBLE);
830 }
831 }
832
833 // it's valid for this function to be called even if m_menuItem == NULL
834 void wxMenuItem::DoSetText( const wxString& str )
835 {
836 // '\t' is the deliminator indicating a hot key
837 wxString text;
838 text.reserve(str.length());
839
840 const wxChar *pc = str;
841 while ( (*pc != wxT('\0')) && (*pc != wxT('\t')) )
842 {
843 if ((*pc == wxT('&')) && (*(pc+1) == wxT('&')))
844 {
845 // "&" is doubled to indicate "&" instead of accelerator
846 ++pc;
847 text << wxT('&');
848 }
849 else if (*pc == wxT('&'))
850 {
851 text << wxT('_');
852 }
853 else if ( *pc == wxT('_') ) // escape underscores
854 {
855 text << wxT("__");
856 }
857 else
858 {
859 text << *pc;
860 }
861 ++pc;
862 }
863
864 m_hotKey = wxEmptyString;
865
866 if ( *pc == wxT('\t') )
867 {
868 pc++;
869 m_hotKey = pc;
870 }
871
872 m_text = text;
873 }
874
875 #if wxUSE_ACCEL
876
877 wxAcceleratorEntry *wxMenuItem::GetAccel() const
878 {
879 if ( !GetHotKey() )
880 {
881 // nothing
882 return (wxAcceleratorEntry *)NULL;
883 }
884
885 // accelerator parsing code looks for them after a TAB, so insert a dummy
886 // one here
887 wxString label;
888 label << wxT('\t') << GetHotKey();
889
890 return wxAcceleratorEntry::Create(label);
891 }
892
893 #endif // wxUSE_ACCEL
894
895 void wxMenuItem::Check( bool check )
896 {
897 wxCHECK_RET( m_menuItem, wxT("invalid menu item") );
898
899 if (check == m_isChecked)
900 return;
901
902 wxMenuItemBase::Check( check );
903
904 switch ( GetKind() )
905 {
906 case wxITEM_CHECK:
907 case wxITEM_RADIO:
908 gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check );
909 break;
910
911 default:
912 wxFAIL_MSG( _T("can't check this item") );
913 }
914 }
915
916 void wxMenuItem::Enable( bool enable )
917 {
918 wxCHECK_RET( m_menuItem, wxT("invalid menu item") );
919
920 gtk_widget_set_sensitive( m_menuItem, enable );
921 wxMenuItemBase::Enable( enable );
922 }
923
924 bool wxMenuItem::IsChecked() const
925 {
926 wxCHECK_MSG( m_menuItem, false, wxT("invalid menu item") );
927
928 wxCHECK_MSG( IsCheckable(), false,
929 wxT("can't get state of uncheckable item!") );
930
931 return ((GtkCheckMenuItem*)m_menuItem)->active != 0;
932 }
933
934 //-----------------------------------------------------------------------------
935 // wxMenu
936 //-----------------------------------------------------------------------------
937
938 IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler)
939
940 void wxMenu::Init()
941 {
942 m_accel = gtk_accel_group_new();
943 m_menu = gtk_menu_new();
944 // NB: keep reference to the menu so that it is not destroyed behind
945 // our back by GTK+ e.g. when it is removed from menubar:
946 gtk_widget_ref(m_menu);
947
948 m_owner = (GtkWidget*) NULL;
949
950 // Tearoffs are entries, just like separators. So if we want this
951 // menu to be a tear-off one, we just append a tearoff entry
952 // immediately.
953 if ( m_style & wxMENU_TEAROFF )
954 {
955 GtkWidget *tearoff = gtk_tearoff_menu_item_new();
956
957 gtk_menu_append(GTK_MENU(m_menu), tearoff);
958 }
959
960 m_prevRadio = NULL;
961
962 // append the title as the very first entry if we have it
963 if ( !m_title.empty() )
964 {
965 Append(wxGTK_TITLE_ID, m_title);
966 AppendSeparator();
967 }
968 }
969
970 wxMenu::~wxMenu()
971 {
972 WX_CLEAR_LIST(wxMenuItemList, m_items);
973
974 if ( GTK_IS_WIDGET( m_menu ))
975 {
976 // see wxMenu::Init
977 gtk_widget_unref( m_menu );
978 // if the menu is inserted in another menu at this time, there was
979 // one more reference to it:
980 if ( m_owner )
981 gtk_widget_destroy( m_menu );
982 }
983 }
984
985 bool wxMenu::GtkAppend(wxMenuItem *mitem, int pos)
986 {
987 GtkWidget *menuItem;
988
989 wxString text;
990 GtkLabel* label = NULL;
991
992 if ( mitem->IsSeparator() )
993 {
994 // TODO
995 menuItem = gtk_menu_item_new();
996 }
997 else if (mitem->GetBitmap().Ok())
998 {
999 text = mitem->GetText();
1000 const wxBitmap *bitmap = &mitem->GetBitmap();
1001
1002 // TODO
1003 wxUnusedVar(bitmap);
1004 menuItem = gtk_menu_item_new_with_label( wxGTK_CONV( text ) );
1005 label = GTK_LABEL( GTK_BIN(menuItem)->child );
1006
1007 m_prevRadio = NULL;
1008 }
1009 else // a normal item
1010 {
1011 // text has "_" instead of "&" after mitem->SetText() so don't use it
1012 text = mitem->GetText() ;
1013
1014 switch ( mitem->GetKind() )
1015 {
1016 case wxITEM_CHECK:
1017 {
1018 menuItem = gtk_check_menu_item_new_with_label( wxGTK_CONV( text ) );
1019 label = GTK_LABEL( GTK_BIN(menuItem)->child );
1020 // set new text
1021 gtk_label_set_text( label, wxGTK_CONV( text ) );
1022 m_prevRadio = NULL;
1023 break;
1024 }
1025
1026 case wxITEM_RADIO:
1027 {
1028 GSList *group = NULL;
1029 if ( m_prevRadio == NULL )
1030 {
1031 // start of a new radio group
1032 m_prevRadio = menuItem = gtk_radio_menu_item_new_with_label( group, wxGTK_CONV( text ) );
1033 label = GTK_LABEL( GTK_BIN(menuItem)->child );
1034 // set new text
1035 gtk_label_set_text( label, wxGTK_CONV( text ) );
1036 }
1037 else // continue the radio group
1038 {
1039 group = gtk_radio_menu_item_group (GTK_RADIO_MENU_ITEM (m_prevRadio));
1040 m_prevRadio = menuItem = gtk_radio_menu_item_new_with_label( group, wxGTK_CONV( text ) );
1041 label = GTK_LABEL( GTK_BIN(menuItem)->child );
1042 }
1043 break;
1044 }
1045
1046 default:
1047 wxFAIL_MSG( _T("unexpected menu item kind") );
1048 // fall through
1049
1050 case wxITEM_NORMAL:
1051 {
1052 menuItem = gtk_menu_item_new_with_label( wxGTK_CONV( text ) );
1053 label = GTK_LABEL( GTK_BIN(menuItem)->child );
1054 m_prevRadio = NULL;
1055 break;
1056 }
1057 }
1058
1059 }
1060
1061 guint accel_key;
1062 GdkModifierType accel_mods;
1063 wxCharBuffer buf = wxGTK_CONV( GetGtkHotKey(*mitem) );
1064
1065 // wxPrintf( wxT("item: %s hotkey %s\n"), mitem->GetText().c_str(), GetGtkHotKey(*mitem).c_str() );
1066 gtk_accelerator_parse( (const char*) buf, &accel_key, &accel_mods);
1067 if (accel_key != 0)
1068 {
1069 gtk_widget_add_accelerator (GTK_WIDGET(menuItem),
1070 "activate",
1071 m_accel,
1072 accel_key,
1073 accel_mods,
1074 GTK_ACCEL_VISIBLE);
1075 }
1076
1077 if (pos == -1)
1078 gtk_menu_shell_append(GTK_MENU_SHELL(m_menu), menuItem);
1079 else
1080 gtk_menu_shell_insert(GTK_MENU_SHELL(m_menu), menuItem, pos);
1081
1082 gtk_widget_show( menuItem );
1083
1084 if ( !mitem->IsSeparator() )
1085 {
1086 wxASSERT_MSG( menuItem, wxT("invalid menuitem") );
1087
1088 gtk_signal_connect( GTK_OBJECT(menuItem), "select",
1089 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback),
1090 (gpointer)this );
1091
1092 gtk_signal_connect( GTK_OBJECT(menuItem), "deselect",
1093 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback),
1094 (gpointer)this );
1095
1096 if ( mitem->IsSubMenu() && mitem->GetKind() != wxITEM_RADIO && mitem->GetKind() != wxITEM_CHECK )
1097 {
1098 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), mitem->GetSubMenu()->m_menu );
1099
1100 gtk_widget_show( mitem->GetSubMenu()->m_menu );
1101
1102 // if adding a submenu to a menu already existing in the menu bar, we
1103 // must set invoking window to allow processing events from this
1104 // submenu
1105 if ( m_invokingWindow )
1106 wxMenubarSetInvokingWindow(mitem->GetSubMenu(), m_invokingWindow);
1107 }
1108 else
1109 {
1110 gtk_signal_connect( GTK_OBJECT(menuItem), "activate",
1111 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback),
1112 (gpointer)this );
1113 }
1114
1115 guint accel_key = gtk_label_parse_uline (GTK_LABEL(label), wxGTK_CONV( text ) );
1116 if (accel_key != GDK_VoidSymbol)
1117 {
1118 gtk_widget_add_accelerator (menuItem,
1119 "activate_item",
1120 gtk_menu_ensure_uline_accel_group(GTK_MENU(m_menu)),
1121 accel_key,
1122 GDK_MOD1_MASK,
1123 GTK_ACCEL_LOCKED);
1124 }
1125 }
1126
1127 mitem->SetMenuItem(menuItem);
1128
1129 if (ms_locked)
1130 {
1131 // This doesn't even exist!
1132 // gtk_widget_lock_accelerators(mitem->GetMenuItem());
1133 }
1134
1135 return true;
1136 }
1137
1138 wxMenuItem* wxMenu::DoAppend(wxMenuItem *mitem)
1139 {
1140 if (!GtkAppend(mitem))
1141 return NULL;
1142
1143 return wxMenuBase::DoAppend(mitem);
1144 }
1145
1146 wxMenuItem* wxMenu::DoInsert(size_t pos, wxMenuItem *item)
1147 {
1148 if ( !wxMenuBase::DoInsert(pos, item) )
1149 return NULL;
1150
1151 // TODO
1152 if ( !GtkAppend(item, (int)pos) )
1153 return NULL;
1154
1155 return item;
1156 }
1157
1158 wxMenuItem *wxMenu::DoRemove(wxMenuItem *item)
1159 {
1160 if ( !wxMenuBase::DoRemove(item) )
1161 return (wxMenuItem *)NULL;
1162
1163 // TODO: this code doesn't delete the item factory item and this seems
1164 // impossible as of GTK 1.2.6.
1165 gtk_widget_destroy( item->GetMenuItem() );
1166
1167 return item;
1168 }
1169
1170 int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const
1171 {
1172 wxMenuItemList::compatibility_iterator node = m_items.GetFirst();
1173 while (node)
1174 {
1175 wxMenuItem *item = node->GetData();
1176 if (item->GetMenuItem() == menuItem)
1177 return item->GetId();
1178 node = node->GetNext();
1179 }
1180
1181 return wxNOT_FOUND;
1182 }
1183
1184 // ----------------------------------------------------------------------------
1185 // helpers
1186 // ----------------------------------------------------------------------------
1187
1188 #if wxUSE_ACCEL
1189
1190 static wxString GetGtkHotKey( const wxMenuItem& item )
1191 {
1192 wxString hotkey;
1193
1194 wxAcceleratorEntry *accel = item.GetAccel();
1195 if ( accel )
1196 {
1197 int flags = accel->GetFlags();
1198 if ( flags & wxACCEL_ALT )
1199 hotkey += wxT("<alt>");
1200 if ( flags & wxACCEL_CTRL )
1201 hotkey += wxT("<control>");
1202 if ( flags & wxACCEL_SHIFT )
1203 hotkey += wxT("<shift>");
1204
1205 int code = accel->GetKeyCode();
1206 switch ( code )
1207 {
1208 case WXK_F1:
1209 case WXK_F2:
1210 case WXK_F3:
1211 case WXK_F4:
1212 case WXK_F5:
1213 case WXK_F6:
1214 case WXK_F7:
1215 case WXK_F8:
1216 case WXK_F9:
1217 case WXK_F10:
1218 case WXK_F11:
1219 case WXK_F12:
1220 case WXK_F13:
1221 case WXK_F14:
1222 case WXK_F15:
1223 case WXK_F16:
1224 case WXK_F17:
1225 case WXK_F18:
1226 case WXK_F19:
1227 case WXK_F20:
1228 case WXK_F21:
1229 case WXK_F22:
1230 case WXK_F23:
1231 case WXK_F24:
1232 hotkey += wxString::Format(wxT("F%d"), code - WXK_F1 + 1);
1233 break;
1234
1235 // TODO: we should use gdk_keyval_name() (a.k.a.
1236 // XKeysymToString) here as well as hardcoding the keysym
1237 // names this might be not portable
1238 case WXK_INSERT:
1239 hotkey << wxT("Insert" );
1240 break;
1241 case WXK_DELETE:
1242 hotkey << wxT("Delete" );
1243 break;
1244 case WXK_UP:
1245 hotkey << wxT("Up" );
1246 break;
1247 case WXK_DOWN:
1248 hotkey << wxT("Down" );
1249 break;
1250 case WXK_PAGEUP:
1251 hotkey << wxT("Page_Up" );
1252 break;
1253 case WXK_PAGEDOWN:
1254 hotkey << wxT("Page_Down" );
1255 break;
1256 case WXK_LEFT:
1257 hotkey << wxT("Left" );
1258 break;
1259 case WXK_RIGHT:
1260 hotkey << wxT("Right" );
1261 break;
1262 case WXK_HOME:
1263 hotkey << wxT("Home" );
1264 break;
1265 case WXK_END:
1266 hotkey << wxT("End" );
1267 break;
1268 case WXK_RETURN:
1269 hotkey << wxT("Return" );
1270 break;
1271 case WXK_BACK:
1272 hotkey << wxT("BackSpace" );
1273 break;
1274 case WXK_TAB:
1275 hotkey << wxT("Tab" );
1276 break;
1277 case WXK_ESCAPE:
1278 hotkey << wxT("Esc" );
1279 break;
1280 case WXK_SPACE:
1281 hotkey << wxT("space" );
1282 break;
1283 case WXK_MULTIPLY:
1284 hotkey << wxT("Multiply" );
1285 break;
1286 case WXK_ADD:
1287 hotkey << wxT("Add" );
1288 break;
1289 case WXK_SEPARATOR:
1290 hotkey << wxT("Separator" );
1291 break;
1292 case WXK_SUBTRACT:
1293 hotkey << wxT("Subtract" );
1294 break;
1295 case WXK_DECIMAL:
1296 hotkey << wxT("Decimal" );
1297 break;
1298 case WXK_DIVIDE:
1299 hotkey << wxT("Divide" );
1300 break;
1301 case WXK_CANCEL:
1302 hotkey << wxT("Cancel" );
1303 break;
1304 case WXK_CLEAR:
1305 hotkey << wxT("Clear" );
1306 break;
1307 case WXK_MENU:
1308 hotkey << wxT("Menu" );
1309 break;
1310 case WXK_PAUSE:
1311 hotkey << wxT("Pause" );
1312 break;
1313 case WXK_CAPITAL:
1314 hotkey << wxT("Capital" );
1315 break;
1316 case WXK_SELECT:
1317 hotkey << wxT("Select" );
1318 break;
1319 case WXK_PRINT:
1320 hotkey << wxT("Print" );
1321 break;
1322 case WXK_EXECUTE:
1323 hotkey << wxT("Execute" );
1324 break;
1325 case WXK_SNAPSHOT:
1326 hotkey << wxT("Snapshot" );
1327 break;
1328 case WXK_HELP:
1329 hotkey << wxT("Help" );
1330 break;
1331 case WXK_NUMLOCK:
1332 hotkey << wxT("Num_Lock" );
1333 break;
1334 case WXK_SCROLL:
1335 hotkey << wxT("Scroll_Lock" );
1336 break;
1337 case WXK_NUMPAD_INSERT:
1338 hotkey << wxT("KP_Insert" );
1339 break;
1340 case WXK_NUMPAD_DELETE:
1341 hotkey << wxT("KP_Delete" );
1342 break;
1343 case WXK_NUMPAD_SPACE:
1344 hotkey << wxT("KP_Space" );
1345 break;
1346 case WXK_NUMPAD_TAB:
1347 hotkey << wxT("KP_Tab" );
1348 break;
1349 case WXK_NUMPAD_ENTER:
1350 hotkey << wxT("KP_Enter" );
1351 break;
1352 case WXK_NUMPAD_F1: case WXK_NUMPAD_F2: case WXK_NUMPAD_F3:
1353 case WXK_NUMPAD_F4:
1354 hotkey += wxString::Format(wxT("KP_F%d"), code - WXK_NUMPAD_F1 + 1);
1355 break;
1356 case WXK_NUMPAD_HOME:
1357 hotkey << wxT("KP_Home" );
1358 break;
1359 case WXK_NUMPAD_LEFT:
1360 hotkey << wxT("KP_Left" );
1361 break;
1362 case WXK_NUMPAD_UP:
1363 hotkey << wxT("KP_Up" );
1364 break;
1365 case WXK_NUMPAD_RIGHT:
1366 hotkey << wxT("KP_Right" );
1367 break;
1368 case WXK_NUMPAD_DOWN:
1369 hotkey << wxT("KP_Down" );
1370 break;
1371 case WXK_NUMPAD_PAGEUP:
1372 hotkey << wxT("KP_Page_Up" );
1373 break;
1374 case WXK_NUMPAD_PAGEDOWN:
1375 hotkey << wxT("KP_Page_Down" );
1376 break;
1377 case WXK_NUMPAD_END:
1378 hotkey << wxT("KP_End" );
1379 break;
1380 case WXK_NUMPAD_BEGIN:
1381 hotkey << wxT("KP_Begin" );
1382 break;
1383 case WXK_NUMPAD_EQUAL:
1384 hotkey << wxT("KP_Equal" );
1385 break;
1386 case WXK_NUMPAD_MULTIPLY:
1387 hotkey << wxT("KP_Multiply" );
1388 break;
1389 case WXK_NUMPAD_ADD:
1390 hotkey << wxT("KP_Add" );
1391 break;
1392 case WXK_NUMPAD_SEPARATOR:
1393 hotkey << wxT("KP_Separator" );
1394 break;
1395 case WXK_NUMPAD_SUBTRACT:
1396 hotkey << wxT("KP_Subtract" );
1397 break;
1398 case WXK_NUMPAD_DECIMAL:
1399 hotkey << wxT("KP_Decimal" );
1400 break;
1401 case WXK_NUMPAD_DIVIDE:
1402 hotkey << wxT("KP_Divide" );
1403 break;
1404 case WXK_NUMPAD0: case WXK_NUMPAD1: case WXK_NUMPAD2:
1405 case WXK_NUMPAD3: case WXK_NUMPAD4: case WXK_NUMPAD5:
1406 case WXK_NUMPAD6: case WXK_NUMPAD7: case WXK_NUMPAD8: case WXK_NUMPAD9:
1407 hotkey += wxString::Format(wxT("KP_%d"), code - WXK_NUMPAD0);
1408 break;
1409 case WXK_WINDOWS_LEFT:
1410 hotkey << wxT("Super_L" );
1411 break;
1412 case WXK_WINDOWS_RIGHT:
1413 hotkey << wxT("Super_R" );
1414 break;
1415 case WXK_WINDOWS_MENU:
1416 hotkey << wxT("Menu" );
1417 break;
1418 case WXK_COMMAND:
1419 hotkey << wxT("Command" );
1420 break;
1421 /* These probably wouldn't work as there is no SpecialX in gdk/keynames.txt
1422 case WXK_SPECIAL1: case WXK_SPECIAL2: case WXK_SPECIAL3: case WXK_SPECIAL4:
1423 case WXK_SPECIAL5: case WXK_SPECIAL6: case WXK_SPECIAL7: case WXK_SPECIAL8:
1424 case WXK_SPECIAL9: case WXK_SPECIAL10: case WXK_SPECIAL11: case WXK_SPECIAL12:
1425 case WXK_SPECIAL13: case WXK_SPECIAL14: case WXK_SPECIAL15: case WXK_SPECIAL16:
1426 case WXK_SPECIAL17: case WXK_SPECIAL18: case WXK_SPECIAL19: case WXK_SPECIAL20:
1427 hotkey += wxString::Format(wxT("Special%d"), code - WXK_SPECIAL1 + 1);
1428 break;
1429 */
1430 // if there are any other keys wxAcceleratorEntry::Create() may
1431 // return, we should process them here
1432
1433 default:
1434 if ( code < 127 )
1435 {
1436 wxString name = wxGTK_CONV_BACK( gdk_keyval_name((guint)code) );
1437 if ( !name.empty() )
1438 {
1439 hotkey << name;
1440 break;
1441 }
1442 }
1443
1444 wxFAIL_MSG( wxT("unknown keyboard accel") );
1445 }
1446
1447 delete accel;
1448 }
1449
1450 return hotkey;
1451 }
1452
1453 #endif // wxUSE_ACCEL
1454
1455 // ----------------------------------------------------------------------------
1456 // Pop-up menu stuff
1457 // ----------------------------------------------------------------------------
1458
1459 #if wxUSE_MENUS_NATIVE
1460
1461 extern "C" WXDLLIMPEXP_CORE
1462 void gtk_pop_hide_callback( GtkWidget *WXUNUSED(widget), bool* is_waiting )
1463 {
1464 *is_waiting = false;
1465 }
1466
1467 WXDLLIMPEXP_CORE void SetInvokingWindow( wxMenu *menu, wxWindow* win )
1468 {
1469 menu->SetInvokingWindow( win );
1470
1471 wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst();
1472 while (node)
1473 {
1474 wxMenuItem *menuitem = node->GetData();
1475 if (menuitem->IsSubMenu())
1476 {
1477 SetInvokingWindow( menuitem->GetSubMenu(), win );
1478 }
1479
1480 node = node->GetNext();
1481 }
1482 }
1483
1484 extern "C" WXDLLIMPEXP_CORE
1485 void wxPopupMenuPositionCallback( GtkMenu *menu,
1486 gint *x, gint *y,
1487 gpointer user_data )
1488 {
1489 // ensure that the menu appears entirely on screen
1490 GtkRequisition req;
1491 gtk_widget_get_child_requisition(GTK_WIDGET(menu), &req);
1492
1493 wxSize sizeScreen = wxGetDisplaySize();
1494 wxPoint *pos = (wxPoint*)user_data;
1495
1496 gint xmax = sizeScreen.x - req.width,
1497 ymax = sizeScreen.y - req.height;
1498
1499 *x = pos->x < xmax ? pos->x : xmax;
1500 *y = pos->y < ymax ? pos->y : ymax;
1501 }
1502
1503 bool wxWindowGTK::DoPopupMenu( wxMenu *menu, int x, int y )
1504 {
1505 wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") );
1506
1507 wxCHECK_MSG( menu != NULL, false, wxT("invalid popup-menu") );
1508
1509 // NOTE: if you change this code, you need to update
1510 // the same code in taskbar.cpp as well. This
1511 // is ugly code duplication, I know.
1512
1513 SetInvokingWindow( menu, this );
1514
1515 menu->UpdateUI();
1516
1517 bool is_waiting = true;
1518
1519 gulong handler = gtk_signal_connect( GTK_OBJECT(menu->m_menu),
1520 "hide",
1521 GTK_SIGNAL_FUNC(gtk_pop_hide_callback),
1522 (gpointer)&is_waiting );
1523
1524 wxPoint pos;
1525 gpointer userdata;
1526 GtkMenuPositionFunc posfunc;
1527 if ( x == -1 && y == -1 )
1528 {
1529 // use GTK's default positioning algorithm
1530 userdata = NULL;
1531 posfunc = NULL;
1532 }
1533 else
1534 {
1535 pos = ClientToScreen(wxPoint(x, y));
1536 userdata = &pos;
1537 posfunc = wxPopupMenuPositionCallback;
1538 }
1539
1540 wxMenuEvent eventOpen(wxEVT_MENU_OPEN, -1, menu);
1541 DoCommonMenuCallbackCode(menu, eventOpen);
1542
1543 gtk_menu_popup(
1544 GTK_MENU(menu->m_menu),
1545 (GtkWidget *) NULL, // parent menu shell
1546 (GtkWidget *) NULL, // parent menu item
1547 posfunc, // function to position it
1548 userdata, // client data
1549 0, // button used to activate it
1550 wxGtkTimeLastClick // the time of activation
1551 );
1552
1553 while (is_waiting)
1554 {
1555 gtk_main_iteration();
1556 }
1557
1558 gtk_signal_disconnect(GTK_OBJECT(menu->m_menu), handler);
1559
1560 wxMenuEvent eventClose(wxEVT_MENU_CLOSE, -1, menu);
1561 DoCommonMenuCallbackCode(menu, eventClose);
1562
1563 return true;
1564 }
1565
1566 #endif // wxUSE_MENUS_NATIVE