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"
19 //-----------------------------------------------------------------------------
21 //-----------------------------------------------------------------------------
23 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar
,wxWindow
)
25 wxMenuBar::wxMenuBar()
27 m_needParent
= FALSE
; // hmmm
29 PreCreation( (wxWindow
*) NULL
, -1, wxDefaultPosition
, wxDefaultSize
, 0, "menu" );
31 m_menus
.DeleteContents( TRUE
);
33 m_menubar
= gtk_menu_bar_new();
35 m_widget
= GTK_WIDGET(m_menubar
);
42 void wxMenuBar::Append( wxMenu
*menu
, const wxString
&title
)
44 m_menus
.Append( menu
);
45 menu
->m_title
= title
; // ??????
49 pos
= menu
->m_title
.First( '&' );
50 if (pos
!= -1) menu
->m_title
.Remove( pos
, 1 );
54 root_menu
= gtk_menu_item_new_with_label( WXSTRINGCAST(menu
->m_title
) );
55 gtk_widget_show( root_menu
);
56 gtk_menu_item_set_submenu( GTK_MENU_ITEM(root_menu
), menu
->m_menu
);
58 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar
), root_menu
);
61 static int FindMenuItemRecursive( const wxMenu
*menu
, const wxString
&menuString
, const wxString
&itemString
)
63 if (menu
->m_title
== menuString
)
65 int res
= menu
->FindItem( itemString
);
66 if (res
!= -1) return res
;
68 wxNode
*node
= menu
->m_items
.First();
71 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
72 if (item
->IsSubMenu())
73 return FindMenuItemRecursive(item
->GetSubMenu(), menuString
, itemString
);
79 int wxMenuBar::FindMenuItem( const wxString
&menuString
, const wxString
&itemString
) const
81 wxNode
*node
= m_menus
.First();
84 wxMenu
*menu
= (wxMenu
*)node
->Data();
85 int res
= FindMenuItemRecursive( menu
, menuString
, itemString
);
86 if (res
!= -1) return res
;
92 // Find a wxMenuItem using its id. Recurses down into sub-menus
93 static wxMenuItem
* FindMenuItemByIdRecursive(const wxMenu
* menu
, int id
)
95 wxMenuItem
* result
= menu
->FindItem(id
);
97 wxNode
*node
= menu
->m_items
.First();
98 while ( node
&& result
== NULL
) {
99 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
100 if ( item
->IsSubMenu() )
101 result
= FindMenuItemByIdRecursive( item
->GetSubMenu(), id
);
108 wxMenuItem
* wxMenuBar::FindMenuItemById( int id
) const
110 wxMenuItem
* result
= 0;
111 wxNode
*node
= m_menus
.First();
112 while (node
&& result
== 0)
114 wxMenu
*menu
= (wxMenu
*)node
->Data();
115 result
= FindMenuItemByIdRecursive( menu
, id
);
121 void wxMenuBar::Check( int id
, bool check
)
123 wxMenuItem
* item
= FindMenuItemById( id
);
124 if (item
) item
->Check(check
);
127 bool wxMenuBar::Checked( int id
) const
129 wxMenuItem
* item
= FindMenuItemById( id
);
130 if (item
) return item
->IsChecked();
134 void wxMenuBar::Enable( int id
, bool enable
)
136 wxMenuItem
* item
= FindMenuItemById( id
);
137 if (item
) item
->Enable(enable
);
140 bool wxMenuBar::Enabled( int id
) const
142 wxMenuItem
* item
= FindMenuItemById( id
);
143 if (item
) return item
->IsEnabled();
147 //-----------------------------------------------------------------------------
149 //-----------------------------------------------------------------------------
151 static void gtk_menu_clicked_callback( GtkWidget
*widget
, wxMenu
*menu
)
153 int id
= menu
->FindMenuIdByMenuItem(widget
);
155 wxASSERT( id
!= -1 ); // should find it!
157 if (!menu
->IsEnabled(id
)) return;
159 wxCommandEvent
event( wxEVT_COMMAND_MENU_SELECTED
, id
);
160 event
.SetEventObject( menu
);
163 if (menu
->m_callback
)
165 (void) (*(menu
->m_callback
)) (*menu
, event
);
169 if (menu
->GetEventHandler()->ProcessEvent(event
)) return;
171 wxWindow
*win
= menu
->GetInvokingWindow();
172 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
175 //-----------------------------------------------------------------------------
177 //-----------------------------------------------------------------------------
179 static void gtk_menu_hilight_callback( GtkWidget
*widget
, wxMenu
*menu
)
181 int id
= menu
->FindMenuIdByMenuItem(widget
);
183 wxASSERT( id
!= -1 ); // should find it!
185 if (!menu
->IsEnabled(id
)) return;
187 wxCommandEvent
event( wxEVT_MENU_HIGHLIGHT
, id
);
188 event
.SetEventObject( menu
);
191 /* wxMSW doesn't call callback here either
192 if (menu->m_callback)
194 (void) (*(menu->m_callback)) (*menu, event);
199 if (menu
->GetEventHandler()->ProcessEvent(event
)) return;
201 wxWindow
*win
= menu
->GetInvokingWindow();
202 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
205 //-----------------------------------------------------------------------------
207 //-----------------------------------------------------------------------------
209 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
,wxObject
)
211 wxMenuItem::wxMenuItem()
214 m_isCheckMenu
= FALSE
;
217 m_subMenu
= (wxMenu
*) NULL
;
218 m_menuItem
= (GtkWidget
*) NULL
;
221 void wxMenuItem::SetText(const wxString
& str
)
224 for ( const char *pc
= str
; *pc
!= '\0'; pc
++ ) {
232 void wxMenuItem::Check( bool check
)
234 wxCHECK_RET( IsCheckable(), "Can't check uncheckable item!" )
237 gtk_check_menu_item_set_state( (GtkCheckMenuItem
*)m_menuItem
, (gint
)check
);
240 void wxMenuItem::Enable( bool enable
)
242 gtk_widget_set_sensitive( m_menuItem
, enable
);
243 m_isEnabled
= enable
;
246 bool wxMenuItem::IsChecked() const
248 wxCHECK( IsCheckable(), FALSE
); // can't get state of uncheckable item!
250 bool bIsChecked
= ((GtkCheckMenuItem
*)m_menuItem
)->active
!= 0;
252 wxASSERT( bIsChecked
== m_isChecked
); // consistency check
257 IMPLEMENT_DYNAMIC_CLASS(wxMenu
,wxEvtHandler
)
259 wxMenu::wxMenu( const wxString
& title
, const wxFunction func
)
262 m_items
.DeleteContents( TRUE
);
263 m_invokingWindow
= (wxWindow
*) NULL
;
264 m_menu
= gtk_menu_new(); // Do not show!
267 m_eventHandler
= this;
268 m_clientData
= (void*) NULL
;
270 if (m_title
.IsNull()) m_title
= "";
278 void wxMenu::SetTitle( const wxString
& title
)
280 // Waiting for something better.
284 const wxString
wxMenu::GetTitle() const
289 void wxMenu::AppendSeparator()
291 wxMenuItem
*mitem
= new wxMenuItem();
292 mitem
->SetId(ID_SEPARATOR
);
294 GtkWidget
*menuItem
= gtk_menu_item_new();
295 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
296 gtk_widget_show( menuItem
);
297 mitem
->SetMenuItem(menuItem
);
298 m_items
.Append( mitem
);
301 void wxMenu::Append( int id
, const wxString
&item
, const wxString
&helpStr
, bool checkable
)
303 wxMenuItem
*mitem
= new wxMenuItem();
305 mitem
->SetText(item
);
306 mitem
->SetHelp(helpStr
);
307 mitem
->SetCheckable(checkable
);
308 const char *text
= mitem
->GetText();
309 GtkWidget
*menuItem
= checkable
? gtk_check_menu_item_new_with_label(text
)
310 : gtk_menu_item_new_with_label(text
);
312 mitem
->SetMenuItem(menuItem
);
314 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
315 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
318 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
319 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
322 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
323 gtk_widget_show( menuItem
);
324 m_items
.Append( mitem
);
327 void wxMenu::Append( int id
, const wxString
&text
, wxMenu
*subMenu
, const wxString
&helpStr
)
329 wxMenuItem
*mitem
= new wxMenuItem();
331 mitem
->SetText(text
);
333 GtkWidget
*menuItem
= gtk_menu_item_new_with_label(mitem
->GetText());
334 mitem
->SetHelp(helpStr
);
335 mitem
->SetMenuItem(menuItem
);
336 mitem
->SetSubMenu(subMenu
);
338 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem
), subMenu
->m_menu
);
339 gtk_menu_append( GTK_MENU(m_menu
), menuItem
);
340 gtk_widget_show( menuItem
);
341 m_items
.Append( mitem
);
344 int wxMenu::FindItem( const wxString itemString
) const
346 wxString
s( itemString
);
350 pos
= s
.First( '&' );
351 if (pos
!= -1) s
.Remove( pos
, 1 );
354 wxNode
*node
= m_items
.First();
357 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
358 if (item
->GetText() == s
)
359 return item
->GetId();
366 void wxMenu::Enable( int id
, bool enable
)
368 wxMenuItem
*item
= FindItem(id
);
370 item
->Enable(enable
);
373 bool wxMenu::IsEnabled( int id
) const
375 wxMenuItem
*item
= FindItem(id
);
377 return item
->IsEnabled();
382 void wxMenu::Check( int id
, bool enable
)
384 wxMenuItem
*item
= FindItem(id
);
389 bool wxMenu::IsChecked( int id
) const
391 wxMenuItem
*item
= FindItem(id
);
393 return item
->IsChecked();
398 void wxMenu::SetLabel( int id
, const wxString
&label
)
400 wxMenuItem
*item
= FindItem(id
);
402 item
->SetText(label
);
405 wxString
wxMenu::GetLabel( int id
) const
407 wxMenuItem
*item
= FindItem(id
);
408 if (item
) return item
->GetText();
412 void wxMenu::SetHelpString( int id
, const wxString
& helpString
)
414 wxMenuItem
*item
= FindItem(id
);
415 if (item
) item
->SetHelp( helpString
);
418 wxString
wxMenu::GetHelpString( int id
) const
420 wxMenuItem
*item
= FindItem(id
);
421 if (item
) return item
->GetHelp();
425 int wxMenu::FindMenuIdByMenuItem( GtkWidget
*menuItem
) const
427 wxNode
*node
= m_items
.First();
430 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
431 if (item
->GetMenuItem() == menuItem
)
432 return item
->GetId();
439 wxMenuItem
*wxMenu::FindItem(int id
) const
441 wxNode
*node
= m_items
.First();
443 wxMenuItem
*item
= (wxMenuItem
*)node
->Data();
444 if ( item
->GetId() == id
)
449 // Not finding anything here can be correct
450 // when search the entire menu system for
451 // an entry -> no error message.
453 return (wxMenuItem
*) NULL
;
456 void wxMenu::SetInvokingWindow( wxWindow
*win
)
458 m_invokingWindow
= win
;
461 wxWindow
*wxMenu::GetInvokingWindow()
463 return m_invokingWindow
;