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 */
216 strcat( buf
, str
.mb_str() );
218 GtkItemFactoryEntry entry
;
220 entry
.accelerator
= (gchar
*) NULL
;
221 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
222 entry
.callback_action
= 0;
225 if ((m_style & wxMB_TEAROFF) || (menu->GetStyle() & wxMENU_TEAROFF))
226 entry.item_type = "<Tearoff>";
229 entry
.item_type
= "<Branch>";
231 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
233 /* in order to get the pointer to the item we need the item text _without_ underscores */
234 wxString tmp
= _T("<main>/");
235 for ( pc
= str
; *pc
!= _T('\0'); pc
++ )
237 if (*pc
== _T('_')) pc
++; /* skip it */
241 menu
->m_owner
= gtk_item_factory_get_item( m_factory
, tmp
.mb_str() );
243 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
246 if ((m_style & wxMB_TEAROFF) || (menu->GetStyle() & wxMENU_TEAROFF))
248 entry.item_type = "<Tearoff>";
250 tmp.Append( _T("/tearoff") );
251 strcpy( buf, tmp.mb_str() );
252 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 );
257 menu
->m_owner
= gtk_menu_item_new_with_label( str
.mb_str() );
258 gtk_widget_show( menu
->m_owner
);
259 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
261 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar
), menu
->m_owner
);
266 static int FindMenuItemRecursive( const wxMenu
*menu
, const wxString
&menuString
, const wxString
&itemString
)
268 if (menu
->GetTitle() == menuString
)
270 int res
= menu
->FindItem( itemString
);
271 if (res
!= wxNOT_FOUND
)
275 wxNode
*node
= ((wxMenu
*)menu
)->GetItems().First(); // const_cast
278 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
279 if (item
->IsSubMenu())
280 return FindMenuItemRecursive(item
->GetSubMenu(), menuString
, itemString
);
288 wxMenuItem
*wxMenuBar::FindItemForId(int itemId
, wxMenu
**menuForItem
) const
292 // TODO return the pointer to the menu
297 return FindItem(itemId
);
300 int wxMenuBar::FindMenuItem( const wxString
&menuString
, const wxString
&itemString
) const
302 wxNode
*node
= m_menus
.First();
305 wxMenu
*menu
= (wxMenu
*)node
->Data();
306 int res
= FindMenuItemRecursive( menu
, menuString
, itemString
);
307 if (res
!= -1) return res
;
313 // Find a wxMenuItem using its id. Recurses down into sub-menus
314 static wxMenuItem
* FindMenuItemByIdRecursive(const wxMenu
* menu
, int id
)
316 wxMenuItem
* result
= menu
->FindItem(id
);
318 wxNode
*node
= ((wxMenu
*)menu
)->GetItems().First(); // const_cast
319 while ( node
&& result
== NULL
)
321 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
322 if (item
->IsSubMenu())
324 result
= FindMenuItemByIdRecursive( item
->GetSubMenu(), id
);
332 wxMenuItem
* wxMenuBar::FindItem( int id
) const
334 wxMenuItem
* result
= 0;
335 wxNode
*node
= m_menus
.First();
336 while (node
&& result
== 0)
338 wxMenu
*menu
= (wxMenu
*)node
->Data();
339 result
= FindMenuItemByIdRecursive( menu
, id
);
346 void wxMenuBar::Check( int id
, bool check
)
348 wxMenuItem
* item
= FindMenuItemById( id
);
350 wxCHECK_RET( item
, _T("wxMenuBar::Check: no such item") );
355 bool wxMenuBar::IsChecked( int id
) const
357 wxMenuItem
* item
= FindMenuItemById( id
);
359 wxCHECK_MSG( item
, FALSE
, _T("wxMenuBar::IsChecked: no such item") );
361 return item
->IsChecked();
364 void wxMenuBar::Enable( int id
, bool enable
)
366 wxMenuItem
* item
= FindMenuItemById( id
);
368 wxCHECK_RET( item
, _T("wxMenuBar::Enable: no such item") );
370 item
->Enable(enable
);
373 bool wxMenuBar::IsEnabled( int id
) const
375 wxMenuItem
* item
= FindMenuItemById( id
);
377 wxCHECK_MSG( item
, FALSE
, _T("wxMenuBar::IsEnabled: no such item") );
379 return item
->IsEnabled();
382 wxString
wxMenuBar::GetLabel( int id
) const
384 wxMenuItem
* item
= FindMenuItemById( id
);
386 wxCHECK_MSG( item
, _T(""), _T("wxMenuBar::GetLabel: no such item") );
388 return item
->GetText();
391 void wxMenuBar::SetLabel( int id
, const wxString
&label
)
393 wxMenuItem
* item
= FindMenuItemById( id
);
395 wxCHECK_RET( item
, _T("wxMenuBar::SetLabel: no such item") );
397 item
->SetText( label
);
400 void wxMenuBar::EnableTop( int pos
, bool flag
)
402 wxNode
*node
= m_menus
.Nth( pos
);
404 wxCHECK_RET( node
, _T("menu not found") );
406 wxMenu
* menu
= (wxMenu
*)node
->Data();
409 gtk_widget_set_sensitive( menu
->m_owner
, flag
);
412 wxString
wxMenuBar::GetLabelTop( int pos
) const
414 wxNode
*node
= m_menus
.Nth( pos
);
416 wxCHECK_MSG( node
, _T("invalid"), _T("menu not found") );
418 wxMenu
* menu
= (wxMenu
*)node
->Data();
420 return menu
->GetTitle();
423 void wxMenuBar::SetLabelTop( int pos
, const wxString
& label
)
425 wxNode
*node
= m_menus
.Nth( pos
);
427 wxCHECK_RET( node
, _T("menu not found") );
429 wxMenu
* menu
= (wxMenu
*)node
->Data();
431 menu
->SetTitle( label
);
434 void wxMenuBar::SetHelpString( int id
, const wxString
& helpString
)
436 wxMenuItem
* item
= FindMenuItemById( id
);
438 wxCHECK_RET( item
, _T("wxMenuBar::SetHelpString: no such item") );
440 item
->SetHelp( helpString
);
443 wxString
wxMenuBar::GetHelpString( int id
) const
445 wxMenuItem
* item
= FindMenuItemById( id
);
447 wxCHECK_MSG( item
, _T(""), _T("wxMenuBar::GetHelpString: no such item") );
449 return item
->GetHelp();
452 //-----------------------------------------------------------------------------
454 //-----------------------------------------------------------------------------
456 static void gtk_menu_clicked_callback( GtkWidget
*widget
, wxMenu
*menu
)
458 if (g_isIdle
) wxapp_install_idle_handler();
460 int id
= menu
->FindMenuIdByMenuItem(widget
);
462 /* should find it for normal (not popup) menu */
463 wxASSERT( (id
!= -1) || (menu
->GetInvokingWindow() != NULL
) );
465 if (!menu
->IsEnabled(id
))
468 wxMenuItem
* item
= menu
->FindItem( id
);
469 wxCHECK_RET( item
, _T("error in menu item callback") );
471 if (item
->IsCheckable())
473 if (item
->GetCheckedFlag() == item
->IsChecked())
475 /* the menu item has been checked by calling wxMenuItem->Check() */
480 /* the user pressed on the menu item -> report */
481 item
->SetCheckedFlag(item
->IsChecked()); /* make consistent again */
485 wxCommandEvent
event( wxEVT_COMMAND_MENU_SELECTED
, id
);
486 event
.SetEventObject( menu
);
489 if (menu
->GetCallback())
491 (void) (*(menu
->GetCallback())) (*menu
, event
);
495 if (menu
->GetEventHandler()->ProcessEvent(event
))
498 wxWindow
*win
= menu
->GetInvokingWindow();
500 win
->GetEventHandler()->ProcessEvent( event
);
503 //-----------------------------------------------------------------------------
505 //-----------------------------------------------------------------------------
507 static void gtk_menu_hilight_callback( GtkWidget
*widget
, wxMenu
*menu
)
509 if (g_isIdle
) wxapp_install_idle_handler();
511 int id
= menu
->FindMenuIdByMenuItem(widget
);
513 wxASSERT( id
!= -1 ); // should find it!
515 if (!menu
->IsEnabled(id
))
518 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, id
);
519 event
.SetEventObject( menu
);
521 /* wxMSW doesn't call callback here either
523 if (menu->m_callback)
525 (void) (*(menu->m_callback)) (*menu, event);
530 if (menu
->GetEventHandler()->ProcessEvent(event
))
533 wxWindow
*win
= menu
->GetInvokingWindow();
534 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
537 //-----------------------------------------------------------------------------
539 //-----------------------------------------------------------------------------
541 static void gtk_menu_nolight_callback( GtkWidget
*widget
, wxMenu
*menu
)
543 if (g_isIdle
) wxapp_install_idle_handler();
545 int id
= menu
->FindMenuIdByMenuItem(widget
);
547 wxASSERT( id
!= -1 ); // should find it!
549 if (!menu
->IsEnabled(id
))
552 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, -1 );
553 event
.SetEventObject( menu
);
555 if (menu
->GetEventHandler()->ProcessEvent(event
))
558 wxWindow
*win
= menu
->GetInvokingWindow();
560 win
->GetEventHandler()->ProcessEvent( event
);
563 //-----------------------------------------------------------------------------
565 //-----------------------------------------------------------------------------
567 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
,wxObject
)
569 wxMenuItem::wxMenuItem()
572 m_isCheckMenu
= FALSE
;
575 m_subMenu
= (wxMenu
*) NULL
;
576 m_menuItem
= (GtkWidget
*) NULL
;
579 // it's valid for this function to be called even if m_menuItem == NULL
580 void wxMenuItem::SetName( const wxString
& str
)
582 /* '\t' is the deliminator indicating a hot key */
584 const wxChar
*pc
= str
;
585 for (; (*pc
!= _T('\0')) && (*pc
!= _T('\t')); pc
++ )
589 #if (GTK_MINOR_VERSION > 0)
592 if (*pc
== _T('/')) /* we have to filter out slashes ... */
594 m_text
<< _T('\\'); /* ... and replace them with back slashes */
601 /* only GTK 1.2 knows about hot keys */
603 #if (GTK_MINOR_VERSION > 0)
613 GtkLabel
*label
= GTK_LABEL( GTK_BIN(m_menuItem
)->child
);
614 gtk_label_set( label
, m_text
.mb_str());
618 void wxMenuItem::Check( bool check
)
620 wxCHECK_RET( m_menuItem
, _T("invalid menu item") );
622 wxCHECK_RET( IsCheckable(), _T("Can't check uncheckable item!") )
624 if (check
== m_isChecked
) return;
627 gtk_check_menu_item_set_state( (GtkCheckMenuItem
*)m_menuItem
, (gint
)check
);
630 void wxMenuItem::Enable( bool enable
)
632 wxCHECK_RET( m_menuItem
, _T("invalid menu item") );
634 gtk_widget_set_sensitive( m_menuItem
, enable
);
635 m_isEnabled
= enable
;
638 bool wxMenuItem::IsChecked() const
640 wxCHECK_MSG( m_menuItem
, FALSE
, _T("invalid menu item") );
642 wxCHECK( IsCheckable(), FALSE
); // can't get state of uncheckable item!
644 bool bIsChecked
= ((GtkCheckMenuItem
*)m_menuItem
)->active
!= 0;
649 //-----------------------------------------------------------------------------
651 //-----------------------------------------------------------------------------
653 IMPLEMENT_DYNAMIC_CLASS(wxMenu
,wxEvtHandler
)
655 wxMenu::wxMenu( const wxString
& title
, const wxFunction func
, long style
)
657 Init(title
, func
, style
);
660 wxMenu::wxMenu(long style
)
662 Init(wxEmptyString
, (wxFunction
) NULL
, style
);
666 wxMenu::Init( const wxString
& title
, const wxFunction func
, long style
)
669 m_items
.DeleteContents( TRUE
);
670 m_invokingWindow
= (wxWindow
*) NULL
;
673 #if (GTK_MINOR_VERSION > 0)
674 m_accel
= gtk_accel_group_new();
675 m_factory
= gtk_item_factory_new( GTK_TYPE_MENU
, "<main>", m_accel
);
676 m_menu
= gtk_item_factory_get_widget( m_factory
, "<main>" );
678 m_menu
= gtk_menu_new(); // Do not show!
682 m_eventHandler
= this;
683 m_clientData
= (void*) NULL
;
685 if (m_title
.IsNull()) m_title
= _T("");
686 if (m_title
!= _T(""))
692 m_owner
= (GtkWidget
*) NULL
;
697 /* how do we delete an item-factory ? */
700 void wxMenu::SetTitle( const wxString
& title
)
702 // TODO Waiting for something better
706 const wxString
wxMenu::GetTitle() const
711 void wxMenu::AppendSeparator()
713 wxMenuItem
*mitem
= new wxMenuItem();
714 mitem
->SetId(ID_SEPARATOR
);
716 #if (GTK_MINOR_VERSION > 0)
717 GtkItemFactoryEntry entry
;
719 entry
.callback
= (GtkItemFactoryCallback
) NULL
;
720 entry
.callback_action
= 0;
721 entry
.item_type
= "<Separator>";
722 entry
.accelerator
= (gchar
*) NULL
;
724 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
726 /* this will be wrong for more than one separator. do we care? */
727 GtkWidget
*menuItem
= gtk_item_factory_get_widget( m_factory
, "<main>/sep" );
729 GtkWidget
*menuItem
= gtk_menu_item_new();
730 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
731 gtk_widget_show( menuItem
);
734 mitem
->SetMenuItem(menuItem
);
735 m_items
.Append( mitem
);
738 static char* GetHotKey( const wxString
&hotkey
, char *hotbuf
)
740 if (hotkey
.IsEmpty()) return (char*) NULL
;
744 case _T('a'): /* Alt */
746 case _T('m'): /* Meta */
749 strcpy( hotbuf
, "<alt>" );
750 wxString last
= hotkey
.Right(1);
751 strcat( hotbuf
, last
.mb_str() );
754 case _T('c'): /* Ctrl */
756 case _T('s'): /* Strg, yeah man, I'm German */
759 strcpy( hotbuf
, "<control>" );
760 wxString last
= hotkey
.Right(1);
761 strcat( hotbuf
, last
.mb_str() );
764 case _T('F'): /* function keys */
766 strcpy( hotbuf
, hotkey
.mb_str() );
776 void wxMenu::Append( int id
, const wxString
&item
, const wxString
&helpStr
, bool checkable
)
778 wxMenuItem
*mitem
= new wxMenuItem();
780 mitem
->SetText(item
);
781 mitem
->SetHelp(helpStr
);
782 mitem
->SetCheckable(checkable
);
784 #if (GTK_MINOR_VERSION > 0)
785 /* text has "_" instead of "&" after mitem->SetText() */
786 wxString
text( mitem
->GetText() );
788 /* local buffer in multibyte form */
791 strcat( buf
, text
.mb_str() );
793 GtkItemFactoryEntry entry
;
795 entry
.callback
= (GtkItemFactoryCallback
) gtk_menu_clicked_callback
;
796 entry
.callback_action
= 0;
798 entry
.item_type
= "<CheckItem>";
800 entry
.item_type
= "<Item>";
803 entry
.accelerator
= GetHotKey( mitem
->GetHotKey(), hotbuf
);
805 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
807 /* in order to get the pointer to the item we need the item text _without_ underscores */
808 wxString s
= _T("<main>/");
809 for ( const wxChar
*pc
= text
; *pc
!= _T('\0'); pc
++ )
811 if (*pc
== _T('_')) pc
++; /* skip it */
815 GtkWidget
*menuItem
= gtk_item_factory_get_widget( m_factory
, s
.mb_str() );
819 GtkWidget
*menuItem
= checkable
? gtk_check_menu_item_new_with_label( mitem
->GetText().mb_str() )
820 : gtk_menu_item_new_with_label( mitem
->GetText().mb_str() );
822 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
823 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
826 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
827 gtk_widget_show( menuItem
);
831 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
832 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
835 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
836 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
839 mitem
->SetMenuItem(menuItem
);
841 m_items
.Append( mitem
);
844 void wxMenu::Append( int id
, const wxString
&item
, wxMenu
*subMenu
, const wxString
&helpStr
)
846 wxMenuItem
*mitem
= new wxMenuItem();
848 mitem
->SetText(item
);
849 mitem
->SetHelp(helpStr
);
851 #if (GTK_MINOR_VERSION > 0)
852 /* text has "_" instead of "&" after mitem->SetText() */
853 wxString
text( mitem
->GetText() );
855 /* local buffer in multibyte form */
858 strcat( buf
, text
.mb_str() );
860 GtkItemFactoryEntry entry
;
862 entry
.callback
= (GtkItemFactoryCallback
) 0;
863 entry
.callback_action
= 0;
866 if (m_style & wxMENU_TEAROFF)
867 entry.item_type = "<Tearoff>";
870 entry
.item_type
= "<Branch>";
872 gtk_item_factory_create_item( m_factory
, &entry
, (gpointer
) this, 2 ); /* what is 2 ? */
874 /* in order to get the pointer to the item we need the item text _without_ underscores */
875 wxString s
= _T("<main>/");
876 for ( const wxChar
*pc
= text
; *pc
!= _T('\0'); pc
++ )
878 if (*pc
== _T('_')) pc
++; /* skip it */
882 GtkWidget
*menuItem
= gtk_item_factory_get_item( m_factory
, s
.mb_str() );
886 GtkWidget
*menuItem
= gtk_menu_item_new_with_label(mitem
->GetText().mbc_str());
888 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
889 gtk_widget_show( menuItem
);
893 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
894 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
897 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
898 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
901 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem
), subMenu
->m_menu
);
903 mitem
->SetMenuItem(menuItem
);
904 mitem
->SetSubMenu(subMenu
);
906 m_items
.Append( mitem
);
909 void wxMenu::Append( wxMenuItem
*item
)
911 m_items
.Append( item
);
913 GtkWidget
*menuItem
= (GtkWidget
*) NULL
;
915 if (item
->IsSeparator())
916 menuItem
= gtk_menu_item_new();
917 else if (item
->IsSubMenu())
918 menuItem
= gtk_menu_item_new_with_label(item
->GetText().mbc_str());
920 menuItem
= item
->IsCheckable() ? gtk_check_menu_item_new_with_label(item
->GetText().mbc_str())
921 : gtk_menu_item_new_with_label(item
->GetText().mbc_str());
923 if (!item
->IsSeparator())
925 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
926 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
929 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
930 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
933 if (!item
->IsSubMenu())
935 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
936 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
941 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
942 gtk_widget_show( menuItem
);
943 item
->SetMenuItem(menuItem
);
946 int wxMenu::FindItem( const wxString itemString
) const
949 for ( const wxChar
*pc
= itemString
; *pc
!= _T('\0'); pc
++ )
954 #if (GTK_MINOR_VERSION > 0)
961 wxNode
*node
= m_items
.First();
964 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
965 if (item
->GetText() == s
)
967 return item
->GetId();
975 void wxMenu::Enable( int id
, bool enable
)
977 wxMenuItem
*item
= FindItem(id
);
979 wxCHECK_RET( item
, _T("wxMenu::Enable: no such item") );
981 item
->Enable(enable
);
984 bool wxMenu::IsEnabled( int id
) const
986 wxMenuItem
*item
= FindItem(id
);
988 wxCHECK_MSG( item
, FALSE
, _T("wxMenu::IsEnabled: no such item") );
990 return item
->IsEnabled();
993 void wxMenu::Check( int id
, bool enable
)
995 wxMenuItem
*item
= FindItem(id
);
997 wxCHECK_RET( item
, _T("wxMenu::Check: no such item") );
1002 bool wxMenu::IsChecked( int id
) const
1004 wxMenuItem
*item
= FindItem(id
);
1006 wxCHECK_MSG( item
, FALSE
, _T("wxMenu::IsChecked: no such item") );
1008 return item
->IsChecked();
1011 void wxMenu::SetLabel( int id
, const wxString
&label
)
1013 wxMenuItem
*item
= FindItem(id
);
1015 wxCHECK_RET( item
, _T("wxMenu::SetLabel: no such item") );
1017 item
->SetText(label
);
1020 wxString
wxMenu::GetLabel( int id
) const
1022 wxMenuItem
*item
= FindItem(id
);
1024 wxCHECK_MSG( item
, _T(""), _T("wxMenu::GetLabel: no such item") );
1026 return item
->GetText();
1029 void wxMenu::SetHelpString( int id
, const wxString
& helpString
)
1031 wxMenuItem
*item
= FindItem(id
);
1033 wxCHECK_RET( item
, _T("wxMenu::SetHelpString: no such item") );
1035 item
->SetHelp( helpString
);
1038 wxString
wxMenu::GetHelpString( int id
) const
1040 wxMenuItem
*item
= FindItem(id
);
1042 wxCHECK_MSG( item
, _T(""), _T("wxMenu::GetHelpString: no such item") );
1044 return item
->GetHelp();
1047 int wxMenu::FindMenuIdByMenuItem( GtkWidget
*menuItem
) const
1049 wxNode
*node
= m_items
.First();
1052 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
1053 if (item
->GetMenuItem() == menuItem
)
1054 return item
->GetId();
1055 node
= node
->Next();
1061 wxMenuItem
*wxMenu::FindItem(int id
) const
1063 wxNode
*node
= m_items
.First();
1066 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
1067 if (item
->GetId() == id
)
1071 node
= node
->Next();
1074 /* Not finding anything here can be correct
1075 * when search the entire menu system for
1076 * an entry -> no error message. */
1078 return (wxMenuItem
*) NULL
;
1081 void wxMenu::SetInvokingWindow( wxWindow
*win
)
1083 m_invokingWindow
= win
;
1086 wxWindow
*wxMenu::GetInvokingWindow()
1088 return m_invokingWindow
;
1091 // Update a menu and all submenus recursively. source is the object that has
1092 // the update event handlers defined for it. If NULL, the menu or associated
1093 // window will be used.
1094 void wxMenu::UpdateUI(wxEvtHandler
* source
)
1096 if (!source
&& GetInvokingWindow())
1097 source
= GetInvokingWindow()->GetEventHandler();
1099 source
= GetEventHandler();
1103 wxNode
* node
= GetItems().First();
1106 wxMenuItem
* item
= (wxMenuItem
*) node
->Data();
1107 if ( !item
->IsSeparator() )
1109 wxWindowID id
= item
->GetId();
1110 wxUpdateUIEvent
event(id
);
1111 event
.SetEventObject( source
);
1113 if (source
->ProcessEvent(event
))
1115 if (event
.GetSetText())
1116 SetLabel(id
, event
.GetText());
1117 if (event
.GetSetChecked())
1118 Check(id
, event
.GetChecked());
1119 if (event
.GetSetEnabled())
1120 Enable(id
, event
.GetEnabled());
1123 if (item
->GetSubMenu())
1124 item
->GetSubMenu()->UpdateUI(source
);
1126 node
= node
->Next();