]>
Commit | Line | Data |
---|---|---|
c801d85f KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: menu.cpp | |
3 | // Purpose: | |
4 | // Author: Robert Roebling | |
96fd301f | 5 | // Id: $Id$ |
a81258be | 6 | // Copyright: (c) 1998 Robert Roebling |
96fd301f | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
c801d85f KB |
10 | #ifdef __GNUG__ |
11 | #pragma implementation "menu.h" | |
6ca41e57 | 12 | #pragma implementation "menuitem.h" |
c801d85f KB |
13 | #endif |
14 | ||
96fd301f | 15 | #include "wx/log.h" |
30dea054 | 16 | #include "wx/intl.h" |
06cfab17 | 17 | #include "wx/app.h" |
3dfac970 | 18 | #include "wx/menu.h" |
c801d85f | 19 | |
974e8d94 VZ |
20 | #if wxUSE_ACCEL |
21 | #include "wx/accel.h" | |
22 | #endif // wxUSE_ACCEL | |
23 | ||
83624f79 RR |
24 | #include "gdk/gdk.h" |
25 | #include "gtk/gtk.h" | |
26 | ||
acfd422a RR |
27 | //----------------------------------------------------------------------------- |
28 | // idle system | |
29 | //----------------------------------------------------------------------------- | |
30 | ||
31 | extern void wxapp_install_idle_handler(); | |
32 | extern bool g_isIdle; | |
33 | ||
717a57c2 VZ |
34 | #if (GTK_MINOR_VERSION > 0) && wxUSE_ACCEL |
35 | static wxString GetHotKey( const wxMenuItem& item ); | |
36 | #endif | |
37 | ||
c801d85f KB |
38 | //----------------------------------------------------------------------------- |
39 | // wxMenuBar | |
40 | //----------------------------------------------------------------------------- | |
41 | ||
42 | IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow) | |
43 | ||
3502e687 RR |
44 | wxMenuBar::wxMenuBar( long style ) |
45 | { | |
1e133b7d | 46 | /* the parent window is known after wxFrame::SetMenu() */ |
23280650 | 47 | m_needParent = FALSE; |
ae53c98c | 48 | m_style = style; |
9c884972 | 49 | m_invokingWindow = (wxWindow*) NULL; |
23280650 | 50 | |
4dcaf11a | 51 | if (!PreCreation( (wxWindow*) NULL, wxDefaultPosition, wxDefaultSize ) || |
223d09f6 | 52 | !CreateBase( (wxWindow*) NULL, -1, wxDefaultPosition, wxDefaultSize, style, wxDefaultValidator, wxT("menubar") )) |
4dcaf11a | 53 | { |
223d09f6 | 54 | wxFAIL_MSG( wxT("wxMenuBar creation failed") ); |
455fadaa | 55 | return; |
4dcaf11a | 56 | } |
3502e687 RR |
57 | |
58 | m_menus.DeleteContents( TRUE ); | |
59 | ||
1e133b7d RR |
60 | /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */ |
61 | #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0) | |
62 | m_accel = gtk_accel_group_new(); | |
63 | m_factory = gtk_item_factory_new( GTK_TYPE_MENU_BAR, "<main>", m_accel ); | |
64 | m_menubar = gtk_item_factory_get_widget( m_factory, "<main>" ); | |
23280650 | 65 | #else |
3502e687 | 66 | m_menubar = gtk_menu_bar_new(); |
1e133b7d | 67 | #endif |
3502e687 RR |
68 | |
69 | if (style & wxMB_DOCKABLE) | |
70 | { | |
71 | m_widget = gtk_handle_box_new(); | |
c626a8b7 VZ |
72 | gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_menubar) ); |
73 | gtk_widget_show( GTK_WIDGET(m_menubar) ); | |
3502e687 RR |
74 | } |
75 | else | |
76 | { | |
77 | m_widget = GTK_WIDGET(m_menubar); | |
78 | } | |
79 | ||
80 | PostCreation(); | |
3502e687 RR |
81 | } |
82 | ||
96fd301f | 83 | wxMenuBar::wxMenuBar() |
c801d85f | 84 | { |
1e133b7d RR |
85 | /* the parent window is known after wxFrame::SetMenu() */ |
86 | m_needParent = FALSE; | |
ae53c98c | 87 | m_style = 0; |
9c884972 | 88 | m_invokingWindow = (wxWindow*) NULL; |
23280650 | 89 | |
4dcaf11a | 90 | if (!PreCreation( (wxWindow*) NULL, wxDefaultPosition, wxDefaultSize ) || |
223d09f6 | 91 | !CreateBase( (wxWindow*) NULL, -1, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, wxT("menubar") )) |
4dcaf11a | 92 | { |
223d09f6 | 93 | wxFAIL_MSG( wxT("wxMenuBar creation failed") ); |
455fadaa | 94 | return; |
4dcaf11a | 95 | } |
974e8d94 | 96 | |
83624f79 | 97 | m_menus.DeleteContents( TRUE ); |
96fd301f | 98 | |
1e133b7d RR |
99 | /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */ |
100 | #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0) | |
101 | m_accel = gtk_accel_group_new(); | |
102 | m_factory = gtk_item_factory_new( GTK_TYPE_MENU_BAR, "<main>", m_accel ); | |
103 | m_menubar = gtk_item_factory_get_widget( m_factory, "<main>" ); | |
23280650 | 104 | #else |
83624f79 | 105 | m_menubar = gtk_menu_bar_new(); |
1e133b7d | 106 | #endif |
8bbe427f | 107 | |
828f655f | 108 | m_widget = GTK_WIDGET(m_menubar); |
96fd301f | 109 | |
83624f79 | 110 | PostCreation(); |
6de97a3b | 111 | } |
c801d85f | 112 | |
1e133b7d RR |
113 | wxMenuBar::~wxMenuBar() |
114 | { | |
d1b15f03 | 115 | // gtk_object_unref( GTK_OBJECT(m_factory) ); why not ? |
1e133b7d RR |
116 | } |
117 | ||
5bd9e519 RR |
118 | static void wxMenubarUnsetInvokingWindow( wxMenu *menu, wxWindow *win ) |
119 | { | |
120 | menu->SetInvokingWindow( (wxWindow*) NULL ); | |
121 | ||
122 | #if (GTK_MINOR_VERSION > 0) | |
123 | wxWindow *top_frame = win; | |
8487f887 | 124 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 125 | top_frame = top_frame->GetParent(); |
5bd9e519 RR |
126 | |
127 | /* support for native hot keys */ | |
128 | gtk_accel_group_detach( menu->m_accel, GTK_OBJECT(top_frame->m_widget) ); | |
129 | #endif | |
130 | ||
1987af7e | 131 | wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst(); |
5bd9e519 RR |
132 | while (node) |
133 | { | |
1987af7e | 134 | wxMenuItem *menuitem = node->GetData(); |
5bd9e519 RR |
135 | if (menuitem->IsSubMenu()) |
136 | wxMenubarUnsetInvokingWindow( menuitem->GetSubMenu(), win ); | |
1987af7e | 137 | node = node->GetNext(); |
5bd9e519 RR |
138 | } |
139 | } | |
140 | ||
141 | static void wxMenubarSetInvokingWindow( wxMenu *menu, wxWindow *win ) | |
142 | { | |
143 | menu->SetInvokingWindow( win ); | |
144 | ||
145 | #if (GTK_MINOR_VERSION > 0) | |
146 | wxWindow *top_frame = win; | |
8487f887 | 147 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 148 | top_frame = top_frame->GetParent(); |
5bd9e519 RR |
149 | |
150 | /* support for native hot keys */ | |
151 | gtk_accel_group_attach( menu->m_accel, GTK_OBJECT(top_frame->m_widget) ); | |
152 | #endif | |
153 | ||
1987af7e | 154 | wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst(); |
5bd9e519 RR |
155 | while (node) |
156 | { | |
1987af7e | 157 | wxMenuItem *menuitem = node->GetData(); |
5bd9e519 RR |
158 | if (menuitem->IsSubMenu()) |
159 | wxMenubarSetInvokingWindow( menuitem->GetSubMenu(), win ); | |
1987af7e | 160 | node = node->GetNext(); |
5bd9e519 RR |
161 | } |
162 | } | |
163 | ||
164 | void wxMenuBar::SetInvokingWindow( wxWindow *win ) | |
165 | { | |
9c884972 | 166 | m_invokingWindow = win; |
5bd9e519 RR |
167 | #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0) |
168 | wxWindow *top_frame = win; | |
8487f887 | 169 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 170 | top_frame = top_frame->GetParent(); |
5bd9e519 RR |
171 | |
172 | /* support for native key accelerators indicated by underscroes */ | |
173 | gtk_accel_group_attach( m_accel, GTK_OBJECT(top_frame->m_widget) ); | |
174 | #endif | |
175 | ||
1987af7e | 176 | wxMenuList::Node *node = m_menus.GetFirst(); |
5bd9e519 RR |
177 | while (node) |
178 | { | |
1987af7e | 179 | wxMenu *menu = node->GetData(); |
5bd9e519 | 180 | wxMenubarSetInvokingWindow( menu, win ); |
1987af7e | 181 | node = node->GetNext(); |
5bd9e519 RR |
182 | } |
183 | } | |
184 | ||
185 | void wxMenuBar::UnsetInvokingWindow( wxWindow *win ) | |
186 | { | |
9c884972 | 187 | m_invokingWindow = (wxWindow*) NULL; |
5bd9e519 RR |
188 | #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0) |
189 | wxWindow *top_frame = win; | |
8487f887 | 190 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 191 | top_frame = top_frame->GetParent(); |
5bd9e519 RR |
192 | |
193 | /* support for native key accelerators indicated by underscroes */ | |
194 | gtk_accel_group_detach( m_accel, GTK_OBJECT(top_frame->m_widget) ); | |
195 | #endif | |
196 | ||
1987af7e | 197 | wxMenuList::Node *node = m_menus.GetFirst(); |
5bd9e519 RR |
198 | while (node) |
199 | { | |
1987af7e | 200 | wxMenu *menu = node->GetData(); |
5bd9e519 | 201 | wxMenubarUnsetInvokingWindow( menu, win ); |
1987af7e | 202 | node = node->GetNext(); |
5bd9e519 RR |
203 | } |
204 | } | |
205 | ||
3dfac970 | 206 | bool wxMenuBar::Append( wxMenu *menu, const wxString &title ) |
c801d85f | 207 | { |
83624f79 | 208 | m_menus.Append( menu ); |
23280650 | 209 | |
a533f5c1 | 210 | const wxChar *pc; |
23280650 | 211 | |
1e133b7d RR |
212 | /* GTK 1.2 wants to have "_" instead of "&" for accelerators */ |
213 | wxString str; | |
223d09f6 | 214 | for ( pc = title; *pc != wxT('\0'); pc++ ) |
83624f79 | 215 | { |
223d09f6 | 216 | if (*pc == wxT('&')) |
23280650 | 217 | { |
1e133b7d | 218 | #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0) |
223d09f6 | 219 | str << wxT('_'); |
455fadaa | 220 | } |
223d09f6 | 221 | else if (*pc == wxT('/')) |
23280650 | 222 | { |
223d09f6 | 223 | str << wxT('\\'); |
034be888 | 224 | #endif |
23280650 | 225 | } |
d38ceae8 | 226 | else |
455fadaa | 227 | { |
90a53a3a | 228 | #if __WXGTK12__ |
223d09f6 | 229 | if ( *pc == wxT('_') ) |
455fadaa VZ |
230 | { |
231 | // underscores must be doubled to prevent them from being | |
232 | // interpreted as accelerator character prefix by GTK | |
233 | str << *pc; | |
234 | } | |
90a53a3a | 235 | #endif // GTK+ 1.2 |
455fadaa VZ |
236 | |
237 | str << *pc; | |
238 | } | |
1e133b7d RR |
239 | } |
240 | ||
241 | /* this doesn't have much effect right now */ | |
242 | menu->SetTitle( str ); | |
23280650 | 243 | |
1e133b7d RR |
244 | /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */ |
245 | #if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0) | |
246 | ||
247 | /* local buffer in multibyte form */ | |
2b2edbed | 248 | wxString buf; |
223d09f6 | 249 | buf << wxT('/') << str.c_str(); |
c980c992 | 250 | |
dc6c62a9 | 251 | char *cbuf = new char[buf.Length()+1]; |
c980c992 GL |
252 | strcpy(cbuf, buf.mbc_str()); |
253 | ||
1e133b7d | 254 | GtkItemFactoryEntry entry; |
c980c992 | 255 | entry.path = (gchar *)cbuf; // const_cast |
1e133b7d RR |
256 | entry.accelerator = (gchar*) NULL; |
257 | entry.callback = (GtkItemFactoryCallback) NULL; | |
258 | entry.callback_action = 0; | |
2b2edbed KB |
259 | entry.item_type = "<Branch>"; |
260 | ||
1e133b7d | 261 | gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */ |
1e133b7d | 262 | /* in order to get the pointer to the item we need the item text _without_ underscores */ |
223d09f6 KB |
263 | wxString tmp = wxT("<main>/"); |
264 | for ( pc = str; *pc != wxT('\0'); pc++ ) | |
1e133b7d | 265 | { |
455fadaa VZ |
266 | // contrary to the common sense, we must throw out _all_ underscores, |
267 | // (i.e. "Hello__World" => "HelloWorld" and not "Hello_World" as we | |
974e8d94 | 268 | // might naively think). IMHO it's a bug in GTK+ (VZ) |
223d09f6 | 269 | while (*pc == wxT('_')) |
455fadaa | 270 | pc++; |
2b2edbed | 271 | tmp << *pc; |
034be888 | 272 | } |
1e133b7d | 273 | menu->m_owner = gtk_item_factory_get_item( m_factory, tmp.mb_str() ); |
1e133b7d | 274 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu ); |
2b2edbed | 275 | delete [] cbuf; |
1e133b7d | 276 | #else |
96fd301f | 277 | |
1e133b7d | 278 | menu->m_owner = gtk_menu_item_new_with_label( str.mb_str() ); |
2b1c162e RR |
279 | gtk_widget_show( menu->m_owner ); |
280 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu ); | |
96fd301f | 281 | |
2b1c162e | 282 | gtk_menu_bar_append( GTK_MENU_BAR(m_menubar), menu->m_owner ); |
23280650 | 283 | |
1e133b7d | 284 | #endif |
9c884972 RR |
285 | |
286 | // m_invokingWindow is set after wxFrame::SetMenuBar(). This call enables | |
287 | // adding menu later on. | |
288 | if (m_invokingWindow) | |
289 | wxMenubarSetInvokingWindow( menu, m_invokingWindow ); | |
3dfac970 VZ |
290 | |
291 | return TRUE; | |
292 | } | |
293 | ||
294 | bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title) | |
295 | { | |
296 | if ( !wxMenuBarBase::Insert(pos, menu, title) ) | |
297 | return FALSE; | |
298 | ||
299 | wxFAIL_MSG(wxT("TODO")); | |
300 | ||
301 | return FALSE; | |
302 | } | |
303 | ||
304 | wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title) | |
305 | { | |
306 | if ( !wxMenuBarBase::Replace(pos, menu, title) ) | |
307 | return FALSE; | |
308 | ||
309 | wxFAIL_MSG(wxT("TODO")); | |
310 | ||
311 | return NULL; | |
312 | } | |
313 | ||
314 | wxMenu *wxMenuBar::Remove(size_t pos) | |
315 | { | |
316 | if ( !wxMenuBarBase::Remove(pos) ) | |
317 | return FALSE; | |
318 | ||
319 | wxFAIL_MSG(wxT("TODO")); | |
320 | ||
321 | return NULL; | |
6de97a3b | 322 | } |
96fd301f | 323 | |
716b7364 | 324 | static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString ) |
c801d85f | 325 | { |
c626a8b7 | 326 | if (menu->GetTitle() == menuString) |
83624f79 RR |
327 | { |
328 | int res = menu->FindItem( itemString ); | |
c626a8b7 VZ |
329 | if (res != wxNOT_FOUND) |
330 | return res; | |
83624f79 | 331 | } |
c626a8b7 | 332 | |
1987af7e | 333 | wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst(); |
83624f79 RR |
334 | while (node) |
335 | { | |
1987af7e | 336 | wxMenuItem *item = node->GetData(); |
83624f79 RR |
337 | if (item->IsSubMenu()) |
338 | return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString); | |
2b1c162e | 339 | |
1987af7e | 340 | node = node->GetNext(); |
83624f79 RR |
341 | } |
342 | ||
c626a8b7 VZ |
343 | return wxNOT_FOUND; |
344 | } | |
345 | ||
c801d85f KB |
346 | int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const |
347 | { | |
1987af7e | 348 | wxMenuList::Node *node = m_menus.GetFirst(); |
83624f79 RR |
349 | while (node) |
350 | { | |
1987af7e | 351 | wxMenu *menu = node->GetData(); |
83624f79 | 352 | int res = FindMenuItemRecursive( menu, menuString, itemString); |
1987af7e VZ |
353 | if (res != -1) |
354 | return res; | |
355 | node = node->GetNext(); | |
83624f79 | 356 | } |
1987af7e VZ |
357 | |
358 | return wxNOT_FOUND; | |
6de97a3b | 359 | } |
c801d85f | 360 | |
c626a8b7 | 361 | // Find a wxMenuItem using its id. Recurses down into sub-menus |
96fd301f | 362 | static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id) |
716b7364 | 363 | { |
717a57c2 | 364 | wxMenuItem* result = menu->FindChildItem(id); |
716b7364 | 365 | |
1987af7e | 366 | wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst(); |
c626a8b7 | 367 | while ( node && result == NULL ) |
83624f79 | 368 | { |
1987af7e | 369 | wxMenuItem *item = node->GetData(); |
83624f79 | 370 | if (item->IsSubMenu()) |
c626a8b7 | 371 | { |
83624f79 | 372 | result = FindMenuItemByIdRecursive( item->GetSubMenu(), id ); |
c626a8b7 | 373 | } |
1987af7e | 374 | node = node->GetNext(); |
83624f79 | 375 | } |
96fd301f | 376 | |
83624f79 | 377 | return result; |
6de97a3b | 378 | } |
716b7364 | 379 | |
3dfac970 | 380 | wxMenuItem* wxMenuBar::FindItem( int id, wxMenu **menuForItem ) const |
716b7364 | 381 | { |
83624f79 | 382 | wxMenuItem* result = 0; |
1987af7e | 383 | wxMenuList::Node *node = m_menus.GetFirst(); |
83624f79 RR |
384 | while (node && result == 0) |
385 | { | |
1987af7e | 386 | wxMenu *menu = node->GetData(); |
83624f79 | 387 | result = FindMenuItemByIdRecursive( menu, id ); |
1987af7e | 388 | node = node->GetNext(); |
83624f79 | 389 | } |
c626a8b7 | 390 | |
3dfac970 VZ |
391 | if ( menuForItem ) |
392 | { | |
393 | *menuForItem = result ? result->GetMenu() : (wxMenu *)NULL; | |
394 | } | |
c626a8b7 | 395 | |
3dfac970 | 396 | return result; |
bbe0af5b RR |
397 | } |
398 | ||
3dfac970 | 399 | void wxMenuBar::EnableTop( size_t pos, bool flag ) |
bbe0af5b | 400 | { |
3dfac970 | 401 | wxMenuList::Node *node = m_menus.Item( pos ); |
c626a8b7 | 402 | |
223d09f6 | 403 | wxCHECK_RET( node, wxT("menu not found") ); |
c626a8b7 | 404 | |
3dfac970 | 405 | wxMenu* menu = node->GetData(); |
c626a8b7 VZ |
406 | |
407 | if (menu->m_owner) | |
408 | gtk_widget_set_sensitive( menu->m_owner, flag ); | |
bbe0af5b RR |
409 | } |
410 | ||
3dfac970 | 411 | wxString wxMenuBar::GetLabelTop( size_t pos ) const |
bbe0af5b | 412 | { |
3dfac970 | 413 | wxMenuList::Node *node = m_menus.Item( pos ); |
c626a8b7 | 414 | |
223d09f6 | 415 | wxCHECK_MSG( node, wxT("invalid"), wxT("menu not found") ); |
c626a8b7 | 416 | |
3dfac970 | 417 | wxMenu* menu = node->GetData(); |
c626a8b7 | 418 | |
2b1c162e | 419 | return menu->GetTitle(); |
bbe0af5b RR |
420 | } |
421 | ||
3dfac970 | 422 | void wxMenuBar::SetLabelTop( size_t pos, const wxString& label ) |
bbe0af5b | 423 | { |
3dfac970 | 424 | wxMenuList::Node *node = m_menus.Item( pos ); |
c626a8b7 | 425 | |
223d09f6 | 426 | wxCHECK_RET( node, wxT("menu not found") ); |
c626a8b7 | 427 | |
3dfac970 | 428 | wxMenu* menu = node->GetData(); |
c626a8b7 | 429 | |
2b1c162e | 430 | menu->SetTitle( label ); |
bbe0af5b RR |
431 | } |
432 | ||
c801d85f | 433 | //----------------------------------------------------------------------------- |
cf7a7e13 | 434 | // "activate" |
c801d85f KB |
435 | //----------------------------------------------------------------------------- |
436 | ||
6de97a3b | 437 | static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu ) |
c801d85f | 438 | { |
acfd422a RR |
439 | if (g_isIdle) wxapp_install_idle_handler(); |
440 | ||
83624f79 | 441 | int id = menu->FindMenuIdByMenuItem(widget); |
96fd301f | 442 | |
83624f79 | 443 | /* should find it for normal (not popup) menu */ |
c626a8b7 | 444 | wxASSERT( (id != -1) || (menu->GetInvokingWindow() != NULL) ); |
96fd301f | 445 | |
c626a8b7 VZ |
446 | if (!menu->IsEnabled(id)) |
447 | return; | |
96fd301f | 448 | |
717a57c2 | 449 | wxMenuItem* item = menu->FindChildItem( id ); |
223d09f6 | 450 | wxCHECK_RET( item, wxT("error in menu item callback") ); |
c626a8b7 VZ |
451 | |
452 | if (item->IsCheckable()) | |
2d17d68f | 453 | { |
974e8d94 VZ |
454 | bool isReallyChecked = item->IsChecked(); |
455 | if ( item->wxMenuItemBase::IsChecked() == isReallyChecked ) | |
2d17d68f | 456 | { |
c626a8b7 | 457 | /* the menu item has been checked by calling wxMenuItem->Check() */ |
2d17d68f | 458 | return; |
c626a8b7 VZ |
459 | } |
460 | else | |
461 | { | |
974e8d94 VZ |
462 | /* the user pressed on the menu item -> report and make consistent |
463 | * again */ | |
464 | item->wxMenuItemBase::Check(isReallyChecked); | |
c626a8b7 | 465 | } |
2d17d68f RR |
466 | } |
467 | ||
83624f79 RR |
468 | wxCommandEvent event( wxEVT_COMMAND_MENU_SELECTED, id ); |
469 | event.SetEventObject( menu ); | |
470 | event.SetInt(id ); | |
8bbe427f | 471 | |
c626a8b7 | 472 | if (menu->GetCallback()) |
83624f79 | 473 | { |
c626a8b7 | 474 | (void) (*(menu->GetCallback())) (*menu, event); |
83624f79 RR |
475 | return; |
476 | } | |
cf7a7e13 | 477 | |
c626a8b7 VZ |
478 | if (menu->GetEventHandler()->ProcessEvent(event)) |
479 | return; | |
cf7a7e13 | 480 | |
83624f79 | 481 | wxWindow *win = menu->GetInvokingWindow(); |
c626a8b7 VZ |
482 | if (win) |
483 | win->GetEventHandler()->ProcessEvent( event ); | |
cf7a7e13 RR |
484 | } |
485 | ||
486 | //----------------------------------------------------------------------------- | |
487 | // "select" | |
488 | //----------------------------------------------------------------------------- | |
489 | ||
490 | static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu ) | |
491 | { | |
acfd422a RR |
492 | if (g_isIdle) wxapp_install_idle_handler(); |
493 | ||
83624f79 RR |
494 | int id = menu->FindMenuIdByMenuItem(widget); |
495 | ||
496 | wxASSERT( id != -1 ); // should find it! | |
cf7a7e13 | 497 | |
c626a8b7 VZ |
498 | if (!menu->IsEnabled(id)) |
499 | return; | |
cf7a7e13 | 500 | |
342b6a2f | 501 | wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, id ); |
83624f79 | 502 | event.SetEventObject( menu ); |
cf7a7e13 | 503 | |
c626a8b7 VZ |
504 | if (menu->GetEventHandler()->ProcessEvent(event)) |
505 | return; | |
6de97a3b | 506 | |
83624f79 RR |
507 | wxWindow *win = menu->GetInvokingWindow(); |
508 | if (win) win->GetEventHandler()->ProcessEvent( event ); | |
6de97a3b | 509 | } |
c801d85f | 510 | |
cd743a6f RR |
511 | //----------------------------------------------------------------------------- |
512 | // "deselect" | |
513 | //----------------------------------------------------------------------------- | |
514 | ||
515 | static void gtk_menu_nolight_callback( GtkWidget *widget, wxMenu *menu ) | |
516 | { | |
acfd422a RR |
517 | if (g_isIdle) wxapp_install_idle_handler(); |
518 | ||
cd743a6f RR |
519 | int id = menu->FindMenuIdByMenuItem(widget); |
520 | ||
521 | wxASSERT( id != -1 ); // should find it! | |
522 | ||
c626a8b7 VZ |
523 | if (!menu->IsEnabled(id)) |
524 | return; | |
cd743a6f RR |
525 | |
526 | wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, -1 ); | |
527 | event.SetEventObject( menu ); | |
528 | ||
c626a8b7 VZ |
529 | if (menu->GetEventHandler()->ProcessEvent(event)) |
530 | return; | |
cd743a6f RR |
531 | |
532 | wxWindow *win = menu->GetInvokingWindow(); | |
c626a8b7 VZ |
533 | if (win) |
534 | win->GetEventHandler()->ProcessEvent( event ); | |
cd743a6f RR |
535 | } |
536 | ||
cf7a7e13 | 537 | //----------------------------------------------------------------------------- |
db1b4961 | 538 | // wxMenuItem |
cf7a7e13 RR |
539 | //----------------------------------------------------------------------------- |
540 | ||
974e8d94 VZ |
541 | IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxMenuItemBase) |
542 | ||
543 | wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu, | |
544 | int id, | |
545 | const wxString& name, | |
546 | const wxString& help, | |
547 | bool isCheckable, | |
548 | wxMenu *subMenu) | |
549 | { | |
550 | return new wxMenuItem(parentMenu, id, name, help, isCheckable, subMenu); | |
551 | } | |
96fd301f | 552 | |
974e8d94 VZ |
553 | wxMenuItem::wxMenuItem(wxMenu *parentMenu, |
554 | int id, | |
555 | const wxString& text, | |
556 | const wxString& help, | |
557 | bool isCheckable, | |
558 | wxMenu *subMenu) | |
c801d85f | 559 | { |
974e8d94 VZ |
560 | m_id = id; |
561 | m_isCheckable = isCheckable; | |
83624f79 RR |
562 | m_isChecked = FALSE; |
563 | m_isEnabled = TRUE; | |
974e8d94 VZ |
564 | m_subMenu = subMenu; |
565 | m_parentMenu = parentMenu; | |
566 | m_help = help; | |
567 | ||
83624f79 | 568 | m_menuItem = (GtkWidget *) NULL; |
974e8d94 | 569 | |
974e8d94 | 570 | DoSetText(text); |
6de97a3b | 571 | } |
c801d85f | 572 | |
d1b15f03 RR |
573 | wxMenuItem::~wxMenuItem() |
574 | { | |
575 | // don't delete menu items, the menus take care of that | |
576 | } | |
577 | ||
717a57c2 VZ |
578 | // return the menu item text without any menu accels |
579 | wxString wxMenuItem::GetLabel() const | |
580 | { | |
581 | wxString label; | |
582 | #if (GTK_MINOR_VERSION > 0) | |
583 | for ( const wxChar *pc = m_text.c_str(); *pc; pc++ ) | |
584 | { | |
585 | if ( *pc == wxT('_') ) | |
586 | { | |
587 | // this is the escape character for GTK+ - skip it | |
588 | continue; | |
589 | } | |
590 | ||
591 | label += *pc; | |
592 | } | |
593 | #else // GTK+ 1.0 | |
594 | label = m_text; | |
595 | #endif // GTK+ 1.2/1.0 | |
596 | ||
597 | return label; | |
598 | } | |
599 | ||
600 | void wxMenuItem::SetText( const wxString& str ) | |
601 | { | |
602 | DoSetText(str); | |
354aa1e3 RR |
603 | |
604 | if (m_menuItem) | |
605 | { | |
606 | GtkLabel *label = GTK_LABEL( GTK_BIN(m_menuItem)->child ); | |
717a57c2 VZ |
607 | |
608 | /* set new text */ | |
354aa1e3 | 609 | gtk_label_set( label, m_text.mb_str()); |
717a57c2 VZ |
610 | |
611 | /* reparse key accel */ | |
1987af7e | 612 | (void)gtk_label_parse_uline (GTK_LABEL(label), m_text.mb_str() ); |
354aa1e3 RR |
613 | gtk_accel_label_refetch( GTK_ACCEL_LABEL(label) ); |
614 | } | |
615 | } | |
616 | ||
c626a8b7 | 617 | // it's valid for this function to be called even if m_menuItem == NULL |
974e8d94 | 618 | void wxMenuItem::DoSetText( const wxString& str ) |
716b7364 | 619 | { |
ab46dc18 | 620 | /* '\t' is the deliminator indicating a hot key */ |
974e8d94 | 621 | m_text.Empty(); |
ab46dc18 | 622 | const wxChar *pc = str; |
223d09f6 | 623 | for (; (*pc != wxT('\0')) && (*pc != wxT('\t')); pc++ ) |
83624f79 | 624 | { |
223d09f6 | 625 | if (*pc == wxT('&')) |
23280650 | 626 | { |
034be888 | 627 | #if (GTK_MINOR_VERSION > 0) |
223d09f6 | 628 | m_text << wxT('_'); |
572d7461 | 629 | } |
223d09f6 | 630 | else if ( *pc == wxT('_') ) // escape underscores |
572d7461 | 631 | { |
223d09f6 | 632 | m_text << wxT("__"); |
572d7461 | 633 | } |
223d09f6 | 634 | else if (*pc == wxT('/')) /* we have to filter out slashes ... */ |
23280650 | 635 | { |
223d09f6 | 636 | m_text << wxT('\\'); /* ... and replace them with back slashes */ |
034be888 RR |
637 | #endif |
638 | } | |
d38ceae8 | 639 | else |
354aa1e3 | 640 | m_text << *pc; |
83624f79 | 641 | } |
23280650 | 642 | |
837904f2 | 643 | /* only GTK 1.2 knows about hot keys */ |
223d09f6 | 644 | m_hotKey = wxT(""); |
ab46dc18 | 645 | #if (GTK_MINOR_VERSION > 0) |
223d09f6 | 646 | if(*pc == wxT('\t')) |
d7dbc98a KB |
647 | { |
648 | pc++; | |
649 | m_hotKey = pc; | |
650 | } | |
ab46dc18 | 651 | #endif |
716b7364 RR |
652 | } |
653 | ||
717a57c2 VZ |
654 | #if wxUSE_ACCEL |
655 | ||
656 | wxAcceleratorEntry *wxMenuItem::GetAccel() const | |
657 | { | |
1987af7e | 658 | if ( !GetHotKey() ) |
717a57c2 VZ |
659 | { |
660 | // nothing | |
661 | return (wxAcceleratorEntry *)NULL; | |
662 | } | |
663 | ||
664 | // as wxGetAccelFromString() looks for TAB, insert a dummy one here | |
665 | wxString label; | |
1987af7e | 666 | label << wxT('\t') << GetHotKey(); |
717a57c2 VZ |
667 | |
668 | return wxGetAccelFromString(label); | |
669 | } | |
670 | ||
671 | #endif // wxUSE_ACCEL | |
672 | ||
96fd301f | 673 | void wxMenuItem::Check( bool check ) |
716b7364 | 674 | { |
223d09f6 | 675 | wxCHECK_RET( m_menuItem, wxT("invalid menu item") ); |
db1b4961 | 676 | |
223d09f6 | 677 | wxCHECK_RET( IsCheckable(), wxT("Can't check uncheckable item!") ) |
96fd301f | 678 | |
974e8d94 VZ |
679 | if (check == m_isChecked) |
680 | return; | |
2d17d68f | 681 | |
974e8d94 | 682 | wxMenuItemBase::Check( check ); |
83624f79 | 683 | gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check ); |
716b7364 RR |
684 | } |
685 | ||
8bbe427f VZ |
686 | void wxMenuItem::Enable( bool enable ) |
687 | { | |
223d09f6 | 688 | wxCHECK_RET( m_menuItem, wxT("invalid menu item") ); |
db1b4961 | 689 | |
83624f79 | 690 | gtk_widget_set_sensitive( m_menuItem, enable ); |
974e8d94 | 691 | wxMenuItemBase::Enable( enable ); |
a9c96bcc RR |
692 | } |
693 | ||
96fd301f | 694 | bool wxMenuItem::IsChecked() const |
716b7364 | 695 | { |
223d09f6 | 696 | wxCHECK_MSG( m_menuItem, FALSE, wxT("invalid menu item") ); |
db1b4961 | 697 | |
974e8d94 VZ |
698 | wxCHECK_MSG( IsCheckable(), FALSE, |
699 | wxT("can't get state of uncheckable item!") ); | |
96fd301f | 700 | |
974e8d94 | 701 | return ((GtkCheckMenuItem*)m_menuItem)->active != 0; |
716b7364 RR |
702 | } |
703 | ||
354aa1e3 RR |
704 | wxString wxMenuItem::GetFactoryPath() const |
705 | { | |
706 | /* in order to get the pointer to the item we need the item text _without_ underscores */ | |
707 | wxString path( wxT("<main>/") ); | |
717a57c2 VZ |
708 | path += GetLabel(); |
709 | ||
354aa1e3 RR |
710 | return path; |
711 | } | |
712 | ||
db1b4961 | 713 | //----------------------------------------------------------------------------- |
83624f79 | 714 | // wxMenu |
db1b4961 RR |
715 | //----------------------------------------------------------------------------- |
716 | ||
c801d85f KB |
717 | IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler) |
718 | ||
717a57c2 | 719 | void wxMenu::Init() |
c801d85f | 720 | { |
034be888 RR |
721 | #if (GTK_MINOR_VERSION > 0) |
722 | m_accel = gtk_accel_group_new(); | |
723 | m_factory = gtk_item_factory_new( GTK_TYPE_MENU, "<main>", m_accel ); | |
724 | m_menu = gtk_item_factory_get_widget( m_factory, "<main>" ); | |
23280650 | 725 | #else |
83624f79 | 726 | m_menu = gtk_menu_new(); // Do not show! |
034be888 | 727 | #endif |
8bbe427f | 728 | |
2b1c162e | 729 | m_owner = (GtkWidget*) NULL; |
2b2edbed KB |
730 | |
731 | #if (GTK_MINOR_VERSION > 0) | |
732 | /* Tearoffs are entries, just like separators. So if we want this | |
733 | menu to be a tear-off one, we just append a tearoff entry | |
734 | immediately. */ | |
735 | if(m_style & wxMENU_TEAROFF) | |
736 | { | |
737 | GtkItemFactoryEntry entry; | |
738 | entry.path = "/tearoff"; | |
739 | entry.callback = (GtkItemFactoryCallback) NULL; | |
740 | entry.callback_action = 0; | |
741 | entry.item_type = "<Tearoff>"; | |
742 | entry.accelerator = (gchar*) NULL; | |
743 | gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */ | |
23280650 | 744 | //GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, "<main>/tearoff" ); |
2b2edbed KB |
745 | } |
746 | #endif | |
c801d85f | 747 | |
717a57c2 VZ |
748 | // append the title as the very first entry if we have it |
749 | if ( !!m_title ) | |
d1b15f03 | 750 | { |
717a57c2 VZ |
751 | Append(-2, m_title); |
752 | AppendSeparator(); | |
d1b15f03 | 753 | } |
717a57c2 | 754 | } |
15a2076a | 755 | |
717a57c2 VZ |
756 | wxMenu::~wxMenu() |
757 | { | |
a583e623 RR |
758 | m_items.Clear(); |
759 | ||
d1b15f03 | 760 | gtk_widget_destroy( m_menu ); |
974e8d94 | 761 | |
d1b15f03 | 762 | gtk_object_unref( GTK_OBJECT(m_factory) ); |
c2dd8380 GL |
763 | } |
764 | ||
1987af7e | 765 | bool wxMenu::DoAppend(wxMenuItem *mitem) |
c2dd8380 | 766 | { |
717a57c2 | 767 | GtkWidget *menuItem; |
96fd301f | 768 | |
717a57c2 VZ |
769 | if ( mitem->IsSeparator() ) |
770 | { | |
08fc1744 | 771 | #if (GTK_MINOR_VERSION > 0) |
717a57c2 VZ |
772 | GtkItemFactoryEntry entry; |
773 | entry.path = "/sep"; | |
774 | entry.callback = (GtkItemFactoryCallback) NULL; | |
775 | entry.callback_action = 0; | |
776 | entry.item_type = "<Separator>"; | |
777 | entry.accelerator = (gchar*) NULL; | |
778 | ||
779 | gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */ | |
780 | ||
781 | /* this will be wrong for more than one separator. do we care? */ | |
782 | menuItem = gtk_item_factory_get_widget( m_factory, "<main>/sep" ); | |
783 | #else // GTK+ 1.0 | |
784 | menuItem = gtk_menu_item_new(); | |
785 | #endif // GTK 1.2/1.0 | |
786 | } | |
787 | else if ( mitem->IsSubMenu() ) | |
837904f2 | 788 | { |
717a57c2 VZ |
789 | #if (GTK_MINOR_VERSION > 0) |
790 | /* text has "_" instead of "&" after mitem->SetText() */ | |
791 | wxString text( mitem->GetText() ); | |
974e8d94 | 792 | |
717a57c2 VZ |
793 | /* local buffer in multibyte form */ |
794 | char buf[200]; | |
795 | strcpy( buf, "/" ); | |
796 | strcat( buf, text.mb_str() ); | |
50592885 | 797 | |
717a57c2 VZ |
798 | GtkItemFactoryEntry entry; |
799 | entry.path = buf; | |
800 | entry.callback = (GtkItemFactoryCallback) 0; | |
801 | entry.callback_action = 0; | |
802 | entry.item_type = "<Branch>"; | |
a583e623 | 803 | entry.accelerator = (gchar*) NULL; |
50592885 | 804 | |
717a57c2 | 805 | gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */ |
50592885 | 806 | |
717a57c2 | 807 | wxString path( mitem->GetFactoryPath() ); |
1987af7e | 808 | menuItem = gtk_item_factory_get_item( m_factory, path.mb_str() ); |
717a57c2 | 809 | #else // GTK+ 1.0 |
1987af7e | 810 | menuItem = gtk_menu_item_new_with_label(mitem->GetText().mbc_str()); |
717a57c2 | 811 | #endif // GTK 1.2/1.0 |
50592885 | 812 | |
1987af7e | 813 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), mitem->GetSubMenu()->m_menu ); |
837904f2 | 814 | } |
717a57c2 VZ |
815 | else // a normal item |
816 | { | |
034be888 | 817 | #if (GTK_MINOR_VERSION > 0) |
717a57c2 VZ |
818 | /* text has "_" instead of "&" after mitem->SetText() */ |
819 | wxString text( mitem->GetText() ); | |
820 | ||
821 | /* local buffer in multibyte form */ | |
822 | char buf[200]; | |
823 | strcpy( buf, "/" ); | |
824 | strcat( buf, text.mb_str() ); | |
825 | ||
826 | GtkItemFactoryEntry entry; | |
827 | entry.path = buf; | |
828 | entry.callback = (GtkItemFactoryCallback) gtk_menu_clicked_callback; | |
829 | entry.callback_action = 0; | |
1987af7e | 830 | if ( mitem->IsCheckable() ) |
717a57c2 VZ |
831 | entry.item_type = "<CheckItem>"; |
832 | else | |
833 | entry.item_type = "<Item>"; | |
a583e623 | 834 | entry.accelerator = (gchar*) NULL; |
23280650 | 835 | |
974e8d94 | 836 | #if wxUSE_ACCEL |
717a57c2 VZ |
837 | // due to an apparent bug in GTK+, we have to use a static buffer here - |
838 | // otherwise GTK+ 1.2.2 manages to override the memory we pass to it | |
839 | // somehow! (VZ) | |
840 | static char s_accel[32]; // must be big enough for <control><alt><shift>F12 | |
841 | strncpy(s_accel, GetHotKey(*mitem).mb_str(), WXSIZEOF(s_accel)); | |
842 | entry.accelerator = s_accel; | |
843 | #else // !wxUSE_ACCEL | |
844 | entry.accelerator = (char*) NULL; | |
845 | #endif // wxUSE_ACCEL/!wxUSE_ACCEL | |
96fd301f | 846 | |
717a57c2 | 847 | gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */ |
cf7a7e13 | 848 | |
717a57c2 | 849 | wxString path( mitem->GetFactoryPath() ); |
1987af7e | 850 | menuItem = gtk_item_factory_get_widget( m_factory, path.mb_str() ); |
717a57c2 | 851 | #else // GTK+ 1.0 |
1987af7e VZ |
852 | menuItem = checkable ? gtk_check_menu_item_new_with_label( mitem->GetText().mb_str() ) |
853 | : gtk_menu_item_new_with_label( mitem->GetText().mb_str() ); | |
034be888 | 854 | |
717a57c2 VZ |
855 | gtk_signal_connect( GTK_OBJECT(menuItem), "activate", |
856 | GTK_SIGNAL_FUNC(gtk_menu_clicked_callback), | |
857 | (gpointer)this ); | |
858 | #endif // GTK+ 1.2/1.0 | |
859 | } | |
23280650 | 860 | |
717a57c2 VZ |
861 | if ( !mitem->IsSeparator() ) |
862 | { | |
863 | gtk_signal_connect( GTK_OBJECT(menuItem), "select", | |
864 | GTK_SIGNAL_FUNC(gtk_menu_hilight_callback), | |
865 | (gpointer)this ); | |
837904f2 | 866 | |
717a57c2 VZ |
867 | gtk_signal_connect( GTK_OBJECT(menuItem), "deselect", |
868 | GTK_SIGNAL_FUNC(gtk_menu_nolight_callback), | |
869 | (gpointer)this ); | |
870 | } | |
23280650 | 871 | |
717a57c2 | 872 | #if GTK_MINOR_VERSION == 0 |
837904f2 RR |
873 | gtk_menu_append( GTK_MENU(m_menu), menuItem ); |
874 | gtk_widget_show( menuItem ); | |
717a57c2 | 875 | #endif // GTK+ 1.0 |
23280650 | 876 | |
837904f2 | 877 | mitem->SetMenuItem(menuItem); |
837904f2 | 878 | |
717a57c2 | 879 | return wxMenuBase::DoAppend(mitem); |
6de97a3b | 880 | } |
c801d85f | 881 | |
717a57c2 VZ |
882 | // VZ: this seems to be GTK+ 1.0 only code, I don't understand why there were |
883 | // both specialized versions of Append() and this one before my changes, | |
884 | // but it seems that the others are better... | |
885 | #if 0 | |
828f655f RR |
886 | void wxMenu::Append( wxMenuItem *item ) |
887 | { | |
828f655f RR |
888 | GtkWidget *menuItem = (GtkWidget*) NULL; |
889 | ||
c626a8b7 | 890 | if (item->IsSeparator()) |
828f655f | 891 | menuItem = gtk_menu_item_new(); |
c626a8b7 | 892 | else if (item->IsSubMenu()) |
b019151f | 893 | menuItem = gtk_menu_item_new_with_label(item->GetText().mbc_str()); |
c626a8b7 | 894 | else |
b019151f OK |
895 | menuItem = item->IsCheckable() ? gtk_check_menu_item_new_with_label(item->GetText().mbc_str()) |
896 | : gtk_menu_item_new_with_label(item->GetText().mbc_str()); | |
828f655f RR |
897 | |
898 | if (!item->IsSeparator()) | |
899 | { | |
900 | gtk_signal_connect( GTK_OBJECT(menuItem), "select", | |
901 | GTK_SIGNAL_FUNC(gtk_menu_hilight_callback), | |
902 | (gpointer*)this ); | |
903 | ||
904 | gtk_signal_connect( GTK_OBJECT(menuItem), "deselect", | |
905 | GTK_SIGNAL_FUNC(gtk_menu_nolight_callback), | |
906 | (gpointer*)this ); | |
c626a8b7 VZ |
907 | |
908 | if (!item->IsSubMenu()) | |
909 | { | |
828f655f RR |
910 | gtk_signal_connect( GTK_OBJECT(menuItem), "activate", |
911 | GTK_SIGNAL_FUNC(gtk_menu_clicked_callback), | |
912 | (gpointer*)this ); | |
c626a8b7 | 913 | } |
828f655f | 914 | } |
c626a8b7 | 915 | |
828f655f RR |
916 | gtk_menu_append( GTK_MENU(m_menu), menuItem ); |
917 | gtk_widget_show( menuItem ); | |
96fd301f | 918 | |
717a57c2 | 919 | item->SetMenuItem(menuItem); |
c33c4050 | 920 | } |
717a57c2 | 921 | #endif // 0 |
c33c4050 | 922 | |
717a57c2 | 923 | bool wxMenu::DoInsert(size_t pos, wxMenuItem *item) |
c33c4050 | 924 | { |
717a57c2 VZ |
925 | if ( !wxMenuBase::DoInsert(pos, item) ) |
926 | return FALSE; | |
c626a8b7 | 927 | |
717a57c2 | 928 | wxFAIL_MSG(wxT("not implemented")); |
c626a8b7 | 929 | |
717a57c2 | 930 | return FALSE; |
c33c4050 RR |
931 | } |
932 | ||
717a57c2 | 933 | wxMenuItem *wxMenu::DoRemove(wxMenuItem *item) |
c33c4050 | 934 | { |
717a57c2 VZ |
935 | if ( !wxMenuBase::DoRemove(item) ) |
936 | return (wxMenuItem *)NULL; | |
c626a8b7 | 937 | |
717a57c2 VZ |
938 | // TODO: this code doesn't delete the item factory item and this seems |
939 | // impossible as of GTK 1.2.6. | |
940 | gtk_widget_destroy( item->GetMenuItem() ); | |
c626a8b7 | 941 | |
717a57c2 | 942 | return item; |
c33c4050 RR |
943 | } |
944 | ||
96fd301f VZ |
945 | int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const |
946 | { | |
83624f79 RR |
947 | wxNode *node = m_items.First(); |
948 | while (node) | |
949 | { | |
950 | wxMenuItem *item = (wxMenuItem*)node->Data(); | |
951 | if (item->GetMenuItem() == menuItem) | |
952 | return item->GetId(); | |
953 | node = node->Next(); | |
954 | } | |
96fd301f | 955 | |
c626a8b7 | 956 | return wxNOT_FOUND; |
6de97a3b | 957 | } |
c801d85f | 958 | |
717a57c2 VZ |
959 | // ---------------------------------------------------------------------------- |
960 | // helpers | |
961 | // ---------------------------------------------------------------------------- | |
962 | ||
963 | #if (GTK_MINOR_VERSION > 0) && wxUSE_ACCEL | |
964 | static wxString GetHotKey( const wxMenuItem& item ) | |
c801d85f | 965 | { |
717a57c2 VZ |
966 | wxString hotkey; |
967 | ||
968 | wxAcceleratorEntry *accel = item.GetAccel(); | |
969 | if ( accel ) | |
83624f79 | 970 | { |
717a57c2 VZ |
971 | int flags = accel->GetFlags(); |
972 | if ( flags & wxACCEL_ALT ) | |
973 | hotkey += wxT("<alt>"); | |
974 | if ( flags & wxACCEL_CTRL ) | |
975 | hotkey += wxT("<control>"); | |
976 | if ( flags & wxACCEL_SHIFT ) | |
977 | hotkey += wxT("<shift>"); | |
978 | ||
979 | int code = accel->GetKeyCode(); | |
980 | switch ( code ) | |
c626a8b7 | 981 | { |
717a57c2 VZ |
982 | case WXK_F1: |
983 | case WXK_F2: | |
984 | case WXK_F3: | |
985 | case WXK_F4: | |
986 | case WXK_F5: | |
987 | case WXK_F6: | |
988 | case WXK_F7: | |
989 | case WXK_F8: | |
990 | case WXK_F9: | |
991 | case WXK_F10: | |
992 | case WXK_F11: | |
993 | case WXK_F12: | |
994 | hotkey << wxT('F') << code - WXK_F1 + 1; | |
995 | break; | |
96fd301f | 996 | |
717a57c2 VZ |
997 | // if there are any other keys wxGetAccelFromString() may return, |
998 | // we should process them here | |
8bbe427f | 999 | |
717a57c2 VZ |
1000 | default: |
1001 | if ( wxIsalnum(code) ) | |
1002 | { | |
1003 | hotkey << (wxChar)code; | |
c801d85f | 1004 | |
717a57c2 VZ |
1005 | break; |
1006 | } | |
c801d85f | 1007 | |
717a57c2 VZ |
1008 | wxFAIL_MSG( wxT("unknown keyboard accel") ); |
1009 | } | |
c801d85f | 1010 | |
717a57c2 | 1011 | delete accel; |
631f1bfe | 1012 | } |
717a57c2 VZ |
1013 | |
1014 | return hotkey; | |
631f1bfe | 1015 | } |
717a57c2 | 1016 | #endif // wxUSE_ACCEL |
631f1bfe | 1017 |