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
<< _T('/') << str
.c_str();
217 char *cbuf
= new char[buf
.Length()];
218 strcpy(cbuf
, buf
.mbc_str());
220 GtkItemFactoryEntry entry
;
221 entry
.path
= (gchar
*)cbuf
; // const_cast
222 entry
.accelerator
= (gchar
*) NULL
;
223 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
224 entry
.callback_action
= 0;
225 entry
.item_type
= "<Branch>";
227 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
228 /* in order to get the pointer to the item we need the item text _without_ underscores */
229 wxString tmp
= _T("<main>/");
230 for ( pc
= str
; *pc
!= _T('\0'); pc
++ )
232 if (*pc
== _T('_')) pc
++; /* skip it */
235 menu
->m_owner
= gtk_item_factory_get_item( m_factory
, tmp
.mb_str() );
236 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
240 menu
->m_owner
= gtk_menu_item_new_with_label( str
.mb_str() );
241 gtk_widget_show( menu
->m_owner
);
242 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
244 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar
), menu
->m_owner
);
249 static int FindMenuItemRecursive( const wxMenu
*menu
, const wxString
&menuString
, const wxString
&itemString
)
251 if (menu
->GetTitle() == menuString
)
253 int res
= menu
->FindItem( itemString
);
254 if (res
!= wxNOT_FOUND
)
258 wxNode
*node
= ((wxMenu
*)menu
)->GetItems().First(); // const_cast
261 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
262 if (item
->IsSubMenu())
263 return FindMenuItemRecursive(item
->GetSubMenu(), menuString
, itemString
);
271 wxMenuItem
*wxMenuBar::FindItemForId(int itemId
, wxMenu
**menuForItem
) const
275 // TODO return the pointer to the menu
280 return FindItem(itemId
);
283 int wxMenuBar::FindMenuItem( const wxString
&menuString
, const wxString
&itemString
) const
285 wxNode
*node
= m_menus
.First();
288 wxMenu
*menu
= (wxMenu
*)node
->Data();
289 int res
= FindMenuItemRecursive( menu
, menuString
, itemString
);
290 if (res
!= -1) return res
;
296 // Find a wxMenuItem using its id. Recurses down into sub-menus
297 static wxMenuItem
* FindMenuItemByIdRecursive(const wxMenu
* menu
, int id
)
299 wxMenuItem
* result
= menu
->FindItem(id
);
301 wxNode
*node
= ((wxMenu
*)menu
)->GetItems().First(); // const_cast
302 while ( node
&& result
== NULL
)
304 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
305 if (item
->IsSubMenu())
307 result
= FindMenuItemByIdRecursive( item
->GetSubMenu(), id
);
315 wxMenuItem
* wxMenuBar::FindItem( int id
) const
317 wxMenuItem
* result
= 0;
318 wxNode
*node
= m_menus
.First();
319 while (node
&& result
== 0)
321 wxMenu
*menu
= (wxMenu
*)node
->Data();
322 result
= FindMenuItemByIdRecursive( menu
, id
);
329 void wxMenuBar::Check( int id
, bool check
)
331 wxMenuItem
* item
= FindMenuItemById( id
);
333 wxCHECK_RET( item
, _T("wxMenuBar::Check: no such item") );
338 bool wxMenuBar::IsChecked( int id
) const
340 wxMenuItem
* item
= FindMenuItemById( id
);
342 wxCHECK_MSG( item
, FALSE
, _T("wxMenuBar::IsChecked: no such item") );
344 return item
->IsChecked();
347 void wxMenuBar::Enable( int id
, bool enable
)
349 wxMenuItem
* item
= FindMenuItemById( id
);
351 wxCHECK_RET( item
, _T("wxMenuBar::Enable: no such item") );
353 item
->Enable(enable
);
356 bool wxMenuBar::IsEnabled( int id
) const
358 wxMenuItem
* item
= FindMenuItemById( id
);
360 wxCHECK_MSG( item
, FALSE
, _T("wxMenuBar::IsEnabled: no such item") );
362 return item
->IsEnabled();
365 wxString
wxMenuBar::GetLabel( int id
) const
367 wxMenuItem
* item
= FindMenuItemById( id
);
369 wxCHECK_MSG( item
, _T(""), _T("wxMenuBar::GetLabel: no such item") );
371 return item
->GetText();
374 void wxMenuBar::SetLabel( int id
, const wxString
&label
)
376 wxMenuItem
* item
= FindMenuItemById( id
);
378 wxCHECK_RET( item
, _T("wxMenuBar::SetLabel: no such item") );
380 item
->SetText( label
);
383 void wxMenuBar::EnableTop( int pos
, bool flag
)
385 wxNode
*node
= m_menus
.Nth( pos
);
387 wxCHECK_RET( node
, _T("menu not found") );
389 wxMenu
* menu
= (wxMenu
*)node
->Data();
392 gtk_widget_set_sensitive( menu
->m_owner
, flag
);
395 wxString
wxMenuBar::GetLabelTop( int pos
) const
397 wxNode
*node
= m_menus
.Nth( pos
);
399 wxCHECK_MSG( node
, _T("invalid"), _T("menu not found") );
401 wxMenu
* menu
= (wxMenu
*)node
->Data();
403 return menu
->GetTitle();
406 void wxMenuBar::SetLabelTop( int pos
, const wxString
& label
)
408 wxNode
*node
= m_menus
.Nth( pos
);
410 wxCHECK_RET( node
, _T("menu not found") );
412 wxMenu
* menu
= (wxMenu
*)node
->Data();
414 menu
->SetTitle( label
);
417 void wxMenuBar::SetHelpString( int id
, const wxString
& helpString
)
419 wxMenuItem
* item
= FindMenuItemById( id
);
421 wxCHECK_RET( item
, _T("wxMenuBar::SetHelpString: no such item") );
423 item
->SetHelp( helpString
);
426 wxString
wxMenuBar::GetHelpString( int id
) const
428 wxMenuItem
* item
= FindMenuItemById( id
);
430 wxCHECK_MSG( item
, _T(""), _T("wxMenuBar::GetHelpString: no such item") );
432 return item
->GetHelp();
435 //-----------------------------------------------------------------------------
437 //-----------------------------------------------------------------------------
439 static void gtk_menu_clicked_callback( GtkWidget
*widget
, wxMenu
*menu
)
441 if (g_isIdle
) wxapp_install_idle_handler();
443 int id
= menu
->FindMenuIdByMenuItem(widget
);
445 /* should find it for normal (not popup) menu */
446 wxASSERT( (id
!= -1) || (menu
->GetInvokingWindow() != NULL
) );
448 if (!menu
->IsEnabled(id
))
451 wxMenuItem
* item
= menu
->FindItem( id
);
452 wxCHECK_RET( item
, _T("error in menu item callback") );
454 if (item
->IsCheckable())
456 if (item
->GetCheckedFlag() == item
->IsChecked())
458 /* the menu item has been checked by calling wxMenuItem->Check() */
463 /* the user pressed on the menu item -> report */
464 item
->SetCheckedFlag(item
->IsChecked()); /* make consistent again */
468 wxCommandEvent
event( wxEVT_COMMAND_MENU_SELECTED
, id
);
469 event
.SetEventObject( menu
);
472 if (menu
->GetCallback())
474 (void) (*(menu
->GetCallback())) (*menu
, event
);
478 if (menu
->GetEventHandler()->ProcessEvent(event
))
481 wxWindow
*win
= menu
->GetInvokingWindow();
483 win
->GetEventHandler()->ProcessEvent( event
);
486 //-----------------------------------------------------------------------------
488 //-----------------------------------------------------------------------------
490 static void gtk_menu_hilight_callback( GtkWidget
*widget
, wxMenu
*menu
)
492 if (g_isIdle
) wxapp_install_idle_handler();
494 int id
= menu
->FindMenuIdByMenuItem(widget
);
496 wxASSERT( id
!= -1 ); // should find it!
498 if (!menu
->IsEnabled(id
))
501 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, id
);
502 event
.SetEventObject( menu
);
504 if (menu
->GetEventHandler()->ProcessEvent(event
))
507 wxWindow
*win
= menu
->GetInvokingWindow();
508 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
511 //-----------------------------------------------------------------------------
513 //-----------------------------------------------------------------------------
515 static void gtk_menu_nolight_callback( GtkWidget
*widget
, wxMenu
*menu
)
517 if (g_isIdle
) wxapp_install_idle_handler();
519 int id
= menu
->FindMenuIdByMenuItem(widget
);
521 wxASSERT( id
!= -1 ); // should find it!
523 if (!menu
->IsEnabled(id
))
526 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, -1 );
527 event
.SetEventObject( menu
);
529 if (menu
->GetEventHandler()->ProcessEvent(event
))
532 wxWindow
*win
= menu
->GetInvokingWindow();
534 win
->GetEventHandler()->ProcessEvent( event
);
537 //-----------------------------------------------------------------------------
539 //-----------------------------------------------------------------------------
541 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
,wxObject
)
543 wxMenuItem::wxMenuItem()
546 m_isCheckMenu
= FALSE
;
549 m_subMenu
= (wxMenu
*) NULL
;
550 m_menuItem
= (GtkWidget
*) NULL
;
553 // it's valid for this function to be called even if m_menuItem == NULL
554 void wxMenuItem::SetName( const wxString
& str
)
556 /* '\t' is the deliminator indicating a hot key */
558 const wxChar
*pc
= str
;
559 for (; (*pc
!= _T('\0')) && (*pc
!= _T('\t')); pc
++ )
563 #if (GTK_MINOR_VERSION > 0)
566 if (*pc
== _T('/')) /* we have to filter out slashes ... */
568 m_text
<< _T('\\'); /* ... and replace them with back slashes */
575 /* only GTK 1.2 knows about hot keys */
577 #if (GTK_MINOR_VERSION > 0)
587 GtkLabel
*label
= GTK_LABEL( GTK_BIN(m_menuItem
)->child
);
588 gtk_label_set( label
, m_text
.mb_str());
592 void wxMenuItem::Check( bool check
)
594 wxCHECK_RET( m_menuItem
, _T("invalid menu item") );
596 wxCHECK_RET( IsCheckable(), _T("Can't check uncheckable item!") )
598 if (check
== m_isChecked
) return;
601 gtk_check_menu_item_set_state( (GtkCheckMenuItem
*)m_menuItem
, (gint
)check
);
604 void wxMenuItem::Enable( bool enable
)
606 wxCHECK_RET( m_menuItem
, _T("invalid menu item") );
608 gtk_widget_set_sensitive( m_menuItem
, enable
);
609 m_isEnabled
= enable
;
612 bool wxMenuItem::IsChecked() const
614 wxCHECK_MSG( m_menuItem
, FALSE
, _T("invalid menu item") );
616 wxCHECK( IsCheckable(), FALSE
); // can't get state of uncheckable item!
618 bool bIsChecked
= ((GtkCheckMenuItem
*)m_menuItem
)->active
!= 0;
623 //-----------------------------------------------------------------------------
625 //-----------------------------------------------------------------------------
627 IMPLEMENT_DYNAMIC_CLASS(wxMenu
,wxEvtHandler
)
630 wxMenu::Init( const wxString
& title
,
632 #ifdef WXWIN_COMPATIBILITY
633 , const wxFunction func
638 m_items
.DeleteContents( TRUE
);
639 m_invokingWindow
= (wxWindow
*) NULL
;
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>" );
647 m_menu
= gtk_menu_new(); // Do not show!
650 #ifdef WXWIN_COMPATIBILITY
654 m_eventHandler
= this;
655 m_clientData
= (void*) NULL
;
657 if (m_title
.IsNull()) m_title
= _T("");
658 if (m_title
!= _T(""))
664 m_owner
= (GtkWidget
*) NULL
;
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
670 if(m_style
& wxMENU_TEAROFF
)
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 ? */
679 //GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, "<main>/tearoff" );
686 /* how do we delete an item-factory ? */
689 void wxMenu::SetTitle( const wxString
& title
)
691 // TODO Waiting for something better
695 const wxString
wxMenu::GetTitle() const
700 void wxMenu::AppendSeparator()
702 wxMenuItem
*mitem
= new wxMenuItem();
703 mitem
->SetId(ID_SEPARATOR
);
705 #if (GTK_MINOR_VERSION > 0)
706 GtkItemFactoryEntry entry
;
708 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
709 entry
.callback_action
= 0;
710 entry
.item_type
= "<Separator>";
711 entry
.accelerator
= (gchar
*) NULL
;
713 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
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" );
718 GtkWidget
*menuItem
= gtk_menu_item_new();
719 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
720 gtk_widget_show( menuItem
);
723 mitem
->SetMenuItem(menuItem
);
724 m_items
.Append( mitem
);
727 static char* GetHotKey( const wxString
&hotkey
, char *hotbuf
)
729 if (hotkey
.IsEmpty()) return (char*) NULL
;
733 case _T('a'): /* Alt */
735 case _T('m'): /* Meta */
738 strcpy( hotbuf
, "<alt>" );
739 wxString last
= hotkey
.Right(1);
740 strcat( hotbuf
, last
.mb_str() );
743 case _T('c'): /* Ctrl */
745 case _T('s'): /* Strg, yeah man, I'm German */
748 strcpy( hotbuf
, "<control>" );
749 wxString last
= hotkey
.Right(1);
750 strcat( hotbuf
, last
.mb_str() );
753 case _T('F'): /* function keys */
755 strcpy( hotbuf
, hotkey
.mb_str() );
765 void wxMenu::Append( int id
, const wxString
&item
, const wxString
&helpStr
, bool checkable
)
767 wxMenuItem
*mitem
= new wxMenuItem();
769 mitem
->SetText(item
);
770 mitem
->SetHelp(helpStr
);
771 mitem
->SetCheckable(checkable
);
773 #if (GTK_MINOR_VERSION > 0)
774 /* text has "_" instead of "&" after mitem->SetText() */
775 wxString
text( mitem
->GetText() );
777 /* local buffer in multibyte form */
780 strcat( buf
, text
.mb_str() );
782 GtkItemFactoryEntry entry
;
784 entry
.callback
= (GtkItemFactoryCallback
) gtk_menu_clicked_callback
;
785 entry
.callback_action
= 0;
787 entry
.item_type
= "<CheckItem>";
789 entry
.item_type
= "<Item>";
792 entry
.accelerator
= GetHotKey( mitem
->GetHotKey(), hotbuf
);
794 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
796 /* in order to get the pointer to the item we need the item text _without_ underscores */
797 wxString s
= _T("<main>/");
798 for ( const wxChar
*pc
= text
; *pc
!= _T('\0'); pc
++ )
800 if (*pc
== _T('_')) pc
++; /* skip it */
804 GtkWidget
*menuItem
= gtk_item_factory_get_widget( m_factory
, s
.mb_str() );
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() );
811 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
812 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
815 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
816 gtk_widget_show( menuItem
);
820 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
821 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
824 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
825 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
828 mitem
->SetMenuItem(menuItem
);
830 m_items
.Append( mitem
);
833 void wxMenu::Append( int id
, const wxString
&item
, wxMenu
*subMenu
, const wxString
&helpStr
)
835 wxMenuItem
*mitem
= new wxMenuItem();
837 mitem
->SetText(item
);
838 mitem
->SetHelp(helpStr
);
840 #if (GTK_MINOR_VERSION > 0)
841 /* text has "_" instead of "&" after mitem->SetText() */
842 wxString
text( mitem
->GetText() );
844 /* local buffer in multibyte form */
847 strcat( buf
, text
.mb_str() );
849 GtkItemFactoryEntry entry
;
851 entry
.callback
= (GtkItemFactoryCallback
) 0;
852 entry
.callback_action
= 0;
853 entry
.item_type
= "<Branch>";
855 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
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
++ )
861 if (*pc
== _T('_')) pc
++; /* skip it */
865 GtkWidget
*menuItem
= gtk_item_factory_get_item( m_factory
, s
.mb_str() );
869 GtkWidget
*menuItem
= gtk_menu_item_new_with_label(mitem
->GetText().mbc_str());
871 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
872 gtk_widget_show( menuItem
);
876 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
877 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
880 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
881 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
884 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem
), subMenu
->m_menu
);
886 mitem
->SetMenuItem(menuItem
);
887 mitem
->SetSubMenu(subMenu
);
889 m_items
.Append( mitem
);
892 void wxMenu::Append( wxMenuItem
*item
)
894 m_items
.Append( item
);
896 GtkWidget
*menuItem
= (GtkWidget
*) NULL
;
898 if (item
->IsSeparator())
899 menuItem
= gtk_menu_item_new();
900 else if (item
->IsSubMenu())
901 menuItem
= gtk_menu_item_new_with_label(item
->GetText().mbc_str());
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());
906 if (!item
->IsSeparator())
908 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
909 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
912 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
913 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
916 if (!item
->IsSubMenu())
918 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
919 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
924 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
925 gtk_widget_show( menuItem
);
926 item
->SetMenuItem(menuItem
);
929 int wxMenu::FindItem( const wxString itemString
) const
932 for ( const wxChar
*pc
= itemString
; *pc
!= _T('\0'); pc
++ )
937 #if (GTK_MINOR_VERSION > 0)
944 wxNode
*node
= m_items
.First();
947 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
948 if (item
->GetText() == s
)
950 return item
->GetId();
958 void wxMenu::Enable( int id
, bool enable
)
960 wxMenuItem
*item
= FindItem(id
);
962 wxCHECK_RET( item
, _T("wxMenu::Enable: no such item") );
964 item
->Enable(enable
);
967 bool wxMenu::IsEnabled( int id
) const
969 wxMenuItem
*item
= FindItem(id
);
971 wxCHECK_MSG( item
, FALSE
, _T("wxMenu::IsEnabled: no such item") );
973 return item
->IsEnabled();
976 void wxMenu::Check( int id
, bool enable
)
978 wxMenuItem
*item
= FindItem(id
);
980 wxCHECK_RET( item
, _T("wxMenu::Check: no such item") );
985 bool wxMenu::IsChecked( int id
) const
987 wxMenuItem
*item
= FindItem(id
);
989 wxCHECK_MSG( item
, FALSE
, _T("wxMenu::IsChecked: no such item") );
991 return item
->IsChecked();
994 void wxMenu::SetLabel( int id
, const wxString
&label
)
996 wxMenuItem
*item
= FindItem(id
);
998 wxCHECK_RET( item
, _T("wxMenu::SetLabel: no such item") );
1000 item
->SetText(label
);
1003 wxString
wxMenu::GetLabel( int id
) const
1005 wxMenuItem
*item
= FindItem(id
);
1007 wxCHECK_MSG( item
, _T(""), _T("wxMenu::GetLabel: no such item") );
1009 return item
->GetText();
1012 void wxMenu::SetHelpString( int id
, const wxString
& helpString
)
1014 wxMenuItem
*item
= FindItem(id
);
1016 wxCHECK_RET( item
, _T("wxMenu::SetHelpString: no such item") );
1018 item
->SetHelp( helpString
);
1021 wxString
wxMenu::GetHelpString( int id
) const
1023 wxMenuItem
*item
= FindItem(id
);
1025 wxCHECK_MSG( item
, _T(""), _T("wxMenu::GetHelpString: no such item") );
1027 return item
->GetHelp();
1030 int wxMenu::FindMenuIdByMenuItem( GtkWidget
*menuItem
) const
1032 wxNode
*node
= m_items
.First();
1035 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
1036 if (item
->GetMenuItem() == menuItem
)
1037 return item
->GetId();
1038 node
= node
->Next();
1044 wxMenuItem
*wxMenu::FindItem(int id
) const
1046 wxNode
*node
= m_items
.First();
1049 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
1050 if (item
->GetId() == id
)
1054 node
= node
->Next();
1057 /* Not finding anything here can be correct
1058 * when search the entire menu system for
1059 * an entry -> no error message. */
1061 return (wxMenuItem
*) NULL
;
1064 void wxMenu::SetInvokingWindow( wxWindow
*win
)
1066 m_invokingWindow
= win
;
1069 wxWindow
*wxMenu::GetInvokingWindow()
1071 return m_invokingWindow
;
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.
1077 void wxMenu::UpdateUI(wxEvtHandler
* source
)
1079 if (!source
&& GetInvokingWindow())
1080 source
= GetInvokingWindow()->GetEventHandler();
1082 source
= GetEventHandler();
1086 wxNode
* node
= GetItems().First();
1089 wxMenuItem
* item
= (wxMenuItem
*) node
->Data();
1090 if ( !item
->IsSeparator() )
1092 wxWindowID id
= item
->GetId();
1093 wxUpdateUIEvent
event(id
);
1094 event
.SetEventObject( source
);
1096 if (source
->ProcessEvent(event
))
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());
1106 if (item
->GetSubMenu())
1107 item
->GetSubMenu()->UpdateUI(source
);
1109 node
= node
->Next();