1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #pragma implementation "menu.h"
12 #pragma implementation "menuitem.h"
23 //-----------------------------------------------------------------------------
25 //-----------------------------------------------------------------------------
27 extern void wxapp_install_idle_handler();
30 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar
,wxWindow
)
36 wxMenuBar::wxMenuBar( long style
)
38 /* the parent window is known after wxFrame::SetMenu() */
42 PreCreation( (wxWindow
*) NULL
, -1, wxDefaultPosition
, wxDefaultSize
, style
, "menu" );
44 m_menus
.DeleteContents( TRUE
);
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>" );
52 m_menubar
= gtk_menu_bar_new();
55 if (style
& wxMB_DOCKABLE
)
57 m_widget
= gtk_handle_box_new();
58 gtk_container_add( GTK_CONTAINER(m_widget
), GTK_WIDGET(m_menubar
) );
59 gtk_widget_show( GTK_WIDGET(m_menubar
) );
63 m_widget
= GTK_WIDGET(m_menubar
);
69 wxMenuBar::wxMenuBar()
71 /* the parent window is known after wxFrame::SetMenu() */
75 PreCreation( (wxWindow
*) NULL
, -1, wxDefaultPosition
, wxDefaultSize
, 0, "menu" );
77 m_menus
.DeleteContents( TRUE
);
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>" );
85 m_menubar
= gtk_menu_bar_new();
88 m_widget
= GTK_WIDGET(m_menubar
);
93 wxMenuBar::~wxMenuBar()
95 // how to destroy a GtkItemFactory ?
98 static void wxMenubarUnsetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
100 menu
->SetInvokingWindow( (wxWindow
*) NULL
);
102 #if (GTK_MINOR_VERSION > 0)
103 wxWindow
*top_frame
= win
;
104 while (top_frame
->GetParent()) top_frame
= top_frame
->GetParent();
106 /* support for native hot keys */
107 gtk_accel_group_detach( menu
->m_accel
, GTK_OBJECT(top_frame
->m_widget
) );
110 wxNode
*node
= menu
->GetItems().First();
113 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
114 if (menuitem
->IsSubMenu())
115 wxMenubarUnsetInvokingWindow( menuitem
->GetSubMenu(), win
);
120 static void wxMenubarSetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
122 menu
->SetInvokingWindow( win
);
124 #if (GTK_MINOR_VERSION > 0)
125 wxWindow
*top_frame
= win
;
126 while (top_frame
->GetParent())
127 top_frame
= top_frame
->GetParent();
129 /* support for native hot keys */
130 gtk_accel_group_attach( menu
->m_accel
, GTK_OBJECT(top_frame
->m_widget
) );
133 wxNode
*node
= menu
->GetItems().First();
136 wxMenuItem
*menuitem
= (wxMenuItem
*)node
->Data();
137 if (menuitem
->IsSubMenu())
138 wxMenubarSetInvokingWindow( menuitem
->GetSubMenu(), win
);
143 void wxMenuBar::SetInvokingWindow( wxWindow
*win
)
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();
150 /* support for native key accelerators indicated by underscroes */
151 gtk_accel_group_attach( m_accel
, GTK_OBJECT(top_frame
->m_widget
) );
154 wxNode
*node
= m_menus
.First();
157 wxMenu
*menu
= (wxMenu
*)node
->Data();
158 wxMenubarSetInvokingWindow( menu
, win
);
163 void wxMenuBar::UnsetInvokingWindow( wxWindow
*win
)
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();
170 /* support for native key accelerators indicated by underscroes */
171 gtk_accel_group_detach( m_accel
, GTK_OBJECT(top_frame
->m_widget
) );
174 wxNode
*node
= m_menus
.First();
177 wxMenu
*menu
= (wxMenu
*)node
->Data();
178 wxMenubarUnsetInvokingWindow( menu
, win
);
183 void wxMenuBar::Append( wxMenu
*menu
, const wxString
&title
)
185 m_menus
.Append( menu
);
189 /* GTK 1.2 wants to have "_" instead of "&" for accelerators */
191 for ( pc
= title
; *pc
!= _T('\0'); pc
++ )
195 #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
207 /* this doesn't have much effect right now */
208 menu
->SetTitle( str
);
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)
213 /* local buffer in multibyte form */
215 buf
<< '/' << str
.mb_str();
216 char *cbuf
= new char[buf
.Length()];
217 GtkItemFactoryEntry entry
;
218 entry
.path
= (gchar
*)buf
.c_str(); // const_cast
219 entry
.accelerator
= (gchar
*) NULL
;
220 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
221 entry
.callback_action
= 0;
222 entry
.item_type
= "<Branch>";
224 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
225 /* in order to get the pointer to the item we need the item text _without_ underscores */
226 wxString tmp
= _T("<main>/");
227 for ( pc
= str
; *pc
!= _T('\0'); pc
++ )
229 if (*pc
== _T('_')) pc
++; /* skip it */
232 menu
->m_owner
= gtk_item_factory_get_item( m_factory
, tmp
.mb_str() );
233 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
237 menu
->m_owner
= gtk_menu_item_new_with_label( str
.mb_str() );
238 gtk_widget_show( menu
->m_owner
);
239 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
241 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar
), menu
->m_owner
);
246 static int FindMenuItemRecursive( const wxMenu
*menu
, const wxString
&menuString
, const wxString
&itemString
)
248 if (menu
->GetTitle() == menuString
)
250 int res
= menu
->FindItem( itemString
);
251 if (res
!= wxNOT_FOUND
)
255 wxNode
*node
= ((wxMenu
*)menu
)->GetItems().First(); // const_cast
258 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
259 if (item
->IsSubMenu())
260 return FindMenuItemRecursive(item
->GetSubMenu(), menuString
, itemString
);
268 wxMenuItem
*wxMenuBar::FindItemForId(int itemId
, wxMenu
**menuForItem
) const
272 // TODO return the pointer to the menu
277 return FindItem(itemId
);
280 int wxMenuBar::FindMenuItem( const wxString
&menuString
, const wxString
&itemString
) const
282 wxNode
*node
= m_menus
.First();
285 wxMenu
*menu
= (wxMenu
*)node
->Data();
286 int res
= FindMenuItemRecursive( menu
, menuString
, itemString
);
287 if (res
!= -1) return res
;
293 // Find a wxMenuItem using its id. Recurses down into sub-menus
294 static wxMenuItem
* FindMenuItemByIdRecursive(const wxMenu
* menu
, int id
)
296 wxMenuItem
* result
= menu
->FindItem(id
);
298 wxNode
*node
= ((wxMenu
*)menu
)->GetItems().First(); // const_cast
299 while ( node
&& result
== NULL
)
301 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
302 if (item
->IsSubMenu())
304 result
= FindMenuItemByIdRecursive( item
->GetSubMenu(), id
);
312 wxMenuItem
* wxMenuBar::FindItem( int id
) const
314 wxMenuItem
* result
= 0;
315 wxNode
*node
= m_menus
.First();
316 while (node
&& result
== 0)
318 wxMenu
*menu
= (wxMenu
*)node
->Data();
319 result
= FindMenuItemByIdRecursive( menu
, id
);
326 void wxMenuBar::Check( int id
, bool check
)
328 wxMenuItem
* item
= FindMenuItemById( id
);
330 wxCHECK_RET( item
, _T("wxMenuBar::Check: no such item") );
335 bool wxMenuBar::IsChecked( int id
) const
337 wxMenuItem
* item
= FindMenuItemById( id
);
339 wxCHECK_MSG( item
, FALSE
, _T("wxMenuBar::IsChecked: no such item") );
341 return item
->IsChecked();
344 void wxMenuBar::Enable( int id
, bool enable
)
346 wxMenuItem
* item
= FindMenuItemById( id
);
348 wxCHECK_RET( item
, _T("wxMenuBar::Enable: no such item") );
350 item
->Enable(enable
);
353 bool wxMenuBar::IsEnabled( int id
) const
355 wxMenuItem
* item
= FindMenuItemById( id
);
357 wxCHECK_MSG( item
, FALSE
, _T("wxMenuBar::IsEnabled: no such item") );
359 return item
->IsEnabled();
362 wxString
wxMenuBar::GetLabel( int id
) const
364 wxMenuItem
* item
= FindMenuItemById( id
);
366 wxCHECK_MSG( item
, _T(""), _T("wxMenuBar::GetLabel: no such item") );
368 return item
->GetText();
371 void wxMenuBar::SetLabel( int id
, const wxString
&label
)
373 wxMenuItem
* item
= FindMenuItemById( id
);
375 wxCHECK_RET( item
, _T("wxMenuBar::SetLabel: no such item") );
377 item
->SetText( label
);
380 void wxMenuBar::EnableTop( int pos
, bool flag
)
382 wxNode
*node
= m_menus
.Nth( pos
);
384 wxCHECK_RET( node
, _T("menu not found") );
386 wxMenu
* menu
= (wxMenu
*)node
->Data();
389 gtk_widget_set_sensitive( menu
->m_owner
, flag
);
392 wxString
wxMenuBar::GetLabelTop( int pos
) const
394 wxNode
*node
= m_menus
.Nth( pos
);
396 wxCHECK_MSG( node
, _T("invalid"), _T("menu not found") );
398 wxMenu
* menu
= (wxMenu
*)node
->Data();
400 return menu
->GetTitle();
403 void wxMenuBar::SetLabelTop( int pos
, const wxString
& label
)
405 wxNode
*node
= m_menus
.Nth( pos
);
407 wxCHECK_RET( node
, _T("menu not found") );
409 wxMenu
* menu
= (wxMenu
*)node
->Data();
411 menu
->SetTitle( label
);
414 void wxMenuBar::SetHelpString( int id
, const wxString
& helpString
)
416 wxMenuItem
* item
= FindMenuItemById( id
);
418 wxCHECK_RET( item
, _T("wxMenuBar::SetHelpString: no such item") );
420 item
->SetHelp( helpString
);
423 wxString
wxMenuBar::GetHelpString( int id
) const
425 wxMenuItem
* item
= FindMenuItemById( id
);
427 wxCHECK_MSG( item
, _T(""), _T("wxMenuBar::GetHelpString: no such item") );
429 return item
->GetHelp();
432 //-----------------------------------------------------------------------------
434 //-----------------------------------------------------------------------------
436 static void gtk_menu_clicked_callback( GtkWidget
*widget
, wxMenu
*menu
)
438 if (g_isIdle
) wxapp_install_idle_handler();
440 int id
= menu
->FindMenuIdByMenuItem(widget
);
442 /* should find it for normal (not popup) menu */
443 wxASSERT( (id
!= -1) || (menu
->GetInvokingWindow() != NULL
) );
445 if (!menu
->IsEnabled(id
))
448 wxMenuItem
* item
= menu
->FindItem( id
);
449 wxCHECK_RET( item
, _T("error in menu item callback") );
451 if (item
->IsCheckable())
453 if (item
->GetCheckedFlag() == item
->IsChecked())
455 /* the menu item has been checked by calling wxMenuItem->Check() */
460 /* the user pressed on the menu item -> report */
461 item
->SetCheckedFlag(item
->IsChecked()); /* make consistent again */
465 wxCommandEvent
event( wxEVT_COMMAND_MENU_SELECTED
, id
);
466 event
.SetEventObject( menu
);
469 if (menu
->GetCallback())
471 (void) (*(menu
->GetCallback())) (*menu
, event
);
475 if (menu
->GetEventHandler()->ProcessEvent(event
))
478 wxWindow
*win
= menu
->GetInvokingWindow();
480 win
->GetEventHandler()->ProcessEvent( event
);
483 //-----------------------------------------------------------------------------
485 //-----------------------------------------------------------------------------
487 static void gtk_menu_hilight_callback( GtkWidget
*widget
, wxMenu
*menu
)
489 if (g_isIdle
) wxapp_install_idle_handler();
491 int id
= menu
->FindMenuIdByMenuItem(widget
);
493 wxASSERT( id
!= -1 ); // should find it!
495 if (!menu
->IsEnabled(id
))
498 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, id
);
499 event
.SetEventObject( menu
);
501 /* wxMSW doesn't call callback here either
503 if (menu->m_callback)
505 (void) (*(menu->m_callback)) (*menu, event);
510 if (menu
->GetEventHandler()->ProcessEvent(event
))
513 wxWindow
*win
= menu
->GetInvokingWindow();
514 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
517 //-----------------------------------------------------------------------------
519 //-----------------------------------------------------------------------------
521 static void gtk_menu_nolight_callback( GtkWidget
*widget
, wxMenu
*menu
)
523 if (g_isIdle
) wxapp_install_idle_handler();
525 int id
= menu
->FindMenuIdByMenuItem(widget
);
527 wxASSERT( id
!= -1 ); // should find it!
529 if (!menu
->IsEnabled(id
))
532 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, -1 );
533 event
.SetEventObject( menu
);
535 if (menu
->GetEventHandler()->ProcessEvent(event
))
538 wxWindow
*win
= menu
->GetInvokingWindow();
540 win
->GetEventHandler()->ProcessEvent( event
);
543 //-----------------------------------------------------------------------------
545 //-----------------------------------------------------------------------------
547 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
,wxObject
)
549 wxMenuItem::wxMenuItem()
552 m_isCheckMenu
= FALSE
;
555 m_subMenu
= (wxMenu
*) NULL
;
556 m_menuItem
= (GtkWidget
*) NULL
;
559 // it's valid for this function to be called even if m_menuItem == NULL
560 void wxMenuItem::SetName( const wxString
& str
)
562 /* '\t' is the deliminator indicating a hot key */
564 const wxChar
*pc
= str
;
565 for (; (*pc
!= _T('\0')) && (*pc
!= _T('\t')); pc
++ )
569 #if (GTK_MINOR_VERSION > 0)
572 if (*pc
== _T('/')) /* we have to filter out slashes ... */
574 m_text
<< _T('\\'); /* ... and replace them with back slashes */
581 /* only GTK 1.2 knows about hot keys */
583 #if (GTK_MINOR_VERSION > 0)
593 GtkLabel
*label
= GTK_LABEL( GTK_BIN(m_menuItem
)->child
);
594 gtk_label_set( label
, m_text
.mb_str());
598 void wxMenuItem::Check( bool check
)
600 wxCHECK_RET( m_menuItem
, _T("invalid menu item") );
602 wxCHECK_RET( IsCheckable(), _T("Can't check uncheckable item!") )
604 if (check
== m_isChecked
) return;
607 gtk_check_menu_item_set_state( (GtkCheckMenuItem
*)m_menuItem
, (gint
)check
);
610 void wxMenuItem::Enable( bool enable
)
612 wxCHECK_RET( m_menuItem
, _T("invalid menu item") );
614 gtk_widget_set_sensitive( m_menuItem
, enable
);
615 m_isEnabled
= enable
;
618 bool wxMenuItem::IsChecked() const
620 wxCHECK_MSG( m_menuItem
, FALSE
, _T("invalid menu item") );
622 wxCHECK( IsCheckable(), FALSE
); // can't get state of uncheckable item!
624 bool bIsChecked
= ((GtkCheckMenuItem
*)m_menuItem
)->active
!= 0;
629 //-----------------------------------------------------------------------------
631 //-----------------------------------------------------------------------------
633 IMPLEMENT_DYNAMIC_CLASS(wxMenu
,wxEvtHandler
)
635 wxMenu::wxMenu( const wxString
& title
, const wxFunction func
, long style
)
637 Init(title
, func
, style
);
640 wxMenu::wxMenu(long style
)
642 Init(wxEmptyString
, (wxFunction
) NULL
, style
);
646 wxMenu::Init( const wxString
& title
, const wxFunction func
, long style
)
649 m_items
.DeleteContents( TRUE
);
650 m_invokingWindow
= (wxWindow
*) NULL
;
653 #if (GTK_MINOR_VERSION > 0)
654 m_accel
= gtk_accel_group_new();
655 m_factory
= gtk_item_factory_new( GTK_TYPE_MENU
, "<main>", m_accel
);
656 m_menu
= gtk_item_factory_get_widget( m_factory
, "<main>" );
658 m_menu
= gtk_menu_new(); // Do not show!
662 m_eventHandler
= this;
663 m_clientData
= (void*) NULL
;
665 if (m_title
.IsNull()) m_title
= _T("");
666 if (m_title
!= _T(""))
672 m_owner
= (GtkWidget
*) NULL
;
674 #if (GTK_MINOR_VERSION > 0)
675 /* Tearoffs are entries, just like separators. So if we want this
676 menu to be a tear-off one, we just append a tearoff entry
678 if(m_style
& wxMENU_TEAROFF
)
680 GtkItemFactoryEntry entry
;
681 entry
.path
= "/tearoff";
682 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
683 entry
.callback_action
= 0;
684 entry
.item_type
= "<Tearoff>";
685 entry
.accelerator
= (gchar
*) NULL
;
686 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
687 //GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, "<main>/tearoff" );
694 /* how do we delete an item-factory ? */
697 void wxMenu::SetTitle( const wxString
& title
)
699 // TODO Waiting for something better
703 const wxString
wxMenu::GetTitle() const
708 void wxMenu::AppendSeparator()
710 wxMenuItem
*mitem
= new wxMenuItem();
711 mitem
->SetId(ID_SEPARATOR
);
713 #if (GTK_MINOR_VERSION > 0)
714 GtkItemFactoryEntry entry
;
716 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
717 entry
.callback_action
= 0;
718 entry
.item_type
= "<Separator>";
719 entry
.accelerator
= (gchar
*) NULL
;
721 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
723 /* this will be wrong for more than one separator. do we care? */
724 GtkWidget
*menuItem
= gtk_item_factory_get_widget( m_factory
, "<main>/sep" );
726 GtkWidget
*menuItem
= gtk_menu_item_new();
727 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
728 gtk_widget_show( menuItem
);
731 mitem
->SetMenuItem(menuItem
);
732 m_items
.Append( mitem
);
735 static char* GetHotKey( const wxString
&hotkey
, char *hotbuf
)
737 if (hotkey
.IsEmpty()) return (char*) NULL
;
741 case _T('a'): /* Alt */
743 case _T('m'): /* Meta */
746 strcpy( hotbuf
, "<alt>" );
747 wxString last
= hotkey
.Right(1);
748 strcat( hotbuf
, last
.mb_str() );
751 case _T('c'): /* Ctrl */
753 case _T('s'): /* Strg, yeah man, I'm German */
756 strcpy( hotbuf
, "<control>" );
757 wxString last
= hotkey
.Right(1);
758 strcat( hotbuf
, last
.mb_str() );
761 case _T('F'): /* function keys */
763 strcpy( hotbuf
, hotkey
.mb_str() );
773 void wxMenu::Append( int id
, const wxString
&item
, const wxString
&helpStr
, bool checkable
)
775 wxMenuItem
*mitem
= new wxMenuItem();
777 mitem
->SetText(item
);
778 mitem
->SetHelp(helpStr
);
779 mitem
->SetCheckable(checkable
);
781 #if (GTK_MINOR_VERSION > 0)
782 /* text has "_" instead of "&" after mitem->SetText() */
783 wxString
text( mitem
->GetText() );
785 /* local buffer in multibyte form */
788 strcat( buf
, text
.mb_str() );
790 GtkItemFactoryEntry entry
;
792 entry
.callback
= (GtkItemFactoryCallback
) gtk_menu_clicked_callback
;
793 entry
.callback_action
= 0;
795 entry
.item_type
= "<CheckItem>";
797 entry
.item_type
= "<Item>";
800 entry
.accelerator
= GetHotKey( mitem
->GetHotKey(), hotbuf
);
802 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
804 /* in order to get the pointer to the item we need the item text _without_ underscores */
805 wxString s
= _T("<main>/");
806 for ( const wxChar
*pc
= text
; *pc
!= _T('\0'); pc
++ )
808 if (*pc
== _T('_')) pc
++; /* skip it */
812 GtkWidget
*menuItem
= gtk_item_factory_get_widget( m_factory
, s
.mb_str() );
816 GtkWidget
*menuItem
= checkable
? gtk_check_menu_item_new_with_label( mitem
->GetText().mb_str() )
817 : gtk_menu_item_new_with_label( mitem
->GetText().mb_str() );
819 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
820 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
823 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
824 gtk_widget_show( menuItem
);
828 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
829 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
832 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
833 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
836 mitem
->SetMenuItem(menuItem
);
838 m_items
.Append( mitem
);
841 void wxMenu::Append( int id
, const wxString
&item
, wxMenu
*subMenu
, const wxString
&helpStr
)
843 wxMenuItem
*mitem
= new wxMenuItem();
845 mitem
->SetText(item
);
846 mitem
->SetHelp(helpStr
);
848 #if (GTK_MINOR_VERSION > 0)
849 /* text has "_" instead of "&" after mitem->SetText() */
850 wxString
text( mitem
->GetText() );
852 /* local buffer in multibyte form */
855 strcat( buf
, text
.mb_str() );
857 GtkItemFactoryEntry entry
;
859 entry
.callback
= (GtkItemFactoryCallback
) 0;
860 entry
.callback_action
= 0;
861 entry
.item_type
= "<Branch>";
863 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
865 /* in order to get the pointer to the item we need the item text _without_ underscores */
866 wxString s
= _T("<main>/");
867 for ( const wxChar
*pc
= text
; *pc
!= _T('\0'); pc
++ )
869 if (*pc
== _T('_')) pc
++; /* skip it */
873 GtkWidget
*menuItem
= gtk_item_factory_get_item( m_factory
, s
.mb_str() );
877 GtkWidget
*menuItem
= gtk_menu_item_new_with_label(mitem
->GetText().mbc_str());
879 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
880 gtk_widget_show( menuItem
);
884 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
885 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
888 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
889 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
892 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem
), subMenu
->m_menu
);
894 mitem
->SetMenuItem(menuItem
);
895 mitem
->SetSubMenu(subMenu
);
897 m_items
.Append( mitem
);
900 void wxMenu::Append( wxMenuItem
*item
)
902 m_items
.Append( item
);
904 GtkWidget
*menuItem
= (GtkWidget
*) NULL
;
906 if (item
->IsSeparator())
907 menuItem
= gtk_menu_item_new();
908 else if (item
->IsSubMenu())
909 menuItem
= gtk_menu_item_new_with_label(item
->GetText().mbc_str());
911 menuItem
= item
->IsCheckable() ? gtk_check_menu_item_new_with_label(item
->GetText().mbc_str())
912 : gtk_menu_item_new_with_label(item
->GetText().mbc_str());
914 if (!item
->IsSeparator())
916 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
917 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
920 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
921 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
924 if (!item
->IsSubMenu())
926 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
927 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
932 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
933 gtk_widget_show( menuItem
);
934 item
->SetMenuItem(menuItem
);
937 int wxMenu::FindItem( const wxString itemString
) const
940 for ( const wxChar
*pc
= itemString
; *pc
!= _T('\0'); pc
++ )
945 #if (GTK_MINOR_VERSION > 0)
952 wxNode
*node
= m_items
.First();
955 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
956 if (item
->GetText() == s
)
958 return item
->GetId();
966 void wxMenu::Enable( int id
, bool enable
)
968 wxMenuItem
*item
= FindItem(id
);
970 wxCHECK_RET( item
, _T("wxMenu::Enable: no such item") );
972 item
->Enable(enable
);
975 bool wxMenu::IsEnabled( int id
) const
977 wxMenuItem
*item
= FindItem(id
);
979 wxCHECK_MSG( item
, FALSE
, _T("wxMenu::IsEnabled: no such item") );
981 return item
->IsEnabled();
984 void wxMenu::Check( int id
, bool enable
)
986 wxMenuItem
*item
= FindItem(id
);
988 wxCHECK_RET( item
, _T("wxMenu::Check: no such item") );
993 bool wxMenu::IsChecked( int id
) const
995 wxMenuItem
*item
= FindItem(id
);
997 wxCHECK_MSG( item
, FALSE
, _T("wxMenu::IsChecked: no such item") );
999 return item
->IsChecked();
1002 void wxMenu::SetLabel( int id
, const wxString
&label
)
1004 wxMenuItem
*item
= FindItem(id
);
1006 wxCHECK_RET( item
, _T("wxMenu::SetLabel: no such item") );
1008 item
->SetText(label
);
1011 wxString
wxMenu::GetLabel( int id
) const
1013 wxMenuItem
*item
= FindItem(id
);
1015 wxCHECK_MSG( item
, _T(""), _T("wxMenu::GetLabel: no such item") );
1017 return item
->GetText();
1020 void wxMenu::SetHelpString( int id
, const wxString
& helpString
)
1022 wxMenuItem
*item
= FindItem(id
);
1024 wxCHECK_RET( item
, _T("wxMenu::SetHelpString: no such item") );
1026 item
->SetHelp( helpString
);
1029 wxString
wxMenu::GetHelpString( int id
) const
1031 wxMenuItem
*item
= FindItem(id
);
1033 wxCHECK_MSG( item
, _T(""), _T("wxMenu::GetHelpString: no such item") );
1035 return item
->GetHelp();
1038 int wxMenu::FindMenuIdByMenuItem( GtkWidget
*menuItem
) const
1040 wxNode
*node
= m_items
.First();
1043 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
1044 if (item
->GetMenuItem() == menuItem
)
1045 return item
->GetId();
1046 node
= node
->Next();
1052 wxMenuItem
*wxMenu::FindItem(int id
) const
1054 wxNode
*node
= m_items
.First();
1057 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
1058 if (item
->GetId() == id
)
1062 node
= node
->Next();
1065 /* Not finding anything here can be correct
1066 * when search the entire menu system for
1067 * an entry -> no error message. */
1069 return (wxMenuItem
*) NULL
;
1072 void wxMenu::SetInvokingWindow( wxWindow
*win
)
1074 m_invokingWindow
= win
;
1077 wxWindow
*wxMenu::GetInvokingWindow()
1079 return m_invokingWindow
;
1082 // Update a menu and all submenus recursively. source is the object that has
1083 // the update event handlers defined for it. If NULL, the menu or associated
1084 // window will be used.
1085 void wxMenu::UpdateUI(wxEvtHandler
* source
)
1087 if (!source
&& GetInvokingWindow())
1088 source
= GetInvokingWindow()->GetEventHandler();
1090 source
= GetEventHandler();
1094 wxNode
* node
= GetItems().First();
1097 wxMenuItem
* item
= (wxMenuItem
*) node
->Data();
1098 if ( !item
->IsSeparator() )
1100 wxWindowID id
= item
->GetId();
1101 wxUpdateUIEvent
event(id
);
1102 event
.SetEventObject( source
);
1104 if (source
->ProcessEvent(event
))
1106 if (event
.GetSetText())
1107 SetLabel(id
, event
.GetText());
1108 if (event
.GetSetChecked())
1109 Check(id
, event
.GetChecked());
1110 if (event
.GetSetEnabled())
1111 Enable(id
, event
.GetEnabled());
1114 if (item
->GetSubMenu())
1115 item
->GetSubMenu()->UpdateUI(source
);
1117 node
= node
->Next();