]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
44014bcd | 2 | // Name: src/gtk1/menu.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
96fd301f | 5 | // Id: $Id$ |
a81258be | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
14f355c2 VS |
10 | // For compilers that support precompilation, includes "wx.h". |
11 | #include "wx/wxprec.h" | |
12 | ||
e1bf3ad3 | 13 | #include "wx/menu.h" |
ee0a94cf | 14 | #include "wx/stockitem.h" |
88a7a4e1 WS |
15 | |
16 | #ifndef WX_PRECOMP | |
17 | #include "wx/intl.h" | |
e4db172a | 18 | #include "wx/log.h" |
670f9935 | 19 | #include "wx/app.h" |
0bca0373 | 20 | #include "wx/bitmap.h" |
88a7a4e1 WS |
21 | #endif |
22 | ||
974e8d94 VZ |
23 | #if wxUSE_ACCEL |
24 | #include "wx/accel.h" | |
25 | #endif // wxUSE_ACCEL | |
26 | ||
3cbab641 | 27 | #include "wx/gtk1/private.h" |
9e691f46 | 28 | |
cc47eed9 | 29 | #include <gdk/gdkkeysyms.h> |
9e691f46 | 30 | |
3cbab641 MR |
31 | #define ACCEL_OBJECT GtkObject |
32 | #define ACCEL_OBJECTS(a) (a)->attach_objects | |
33 | #define ACCEL_OBJ_CAST(obj) GTK_OBJECT(obj) | |
83624f79 | 34 | |
9959e2b6 VZ |
35 | // we use normal item but with a special id for the menu title |
36 | static const int wxGTK_TITLE_ID = -3; | |
37 | ||
defdd888 | 38 | // defined in window.cpp |
3cbab641 | 39 | extern guint32 wxGtkTimeLastClick; |
defdd888 | 40 | |
acfd422a RR |
41 | //----------------------------------------------------------------------------- |
42 | // idle system | |
43 | //----------------------------------------------------------------------------- | |
44 | ||
45 | extern void wxapp_install_idle_handler(); | |
46 | extern bool g_isIdle; | |
47 | ||
6d971354 | 48 | #if wxUSE_ACCEL |
98f29783 | 49 | static wxString GetGtkHotKey( const wxMenuItem& item ); |
717a57c2 VZ |
50 | #endif |
51 | ||
f6bcfd97 BP |
52 | //----------------------------------------------------------------------------- |
53 | // idle system | |
54 | //----------------------------------------------------------------------------- | |
55 | ||
56 | static wxString wxReplaceUnderscore( const wxString& title ) | |
57 | { | |
58 | const wxChar *pc; | |
2368dcda | 59 | |
6d971354 | 60 | // GTK 1.2 wants to have "_" instead of "&" for accelerators |
f6bcfd97 | 61 | wxString str; |
2b5f62a0 VZ |
62 | pc = title; |
63 | while (*pc != wxT('\0')) | |
f6bcfd97 | 64 | { |
2b5f62a0 VZ |
65 | if ((*pc == wxT('&')) && (*(pc+1) == wxT('&'))) |
66 | { | |
67 | // "&" is doubled to indicate "&" instead of accelerator | |
68 | ++pc; | |
69 | str << wxT('&'); | |
70 | } | |
71 | else if (*pc == wxT('&')) | |
f6bcfd97 | 72 | { |
f6bcfd97 | 73 | str << wxT('_'); |
4e9cbd33 | 74 | } |
f6bcfd97 BP |
75 | else |
76 | { | |
f6bcfd97 BP |
77 | if ( *pc == wxT('_') ) |
78 | { | |
79 | // underscores must be doubled to prevent them from being | |
80 | // interpreted as accelerator character prefix by GTK | |
81 | str << *pc; | |
82 | } | |
f6bcfd97 BP |
83 | |
84 | str << *pc; | |
85 | } | |
2b5f62a0 | 86 | ++pc; |
f6bcfd97 | 87 | } |
9959e2b6 | 88 | |
6d971354 | 89 | // wxPrintf( wxT("before %s after %s\n"), title.c_str(), str.c_str() ); |
9959e2b6 | 90 | |
f6bcfd97 BP |
91 | return str; |
92 | } | |
93 | ||
52af3158 JS |
94 | static wxString wxConvertFromGTKToWXLabel(const wxString& gtkLabel) |
95 | { | |
96 | wxString label; | |
97 | for ( const wxChar *pc = gtkLabel.c_str(); *pc; pc++ ) | |
98 | { | |
99 | // '_' is the escape character for GTK+. | |
100 | ||
101 | if ( *pc == wxT('_') && *(pc+1) == wxT('_')) | |
102 | { | |
103 | // An underscore was escaped. | |
104 | label += wxT('_'); | |
105 | pc++; | |
106 | } | |
107 | else if ( *pc == wxT('_') ) | |
108 | { | |
109 | // Convert GTK+ hotkey symbol to wxWidgets/Windows standard | |
110 | label += wxT('&'); | |
111 | } | |
112 | else if ( *pc == wxT('&') ) | |
113 | { | |
114 | // Double the ampersand to escape it as far as wxWidgets is concerned | |
115 | label += wxT("&&"); | |
116 | } | |
117 | else | |
118 | { | |
119 | // don't remove ampersands '&' since if we have them in the menu title | |
120 | // it means that they were doubled to indicate "&" instead of accelerator | |
121 | label += *pc; | |
122 | } | |
123 | } | |
124 | ||
125 | return label; | |
126 | } | |
127 | ||
128 | ||
e6396ed4 JS |
129 | //----------------------------------------------------------------------------- |
130 | // activate message from GTK | |
131 | //----------------------------------------------------------------------------- | |
132 | ||
cdf003d4 | 133 | static void DoCommonMenuCallbackCode(wxMenu *menu, wxMenuEvent& event) |
e6396ed4 | 134 | { |
cdf003d4 VZ |
135 | if (g_isIdle) |
136 | wxapp_install_idle_handler(); | |
e6396ed4 | 137 | |
e6396ed4 JS |
138 | event.SetEventObject( menu ); |
139 | ||
a01fe3d6 RD |
140 | wxEvtHandler* handler = menu->GetEventHandler(); |
141 | if (handler && handler->ProcessEvent(event)) | |
e6396ed4 JS |
142 | return; |
143 | ||
144 | wxWindow *win = menu->GetInvokingWindow(); | |
cdf003d4 | 145 | if (win) |
937013e0 | 146 | win->HandleWindowEvent( event ); |
cdf003d4 VZ |
147 | } |
148 | ||
149 | extern "C" { | |
150 | ||
89954433 | 151 | static void gtk_menu_open_callback( GtkWidget *WXUNUSED(widget), wxMenu *menu ) |
cdf003d4 VZ |
152 | { |
153 | wxMenuEvent event(wxEVT_MENU_OPEN, -1, menu); | |
154 | ||
155 | DoCommonMenuCallbackCode(menu, event); | |
156 | } | |
157 | ||
89954433 | 158 | static void gtk_menu_close_callback( GtkWidget *WXUNUSED(widget), wxMenuBar *menubar ) |
cdf003d4 | 159 | { |
13d35112 VZ |
160 | if ( !menubar->GetMenuCount() ) |
161 | { | |
162 | // if menubar is empty we can't call GetMenu(0) below | |
163 | return; | |
164 | } | |
cdf003d4 | 165 | |
13d35112 VZ |
166 | wxMenuEvent event( wxEVT_MENU_CLOSE, -1, NULL ); |
167 | ||
168 | DoCommonMenuCallbackCode(menubar->GetMenu(0), event); | |
e6396ed4 | 169 | } |
cdf003d4 | 170 | |
865bb325 | 171 | } |
e6396ed4 | 172 | |
c801d85f KB |
173 | //----------------------------------------------------------------------------- |
174 | // wxMenuBar | |
175 | //----------------------------------------------------------------------------- | |
176 | ||
177 | IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow) | |
178 | ||
294ea16d | 179 | void wxMenuBar::Init(size_t n, wxMenu *menus[], const wxString titles[], long style) |
3502e687 | 180 | { |
6d971354 | 181 | // the parent window is known after wxFrame::SetMenu() |
44014bcd | 182 | m_needParent = false; |
ae53c98c | 183 | m_style = style; |
d3b9f782 | 184 | m_invokingWindow = NULL; |
23280650 | 185 | |
d3b9f782 VZ |
186 | if (!PreCreation( NULL, wxDefaultPosition, wxDefaultSize ) || |
187 | !CreateBase( NULL, -1, wxDefaultPosition, wxDefaultSize, style, wxDefaultValidator, wxT("menubar") )) | |
4dcaf11a | 188 | { |
223d09f6 | 189 | wxFAIL_MSG( wxT("wxMenuBar creation failed") ); |
455fadaa | 190 | return; |
4dcaf11a | 191 | } |
3502e687 | 192 | |
3502e687 | 193 | m_menubar = gtk_menu_bar_new(); |
6d971354 | 194 | m_accel = gtk_accel_group_new(); |
3502e687 RR |
195 | |
196 | if (style & wxMB_DOCKABLE) | |
197 | { | |
198 | m_widget = gtk_handle_box_new(); | |
c626a8b7 VZ |
199 | gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_menubar) ); |
200 | gtk_widget_show( GTK_WIDGET(m_menubar) ); | |
3502e687 RR |
201 | } |
202 | else | |
203 | { | |
204 | m_widget = GTK_WIDGET(m_menubar); | |
205 | } | |
206 | ||
207 | PostCreation(); | |
c4608a8a | 208 | |
db434467 | 209 | ApplyWidgetStyle(); |
294ea16d VZ |
210 | |
211 | for (size_t i = 0; i < n; ++i ) | |
212 | Append(menus[i], titles[i]); | |
13d35112 VZ |
213 | |
214 | // VZ: for some reason connecting to menus "deactivate" doesn't work (we | |
215 | // don't get it when the menu is dismissed by clicking outside the | |
216 | // toolbar) so we connect to the global one, even if it means that we | |
217 | // can't pass the menu which was closed in wxMenuEvent object | |
218 | gtk_signal_connect( GTK_OBJECT(GTK_MENU_SHELL(m_menubar)), | |
219 | "deactivate", | |
220 | GTK_SIGNAL_FUNC(gtk_menu_close_callback), | |
221 | (gpointer)this ); | |
222 | ||
3502e687 RR |
223 | } |
224 | ||
294ea16d | 225 | wxMenuBar::wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style) |
c801d85f | 226 | { |
294ea16d VZ |
227 | Init(n, menus, titles, style); |
228 | } | |
96fd301f | 229 | |
294ea16d VZ |
230 | wxMenuBar::wxMenuBar(long style) |
231 | { | |
232 | Init(0, NULL, NULL, style); | |
233 | } | |
c4608a8a | 234 | |
294ea16d VZ |
235 | wxMenuBar::wxMenuBar() |
236 | { | |
237 | Init(0, NULL, NULL, 0); | |
6de97a3b | 238 | } |
c801d85f | 239 | |
1e133b7d RR |
240 | wxMenuBar::~wxMenuBar() |
241 | { | |
1e133b7d RR |
242 | } |
243 | ||
5bd9e519 RR |
244 | static void wxMenubarUnsetInvokingWindow( wxMenu *menu, wxWindow *win ) |
245 | { | |
d3b9f782 | 246 | menu->SetInvokingWindow( NULL ); |
5bd9e519 | 247 | |
5bd9e519 | 248 | wxWindow *top_frame = win; |
8487f887 | 249 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 250 | top_frame = top_frame->GetParent(); |
5bd9e519 | 251 | |
6d971354 | 252 | // support for native hot keys |
9e691f46 | 253 | gtk_accel_group_detach( menu->m_accel, ACCEL_OBJ_CAST(top_frame->m_widget) ); |
5bd9e519 | 254 | |
222ed1d6 | 255 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
5bd9e519 RR |
256 | while (node) |
257 | { | |
1987af7e | 258 | wxMenuItem *menuitem = node->GetData(); |
5bd9e519 RR |
259 | if (menuitem->IsSubMenu()) |
260 | wxMenubarUnsetInvokingWindow( menuitem->GetSubMenu(), win ); | |
1987af7e | 261 | node = node->GetNext(); |
5bd9e519 RR |
262 | } |
263 | } | |
264 | ||
265 | static void wxMenubarSetInvokingWindow( wxMenu *menu, wxWindow *win ) | |
266 | { | |
267 | menu->SetInvokingWindow( win ); | |
268 | ||
5bd9e519 | 269 | wxWindow *top_frame = win; |
8487f887 | 270 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 271 | top_frame = top_frame->GetParent(); |
5bd9e519 | 272 | |
6d971354 | 273 | // support for native hot keys |
9e691f46 VZ |
274 | ACCEL_OBJECT *obj = ACCEL_OBJ_CAST(top_frame->m_widget); |
275 | if ( !g_slist_find( ACCEL_OBJECTS(menu->m_accel), obj ) ) | |
b4da05a6 | 276 | gtk_accel_group_attach( menu->m_accel, obj ); |
5bd9e519 | 277 | |
222ed1d6 | 278 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
5bd9e519 RR |
279 | while (node) |
280 | { | |
1987af7e | 281 | wxMenuItem *menuitem = node->GetData(); |
5bd9e519 RR |
282 | if (menuitem->IsSubMenu()) |
283 | wxMenubarSetInvokingWindow( menuitem->GetSubMenu(), win ); | |
1987af7e | 284 | node = node->GetNext(); |
5bd9e519 RR |
285 | } |
286 | } | |
287 | ||
288 | void wxMenuBar::SetInvokingWindow( wxWindow *win ) | |
289 | { | |
9c884972 | 290 | m_invokingWindow = win; |
5bd9e519 | 291 | wxWindow *top_frame = win; |
8487f887 | 292 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 293 | top_frame = top_frame->GetParent(); |
5bd9e519 | 294 | |
6d971354 | 295 | // support for native key accelerators indicated by underscroes |
9e691f46 VZ |
296 | ACCEL_OBJECT *obj = ACCEL_OBJ_CAST(top_frame->m_widget); |
297 | if ( !g_slist_find( ACCEL_OBJECTS(m_accel), obj ) ) | |
b4da05a6 | 298 | gtk_accel_group_attach( m_accel, obj ); |
5bd9e519 | 299 | |
222ed1d6 | 300 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
5bd9e519 RR |
301 | while (node) |
302 | { | |
1987af7e | 303 | wxMenu *menu = node->GetData(); |
5bd9e519 | 304 | wxMenubarSetInvokingWindow( menu, win ); |
1987af7e | 305 | node = node->GetNext(); |
5bd9e519 RR |
306 | } |
307 | } | |
308 | ||
309 | void wxMenuBar::UnsetInvokingWindow( wxWindow *win ) | |
310 | { | |
d3b9f782 | 311 | m_invokingWindow = NULL; |
5bd9e519 | 312 | wxWindow *top_frame = win; |
8487f887 | 313 | while (top_frame->GetParent() && !(top_frame->IsTopLevel())) |
bd77da97 | 314 | top_frame = top_frame->GetParent(); |
9959e2b6 | 315 | |
d9e403cc | 316 | // support for native key accelerators indicated by underscroes |
9e691f46 | 317 | gtk_accel_group_detach( m_accel, ACCEL_OBJ_CAST(top_frame->m_widget) ); |
5bd9e519 | 318 | |
222ed1d6 | 319 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
5bd9e519 RR |
320 | while (node) |
321 | { | |
1987af7e | 322 | wxMenu *menu = node->GetData(); |
5bd9e519 | 323 | wxMenubarUnsetInvokingWindow( menu, win ); |
1987af7e | 324 | node = node->GetNext(); |
5bd9e519 RR |
325 | } |
326 | } | |
327 | ||
3dfac970 | 328 | bool wxMenuBar::Append( wxMenu *menu, const wxString &title ) |
c801d85f | 329 | { |
f03ec224 | 330 | if ( !wxMenuBarBase::Append( menu, title ) ) |
44014bcd | 331 | return false; |
f03ec224 VZ |
332 | |
333 | return GtkAppend(menu, title); | |
334 | } | |
23280650 | 335 | |
49826dab | 336 | bool wxMenuBar::GtkAppend(wxMenu *menu, const wxString& title, int pos) |
f03ec224 | 337 | { |
f6bcfd97 | 338 | wxString str( wxReplaceUnderscore( title ) ); |
1e133b7d | 339 | |
d9e403cc | 340 | // This doesn't have much effect right now. |
1e133b7d | 341 | menu->SetTitle( str ); |
23280650 | 342 | |
6d971354 | 343 | // The "m_owner" is the "menu item" |
6d971354 RR |
344 | menu->m_owner = gtk_menu_item_new_with_label( wxGTK_CONV( str ) ); |
345 | GtkLabel *label = GTK_LABEL( GTK_BIN(menu->m_owner)->child ); | |
346 | // set new text | |
347 | gtk_label_set_text( label, wxGTK_CONV( str ) ); | |
348 | // reparse key accel | |
349 | guint accel_key = gtk_label_parse_uline (GTK_LABEL(label), wxGTK_CONV( str ) ); | |
350 | if (accel_key != GDK_VoidSymbol) | |
1e133b7d | 351 | { |
6d971354 | 352 | gtk_widget_add_accelerator (menu->m_owner, |
88d19775 MR |
353 | "activate_item", |
354 | m_accel, //gtk_menu_ensure_uline_accel_group(GTK_MENU(m_menubar)), | |
355 | accel_key, | |
356 | GDK_MOD1_MASK, | |
357 | GTK_ACCEL_LOCKED); | |
034be888 | 358 | } |
96fd301f | 359 | |
2b1c162e | 360 | gtk_widget_show( menu->m_owner ); |
9959e2b6 | 361 | |
2b1c162e | 362 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu ); |
9959e2b6 | 363 | |
49826dab RD |
364 | if (pos == -1) |
365 | gtk_menu_shell_append( GTK_MENU_SHELL(m_menubar), menu->m_owner ); | |
366 | else | |
367 | gtk_menu_shell_insert( GTK_MENU_SHELL(m_menubar), menu->m_owner, pos ); | |
9959e2b6 | 368 | |
e6396ed4 JS |
369 | gtk_signal_connect( GTK_OBJECT(menu->m_owner), "activate", |
370 | GTK_SIGNAL_FUNC(gtk_menu_open_callback), | |
371 | (gpointer)menu ); | |
372 | ||
9c884972 | 373 | // m_invokingWindow is set after wxFrame::SetMenuBar(). This call enables |
2b5f62a0 | 374 | // addings menu later on. |
9c884972 | 375 | if (m_invokingWindow) |
2b5f62a0 | 376 | { |
9c884972 | 377 | wxMenubarSetInvokingWindow( menu, m_invokingWindow ); |
3dfac970 | 378 | |
2b5f62a0 VZ |
379 | // OPTIMISE ME: we should probably cache this, or pass it |
380 | // directly, but for now this is a minimal | |
381 | // change to validate the new dynamic sizing. | |
382 | // see (and refactor :) similar code in Remove | |
383 | // below. | |
384 | ||
d9e403cc | 385 | wxFrame *frame = wxDynamicCast( m_invokingWindow, wxFrame ); |
2b5f62a0 VZ |
386 | |
387 | if( frame ) | |
388 | frame->UpdateMenuBarSize(); | |
389 | } | |
390 | ||
44014bcd | 391 | return true; |
3dfac970 VZ |
392 | } |
393 | ||
394 | bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title) | |
395 | { | |
396 | if ( !wxMenuBarBase::Insert(pos, menu, title) ) | |
44014bcd | 397 | return false; |
3dfac970 | 398 | |
6d971354 | 399 | // TODO |
9959e2b6 | 400 | |
49826dab | 401 | if ( !GtkAppend(menu, title, (int)pos) ) |
44014bcd | 402 | return false; |
f03ec224 | 403 | |
44014bcd | 404 | return true; |
3dfac970 VZ |
405 | } |
406 | ||
407 | wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title) | |
408 | { | |
f03ec224 VZ |
409 | // remove the old item and insert a new one |
410 | wxMenu *menuOld = Remove(pos); | |
411 | if ( menuOld && !Insert(pos, menu, title) ) | |
412 | { | |
d3b9f782 | 413 | return NULL; |
f03ec224 | 414 | } |
3dfac970 | 415 | |
f03ec224 VZ |
416 | // either Insert() succeeded or Remove() failed and menuOld is NULL |
417 | return menuOld; | |
3dfac970 VZ |
418 | } |
419 | ||
420 | wxMenu *wxMenuBar::Remove(size_t pos) | |
421 | { | |
f03ec224 VZ |
422 | wxMenu *menu = wxMenuBarBase::Remove(pos); |
423 | if ( !menu ) | |
d3b9f782 | 424 | return NULL; |
f03ec224 | 425 | |
defc0789 VS |
426 | gtk_menu_item_remove_submenu( GTK_MENU_ITEM(menu->m_owner) ); |
427 | gtk_container_remove(GTK_CONTAINER(m_menubar), menu->m_owner); | |
c4608a8a | 428 | |
1d62a8b4 | 429 | gtk_widget_destroy( menu->m_owner ); |
defc0789 | 430 | menu->m_owner = NULL; |
c4608a8a | 431 | |
2b5f62a0 VZ |
432 | if (m_invokingWindow) |
433 | { | |
6d971354 RR |
434 | // OPTIMISE ME: see comment in GtkAppend |
435 | wxFrame *frame = wxDynamicCast( m_invokingWindow, wxFrame ); | |
2b5f62a0 | 436 | |
6d971354 | 437 | if( frame ) |
2b5f62a0 VZ |
438 | frame->UpdateMenuBarSize(); |
439 | } | |
440 | ||
1d62a8b4 | 441 | return menu; |
6de97a3b | 442 | } |
96fd301f | 443 | |
716b7364 | 444 | static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString ) |
c801d85f | 445 | { |
52af3158 | 446 | if (wxMenuItem::GetLabelText(wxConvertFromGTKToWXLabel(menu->GetTitle())) == wxMenuItem::GetLabelText(menuString)) |
83624f79 RR |
447 | { |
448 | int res = menu->FindItem( itemString ); | |
c626a8b7 VZ |
449 | if (res != wxNOT_FOUND) |
450 | return res; | |
83624f79 | 451 | } |
c626a8b7 | 452 | |
222ed1d6 | 453 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
83624f79 RR |
454 | while (node) |
455 | { | |
1987af7e | 456 | wxMenuItem *item = node->GetData(); |
83624f79 RR |
457 | if (item->IsSubMenu()) |
458 | return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString); | |
2b1c162e | 459 | |
1987af7e | 460 | node = node->GetNext(); |
83624f79 RR |
461 | } |
462 | ||
c626a8b7 VZ |
463 | return wxNOT_FOUND; |
464 | } | |
465 | ||
c801d85f KB |
466 | int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const |
467 | { | |
222ed1d6 | 468 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
83624f79 RR |
469 | while (node) |
470 | { | |
1987af7e | 471 | wxMenu *menu = node->GetData(); |
83624f79 | 472 | int res = FindMenuItemRecursive( menu, menuString, itemString); |
1987af7e VZ |
473 | if (res != -1) |
474 | return res; | |
475 | node = node->GetNext(); | |
83624f79 | 476 | } |
1987af7e VZ |
477 | |
478 | return wxNOT_FOUND; | |
6de97a3b | 479 | } |
c801d85f | 480 | |
c626a8b7 | 481 | // Find a wxMenuItem using its id. Recurses down into sub-menus |
96fd301f | 482 | static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id) |
716b7364 | 483 | { |
717a57c2 | 484 | wxMenuItem* result = menu->FindChildItem(id); |
716b7364 | 485 | |
222ed1d6 | 486 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
c626a8b7 | 487 | while ( node && result == NULL ) |
83624f79 | 488 | { |
1987af7e | 489 | wxMenuItem *item = node->GetData(); |
83624f79 | 490 | if (item->IsSubMenu()) |
c626a8b7 | 491 | { |
83624f79 | 492 | result = FindMenuItemByIdRecursive( item->GetSubMenu(), id ); |
c626a8b7 | 493 | } |
1987af7e | 494 | node = node->GetNext(); |
83624f79 | 495 | } |
96fd301f | 496 | |
83624f79 | 497 | return result; |
6de97a3b | 498 | } |
716b7364 | 499 | |
3dfac970 | 500 | wxMenuItem* wxMenuBar::FindItem( int id, wxMenu **menuForItem ) const |
716b7364 | 501 | { |
83624f79 | 502 | wxMenuItem* result = 0; |
222ed1d6 | 503 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
83624f79 RR |
504 | while (node && result == 0) |
505 | { | |
1987af7e | 506 | wxMenu *menu = node->GetData(); |
83624f79 | 507 | result = FindMenuItemByIdRecursive( menu, id ); |
1987af7e | 508 | node = node->GetNext(); |
83624f79 | 509 | } |
c626a8b7 | 510 | |
3dfac970 VZ |
511 | if ( menuForItem ) |
512 | { | |
d3b9f782 | 513 | *menuForItem = result ? result->GetMenu() : NULL; |
3dfac970 | 514 | } |
c626a8b7 | 515 | |
3dfac970 | 516 | return result; |
bbe0af5b RR |
517 | } |
518 | ||
3dfac970 | 519 | void wxMenuBar::EnableTop( size_t pos, bool flag ) |
bbe0af5b | 520 | { |
222ed1d6 | 521 | wxMenuList::compatibility_iterator node = m_menus.Item( pos ); |
c626a8b7 | 522 | |
223d09f6 | 523 | wxCHECK_RET( node, wxT("menu not found") ); |
c626a8b7 | 524 | |
3dfac970 | 525 | wxMenu* menu = node->GetData(); |
c626a8b7 VZ |
526 | |
527 | if (menu->m_owner) | |
528 | gtk_widget_set_sensitive( menu->m_owner, flag ); | |
bbe0af5b RR |
529 | } |
530 | ||
52af3158 | 531 | wxString wxMenuBar::GetMenuLabel( size_t pos ) const |
bbe0af5b | 532 | { |
222ed1d6 | 533 | wxMenuList::compatibility_iterator node = m_menus.Item( pos ); |
c626a8b7 | 534 | |
223d09f6 | 535 | wxCHECK_MSG( node, wxT("invalid"), wxT("menu not found") ); |
c626a8b7 | 536 | |
3dfac970 | 537 | wxMenu* menu = node->GetData(); |
c626a8b7 | 538 | |
52af3158 | 539 | return wxConvertFromGTKToWXLabel(menu->GetTitle()); |
bbe0af5b RR |
540 | } |
541 | ||
52af3158 | 542 | void wxMenuBar::SetMenuLabel( size_t pos, const wxString& label ) |
bbe0af5b | 543 | { |
222ed1d6 | 544 | wxMenuList::compatibility_iterator node = m_menus.Item( pos ); |
c626a8b7 | 545 | |
223d09f6 | 546 | wxCHECK_RET( node, wxT("menu not found") ); |
c626a8b7 | 547 | |
3dfac970 | 548 | wxMenu* menu = node->GetData(); |
c626a8b7 | 549 | |
4e115ed2 | 550 | const wxString str( wxReplaceUnderscore( label ) ); |
f6bcfd97 BP |
551 | |
552 | menu->SetTitle( str ); | |
553 | ||
554 | if (menu->m_owner) | |
555 | { | |
4e115ed2 | 556 | GtkLabel *glabel = GTK_LABEL( GTK_BIN(menu->m_owner)->child ); |
f6bcfd97 BP |
557 | |
558 | /* set new text */ | |
4e115ed2 | 559 | gtk_label_set( glabel, wxGTK_CONV( str ) ); |
f6bcfd97 BP |
560 | |
561 | /* reparse key accel */ | |
4e115ed2 VZ |
562 | (void)gtk_label_parse_uline (GTK_LABEL(glabel), wxGTK_CONV( str ) ); |
563 | gtk_accel_label_refetch( GTK_ACCEL_LABEL(glabel) ); | |
f6bcfd97 BP |
564 | } |
565 | ||
bbe0af5b RR |
566 | } |
567 | ||
c801d85f | 568 | //----------------------------------------------------------------------------- |
cf7a7e13 | 569 | // "activate" |
c801d85f KB |
570 | //----------------------------------------------------------------------------- |
571 | ||
865bb325 | 572 | extern "C" { |
6de97a3b | 573 | static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu ) |
c801d85f | 574 | { |
1e6feb95 VZ |
575 | if (g_isIdle) |
576 | wxapp_install_idle_handler(); | |
c4608a8a | 577 | |
83624f79 | 578 | int id = menu->FindMenuIdByMenuItem(widget); |
96fd301f | 579 | |
83624f79 | 580 | /* should find it for normal (not popup) menu */ |
1e6feb95 VZ |
581 | wxASSERT_MSG( (id != -1) || (menu->GetInvokingWindow() != NULL), |
582 | _T("menu item not found in gtk_menu_clicked_callback") ); | |
96fd301f | 583 | |
c626a8b7 VZ |
584 | if (!menu->IsEnabled(id)) |
585 | return; | |
96fd301f | 586 | |
4e6beae5 RD |
587 | wxMenuItem* item = menu->FindChildItem( id ); |
588 | wxCHECK_RET( item, wxT("error in menu item callback") ); | |
589 | ||
9959e2b6 VZ |
590 | if ( item->GetId() == wxGTK_TITLE_ID ) |
591 | { | |
592 | // ignore events from the menu title | |
593 | return; | |
594 | } | |
595 | ||
4e6beae5 RD |
596 | if (item->IsCheckable()) |
597 | { | |
598 | bool isReallyChecked = item->IsChecked(), | |
599 | isInternallyChecked = item->wxMenuItemBase::IsChecked(); | |
600 | ||
601 | // ensure that the internal state is always consistent with what is | |
602 | // shown on the screen | |
603 | item->wxMenuItemBase::Check(isReallyChecked); | |
604 | ||
605 | // we must not report the events for the radio button going up nor the | |
606 | // events resulting from the calls to wxMenuItem::Check() | |
607 | if ( (item->GetKind() == wxITEM_RADIO && !isReallyChecked) || | |
608 | (isInternallyChecked == isReallyChecked) ) | |
609 | { | |
610 | return; | |
611 | } | |
612 | } | |
613 | ||
614 | ||
02822c8c RD |
615 | // Is this menu on a menubar? (possibly nested) |
616 | wxFrame* frame = NULL; | |
6edf1107 DE |
617 | if(menu->IsAttached()) |
618 | frame = menu->GetMenuBar()->GetFrame(); | |
02822c8c | 619 | |
da0b5338 VZ |
620 | // FIXME: why do we have to call wxFrame::GetEventHandler() directly here? |
621 | // normally wxMenu::SendEvent() should be enough, if it doesn't work | |
622 | // in wxGTK then we have a bug in wxMenu::GetInvokingWindow() which | |
623 | // should be fixed instead of working around it here... | |
02822c8c | 624 | if (frame) |
2d17d68f | 625 | { |
4e6beae5 RD |
626 | // If it is attached then let the frame send the event. |
627 | // Don't call frame->ProcessCommand(id) because it toggles | |
628 | // checkable items and we've already done that above. | |
629 | wxCommandEvent commandEvent(wxEVT_COMMAND_MENU_SELECTED, id); | |
630 | commandEvent.SetEventObject(frame); | |
631 | if (item->IsCheckable()) | |
632 | commandEvent.SetInt(item->IsChecked()); | |
da0b5338 | 633 | commandEvent.SetEventObject(menu); |
4e6beae5 | 634 | |
937013e0 | 635 | frame->HandleWindowEvent(commandEvent); |
a01fe3d6 RD |
636 | } |
637 | else | |
638 | { | |
4e6beae5 | 639 | // otherwise let the menu have it |
a01fe3d6 | 640 | menu->SendEvent(id, item->IsCheckable() ? item->IsChecked() : -1); |
2d17d68f | 641 | } |
cf7a7e13 | 642 | } |
865bb325 | 643 | } |
cf7a7e13 RR |
644 | |
645 | //----------------------------------------------------------------------------- | |
646 | // "select" | |
647 | //----------------------------------------------------------------------------- | |
648 | ||
865bb325 | 649 | extern "C" { |
cf7a7e13 RR |
650 | static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu ) |
651 | { | |
acfd422a RR |
652 | if (g_isIdle) wxapp_install_idle_handler(); |
653 | ||
83624f79 RR |
654 | int id = menu->FindMenuIdByMenuItem(widget); |
655 | ||
656 | wxASSERT( id != -1 ); // should find it! | |
cf7a7e13 | 657 | |
c626a8b7 VZ |
658 | if (!menu->IsEnabled(id)) |
659 | return; | |
cf7a7e13 | 660 | |
342b6a2f | 661 | wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, id ); |
83624f79 | 662 | event.SetEventObject( menu ); |
cf7a7e13 | 663 | |
a01fe3d6 RD |
664 | wxEvtHandler* handler = menu->GetEventHandler(); |
665 | if (handler && handler->ProcessEvent(event)) | |
c626a8b7 | 666 | return; |
6de97a3b | 667 | |
83624f79 | 668 | wxWindow *win = menu->GetInvokingWindow(); |
937013e0 | 669 | if (win) win->HandleWindowEvent( event ); |
6de97a3b | 670 | } |
865bb325 | 671 | } |
c801d85f | 672 | |
cd743a6f RR |
673 | //----------------------------------------------------------------------------- |
674 | // "deselect" | |
675 | //----------------------------------------------------------------------------- | |
676 | ||
865bb325 | 677 | extern "C" { |
cd743a6f RR |
678 | static void gtk_menu_nolight_callback( GtkWidget *widget, wxMenu *menu ) |
679 | { | |
acfd422a RR |
680 | if (g_isIdle) wxapp_install_idle_handler(); |
681 | ||
cd743a6f RR |
682 | int id = menu->FindMenuIdByMenuItem(widget); |
683 | ||
684 | wxASSERT( id != -1 ); // should find it! | |
685 | ||
c626a8b7 VZ |
686 | if (!menu->IsEnabled(id)) |
687 | return; | |
cd743a6f RR |
688 | |
689 | wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, -1 ); | |
690 | event.SetEventObject( menu ); | |
691 | ||
a01fe3d6 RD |
692 | wxEvtHandler* handler = menu->GetEventHandler(); |
693 | if (handler && handler->ProcessEvent(event)) | |
c626a8b7 | 694 | return; |
cd743a6f RR |
695 | |
696 | wxWindow *win = menu->GetInvokingWindow(); | |
c626a8b7 | 697 | if (win) |
937013e0 | 698 | win->HandleWindowEvent( event ); |
cd743a6f | 699 | } |
865bb325 | 700 | } |
cd743a6f | 701 | |
cf7a7e13 | 702 | //----------------------------------------------------------------------------- |
db1b4961 | 703 | // wxMenuItem |
cf7a7e13 RR |
704 | //----------------------------------------------------------------------------- |
705 | ||
7dbf5360 | 706 | IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject) |
974e8d94 VZ |
707 | |
708 | wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu, | |
709 | int id, | |
710 | const wxString& name, | |
711 | const wxString& help, | |
d65c269b | 712 | wxItemKind kind, |
974e8d94 VZ |
713 | wxMenu *subMenu) |
714 | { | |
d65c269b | 715 | return new wxMenuItem(parentMenu, id, name, help, kind, subMenu); |
974e8d94 | 716 | } |
96fd301f | 717 | |
974e8d94 VZ |
718 | wxMenuItem::wxMenuItem(wxMenu *parentMenu, |
719 | int id, | |
720 | const wxString& text, | |
721 | const wxString& help, | |
d65c269b | 722 | wxItemKind kind, |
974e8d94 | 723 | wxMenu *subMenu) |
d65c269b | 724 | : wxMenuItemBase(parentMenu, id, text, help, kind, subMenu) |
2368dcda | 725 | { |
010eb424 | 726 | Init(); |
2368dcda VZ |
727 | } |
728 | ||
729 | wxMenuItem::wxMenuItem(wxMenu *parentMenu, | |
730 | int id, | |
731 | const wxString& text, | |
732 | const wxString& help, | |
733 | bool isCheckable, | |
734 | wxMenu *subMenu) | |
735 | : wxMenuItemBase(parentMenu, id, text, help, | |
736 | isCheckable ? wxITEM_CHECK : wxITEM_NORMAL, subMenu) | |
737 | { | |
010eb424 | 738 | Init(); |
2368dcda VZ |
739 | } |
740 | ||
010eb424 | 741 | void wxMenuItem::Init() |
c801d85f | 742 | { |
d3b9f782 VZ |
743 | m_labelWidget = NULL; |
744 | m_menuItem = NULL; | |
974e8d94 | 745 | |
010eb424 | 746 | DoSetText(m_text); |
6de97a3b | 747 | } |
c801d85f | 748 | |
d1b15f03 RR |
749 | wxMenuItem::~wxMenuItem() |
750 | { | |
751 | // don't delete menu items, the menus take care of that | |
752 | } | |
753 | ||
52af3158 JS |
754 | wxString wxMenuItem::GetItemLabel() const |
755 | { | |
a738f87c JS |
756 | wxString label = wxConvertFromGTKToWXLabel(m_text); |
757 | if (!m_hotKey.IsEmpty()) | |
758 | label = label + wxT("\t") + m_hotKey; | |
759 | return label; | |
717a57c2 VZ |
760 | } |
761 | ||
52af3158 | 762 | void wxMenuItem::SetItemLabel( const wxString& string ) |
717a57c2 | 763 | { |
ee0a94cf | 764 | wxString str = string; |
345319d6 | 765 | if ( str.empty() && !IsSeparator() ) |
ee0a94cf | 766 | { |
4fc3eebc | 767 | wxASSERT_MSG(wxIsStockID(GetId()), wxT("A non-stock menu item with an empty label?")); |
345319d6 VZ |
768 | str = wxGetStockLabel(GetId(), wxSTOCK_WITH_ACCELERATOR | |
769 | wxSTOCK_WITH_MNEMONIC); | |
ee0a94cf RR |
770 | } |
771 | ||
5869f93f JS |
772 | // Some optimization to avoid flicker |
773 | wxString oldLabel = m_text; | |
98f29783 | 774 | oldLabel = wxStripMenuCodes(oldLabel); |
44014bcd | 775 | oldLabel.Replace(wxT("_"), wxEmptyString); |
98f29783 | 776 | wxString label1 = wxStripMenuCodes(str); |
a8e607d9 RR |
777 | wxString oldhotkey = GetHotKey(); // Store the old hotkey in Ctrl-foo format |
778 | wxCharBuffer oldbuf = wxGTK_CONV( GetGtkHotKey(*this) ); // and as <control>foo | |
a01fe3d6 | 779 | |
717a57c2 | 780 | DoSetText(str); |
354aa1e3 | 781 | |
88d19775 | 782 | if (oldLabel == label1 && |
a8e607d9 | 783 | oldhotkey == GetHotKey()) // Make sure we can change a hotkey even if the label is unaltered |
98f29783 RR |
784 | return; |
785 | ||
354aa1e3 RR |
786 | if (m_menuItem) |
787 | { | |
37d403aa JS |
788 | GtkLabel *label; |
789 | if (m_labelWidget) | |
2b5f62a0 | 790 | label = (GtkLabel*) m_labelWidget; |
37d403aa | 791 | else |
2b5f62a0 | 792 | label = GTK_LABEL( GTK_BIN(m_menuItem)->child ); |
717a57c2 | 793 | |
2b5f62a0 | 794 | // set new text |
fab591c5 | 795 | gtk_label_set( label, wxGTK_CONV( m_text ) ); |
717a57c2 | 796 | |
2b5f62a0 VZ |
797 | // reparse key accel |
798 | (void)gtk_label_parse_uline (GTK_LABEL(label), wxGTK_CONV(m_text) ); | |
354aa1e3 RR |
799 | gtk_accel_label_refetch( GTK_ACCEL_LABEL(label) ); |
800 | } | |
98f29783 | 801 | |
98f29783 RR |
802 | guint accel_key; |
803 | GdkModifierType accel_mods; | |
98f29783 RR |
804 | gtk_accelerator_parse( (const char*) oldbuf, &accel_key, &accel_mods); |
805 | if (accel_key != 0) | |
806 | { | |
88d19775 | 807 | gtk_widget_remove_accelerator( GTK_WIDGET(m_menuItem), |
98f29783 RR |
808 | m_parentMenu->m_accel, |
809 | accel_key, | |
810 | accel_mods ); | |
811 | } | |
812 | ||
813 | wxCharBuffer buf = wxGTK_CONV( GetGtkHotKey(*this) ); | |
814 | gtk_accelerator_parse( (const char*) buf, &accel_key, &accel_mods); | |
815 | if (accel_key != 0) | |
816 | { | |
817 | gtk_widget_add_accelerator( GTK_WIDGET(m_menuItem), | |
818 | "activate", | |
819 | m_parentMenu->m_accel, | |
820 | accel_key, | |
821 | accel_mods, | |
822 | GTK_ACCEL_VISIBLE); | |
823 | } | |
354aa1e3 RR |
824 | } |
825 | ||
c626a8b7 | 826 | // it's valid for this function to be called even if m_menuItem == NULL |
974e8d94 | 827 | void wxMenuItem::DoSetText( const wxString& str ) |
716b7364 | 828 | { |
2b5f62a0 | 829 | // '\t' is the deliminator indicating a hot key |
010eb424 VZ |
830 | wxString text; |
831 | text.reserve(str.length()); | |
832 | ||
ab46dc18 | 833 | const wxChar *pc = str; |
2b5f62a0 | 834 | while ( (*pc != wxT('\0')) && (*pc != wxT('\t')) ) |
83624f79 | 835 | { |
2b5f62a0 | 836 | if ((*pc == wxT('&')) && (*(pc+1) == wxT('&'))) |
23280650 | 837 | { |
2b5f62a0 VZ |
838 | // "&" is doubled to indicate "&" instead of accelerator |
839 | ++pc; | |
010eb424 | 840 | text << wxT('&'); |
572d7461 | 841 | } |
2b5f62a0 | 842 | else if (*pc == wxT('&')) |
572d7461 | 843 | { |
010eb424 | 844 | text << wxT('_'); |
572d7461 | 845 | } |
2b5f62a0 VZ |
846 | else if ( *pc == wxT('_') ) // escape underscores |
847 | { | |
010eb424 | 848 | text << wxT("__"); |
2b5f62a0 | 849 | } |
9959e2b6 | 850 | else |
23280650 | 851 | { |
010eb424 | 852 | text << *pc; |
2b5f62a0 VZ |
853 | } |
854 | ++pc; | |
83624f79 | 855 | } |
a01fe3d6 | 856 | |
44014bcd | 857 | m_hotKey = wxEmptyString; |
9e691f46 | 858 | |
010eb424 | 859 | if ( *pc == wxT('\t') ) |
d7dbc98a KB |
860 | { |
861 | pc++; | |
862 | m_hotKey = pc; | |
863 | } | |
010eb424 VZ |
864 | |
865 | m_text = text; | |
716b7364 RR |
866 | } |
867 | ||
717a57c2 VZ |
868 | #if wxUSE_ACCEL |
869 | ||
870 | wxAcceleratorEntry *wxMenuItem::GetAccel() const | |
871 | { | |
1987af7e | 872 | if ( !GetHotKey() ) |
717a57c2 VZ |
873 | { |
874 | // nothing | |
d3b9f782 | 875 | return NULL; |
717a57c2 VZ |
876 | } |
877 | ||
90527a50 VZ |
878 | // accelerator parsing code looks for them after a TAB, so insert a dummy |
879 | // one here | |
717a57c2 | 880 | wxString label; |
1987af7e | 881 | label << wxT('\t') << GetHotKey(); |
717a57c2 | 882 | |
90527a50 | 883 | return wxAcceleratorEntry::Create(label); |
717a57c2 VZ |
884 | } |
885 | ||
886 | #endif // wxUSE_ACCEL | |
887 | ||
96fd301f | 888 | void wxMenuItem::Check( bool check ) |
716b7364 | 889 | { |
223d09f6 | 890 | wxCHECK_RET( m_menuItem, wxT("invalid menu item") ); |
db1b4961 | 891 | |
974e8d94 VZ |
892 | if (check == m_isChecked) |
893 | return; | |
2d17d68f | 894 | |
974e8d94 | 895 | wxMenuItemBase::Check( check ); |
0472ece7 | 896 | |
24bcaec3 | 897 | switch ( GetKind() ) |
0472ece7 | 898 | { |
24bcaec3 VZ |
899 | case wxITEM_CHECK: |
900 | case wxITEM_RADIO: | |
901 | gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check ); | |
902 | break; | |
903 | ||
904 | default: | |
905 | wxFAIL_MSG( _T("can't check this item") ); | |
0472ece7 | 906 | } |
716b7364 RR |
907 | } |
908 | ||
8bbe427f VZ |
909 | void wxMenuItem::Enable( bool enable ) |
910 | { | |
223d09f6 | 911 | wxCHECK_RET( m_menuItem, wxT("invalid menu item") ); |
db1b4961 | 912 | |
83624f79 | 913 | gtk_widget_set_sensitive( m_menuItem, enable ); |
974e8d94 | 914 | wxMenuItemBase::Enable( enable ); |
a9c96bcc RR |
915 | } |
916 | ||
96fd301f | 917 | bool wxMenuItem::IsChecked() const |
716b7364 | 918 | { |
44014bcd | 919 | wxCHECK_MSG( m_menuItem, false, wxT("invalid menu item") ); |
db1b4961 | 920 | |
44014bcd | 921 | wxCHECK_MSG( IsCheckable(), false, |
974e8d94 | 922 | wxT("can't get state of uncheckable item!") ); |
96fd301f | 923 | |
974e8d94 | 924 | return ((GtkCheckMenuItem*)m_menuItem)->active != 0; |
716b7364 RR |
925 | } |
926 | ||
db1b4961 | 927 | //----------------------------------------------------------------------------- |
83624f79 | 928 | // wxMenu |
db1b4961 RR |
929 | //----------------------------------------------------------------------------- |
930 | ||
c801d85f KB |
931 | IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler) |
932 | ||
717a57c2 | 933 | void wxMenu::Init() |
c801d85f | 934 | { |
034be888 | 935 | m_accel = gtk_accel_group_new(); |
6d971354 | 936 | m_menu = gtk_menu_new(); |
defc0789 VS |
937 | // NB: keep reference to the menu so that it is not destroyed behind |
938 | // our back by GTK+ e.g. when it is removed from menubar: | |
939 | gtk_widget_ref(m_menu); | |
8bbe427f | 940 | |
d3b9f782 | 941 | m_owner = NULL; |
2b2edbed | 942 | |
d9e403cc RR |
943 | // Tearoffs are entries, just like separators. So if we want this |
944 | // menu to be a tear-off one, we just append a tearoff entry | |
945 | // immediately. | |
9959e2b6 | 946 | if ( m_style & wxMENU_TEAROFF ) |
2b2edbed | 947 | { |
9959e2b6 | 948 | GtkWidget *tearoff = gtk_tearoff_menu_item_new(); |
6d971354 | 949 | |
9959e2b6 VZ |
950 | gtk_menu_append(GTK_MENU(m_menu), tearoff); |
951 | } | |
6d971354 | 952 | |
9959e2b6 | 953 | m_prevRadio = NULL; |
c801d85f | 954 | |
717a57c2 | 955 | // append the title as the very first entry if we have it |
9959e2b6 | 956 | if ( !m_title.empty() ) |
d1b15f03 | 957 | { |
9959e2b6 | 958 | Append(wxGTK_TITLE_ID, m_title); |
717a57c2 | 959 | AppendSeparator(); |
d1b15f03 | 960 | } |
717a57c2 | 961 | } |
15a2076a | 962 | |
717a57c2 VZ |
963 | wxMenu::~wxMenu() |
964 | { | |
222ed1d6 | 965 | WX_CLEAR_LIST(wxMenuItemList, m_items); |
f03ec224 | 966 | |
368a4a47 | 967 | if ( GTK_IS_WIDGET( m_menu )) |
defc0789 | 968 | { |
a761df69 | 969 | // see wxMenu::Init |
88d19775 | 970 | gtk_widget_unref( m_menu ); |
a761df69 VS |
971 | // if the menu is inserted in another menu at this time, there was |
972 | // one more reference to it: | |
973 | if ( m_owner ) | |
974 | gtk_widget_destroy( m_menu ); | |
defc0789 | 975 | } |
c2dd8380 GL |
976 | } |
977 | ||
49826dab | 978 | bool wxMenu::GtkAppend(wxMenuItem *mitem, int pos) |
c2dd8380 | 979 | { |
717a57c2 | 980 | GtkWidget *menuItem; |
96fd301f | 981 | |
e31126cb | 982 | wxString text; |
44014bcd | 983 | GtkLabel* label = NULL; |
e31126cb | 984 | |
717a57c2 VZ |
985 | if ( mitem->IsSeparator() ) |
986 | { | |
6d971354 RR |
987 | // TODO |
988 | menuItem = gtk_menu_item_new(); | |
837904f2 | 989 | } |
71628a57 | 990 | else if (mitem->GetBitmap().Ok()) |
37d403aa | 991 | { |
9c895994 | 992 | text = mitem->wxMenuItemBase::GetItemLabel(); |
cc47eed9 | 993 | const wxBitmap *bitmap = &mitem->GetBitmap(); |
9959e2b6 | 994 | |
88a7a4e1 | 995 | // TODO |
5fd420ed JS |
996 | wxUnusedVar(bitmap); |
997 | menuItem = gtk_menu_item_new_with_label( wxGTK_CONV( text ) ); | |
998 | label = GTK_LABEL( GTK_BIN(menuItem)->child ); | |
6d971354 RR |
999 | |
1000 | m_prevRadio = NULL; | |
1001 | } | |
717a57c2 VZ |
1002 | else // a normal item |
1003 | { | |
52af3158 | 1004 | // text has "_" instead of "&" after mitem->SetItemLabel() so don't use it |
84c51319 | 1005 | text = mitem->wxMenuItemBase::GetItemLabel() ; |
717a57c2 | 1006 | |
d65c269b VZ |
1007 | switch ( mitem->GetKind() ) |
1008 | { | |
546bfbea | 1009 | case wxITEM_CHECK: |
6d971354 | 1010 | { |
6d971354 | 1011 | menuItem = gtk_check_menu_item_new_with_label( wxGTK_CONV( text ) ); |
e31126cb | 1012 | label = GTK_LABEL( GTK_BIN(menuItem)->child ); |
6d971354 RR |
1013 | // set new text |
1014 | gtk_label_set_text( label, wxGTK_CONV( text ) ); | |
6d971354 | 1015 | m_prevRadio = NULL; |
d65c269b | 1016 | break; |
6d971354 | 1017 | } |
d65c269b | 1018 | |
546bfbea | 1019 | case wxITEM_RADIO: |
6d971354 RR |
1020 | { |
1021 | GSList *group = NULL; | |
1022 | if ( m_prevRadio == NULL ) | |
d65c269b VZ |
1023 | { |
1024 | // start of a new radio group | |
6d971354 | 1025 | m_prevRadio = menuItem = gtk_radio_menu_item_new_with_label( group, wxGTK_CONV( text ) ); |
e31126cb | 1026 | label = GTK_LABEL( GTK_BIN(menuItem)->child ); |
6d971354 RR |
1027 | // set new text |
1028 | gtk_label_set_text( label, wxGTK_CONV( text ) ); | |
d65c269b VZ |
1029 | } |
1030 | else // continue the radio group | |
1031 | { | |
6d971354 RR |
1032 | group = gtk_radio_menu_item_group (GTK_RADIO_MENU_ITEM (m_prevRadio)); |
1033 | m_prevRadio = menuItem = gtk_radio_menu_item_new_with_label( group, wxGTK_CONV( text ) ); | |
e31126cb | 1034 | label = GTK_LABEL( GTK_BIN(menuItem)->child ); |
d65c269b | 1035 | } |
c0d0a552 | 1036 | break; |
6d971354 | 1037 | } |
d65c269b VZ |
1038 | |
1039 | default: | |
1040 | wxFAIL_MSG( _T("unexpected menu item kind") ); | |
1041 | // fall through | |
1042 | ||
546bfbea | 1043 | case wxITEM_NORMAL: |
6d971354 | 1044 | { |
6d971354 | 1045 | menuItem = gtk_menu_item_new_with_label( wxGTK_CONV( text ) ); |
e31126cb | 1046 | label = GTK_LABEL( GTK_BIN(menuItem)->child ); |
6d971354 | 1047 | m_prevRadio = NULL; |
d65c269b | 1048 | break; |
6d971354 | 1049 | } |
d65c269b VZ |
1050 | } |
1051 | ||
6d971354 | 1052 | } |
9959e2b6 | 1053 | |
6d971354 RR |
1054 | guint accel_key; |
1055 | GdkModifierType accel_mods; | |
98f29783 | 1056 | wxCharBuffer buf = wxGTK_CONV( GetGtkHotKey(*mitem) ); |
9959e2b6 | 1057 | |
52af3158 | 1058 | // wxPrintf( wxT("item: %s hotkey %s\n"), mitem->GetItemLabel().c_str(), GetGtkHotKey(*mitem).c_str() ); |
6d971354 RR |
1059 | gtk_accelerator_parse( (const char*) buf, &accel_key, &accel_mods); |
1060 | if (accel_key != 0) | |
1061 | { | |
9959e2b6 VZ |
1062 | gtk_widget_add_accelerator (GTK_WIDGET(menuItem), |
1063 | "activate", | |
6d971354 | 1064 | m_accel, |
9959e2b6 | 1065 | accel_key, |
6d971354 RR |
1066 | accel_mods, |
1067 | GTK_ACCEL_VISIBLE); | |
717a57c2 | 1068 | } |
9959e2b6 | 1069 | |
e31126cb RR |
1070 | if (pos == -1) |
1071 | gtk_menu_shell_append(GTK_MENU_SHELL(m_menu), menuItem); | |
1072 | else | |
1073 | gtk_menu_shell_insert(GTK_MENU_SHELL(m_menu), menuItem, pos); | |
1074 | ||
6d971354 | 1075 | gtk_widget_show( menuItem ); |
23280650 | 1076 | |
717a57c2 VZ |
1077 | if ( !mitem->IsSeparator() ) |
1078 | { | |
2b5f62a0 | 1079 | wxASSERT_MSG( menuItem, wxT("invalid menuitem") ); |
a01fe3d6 | 1080 | |
717a57c2 VZ |
1081 | gtk_signal_connect( GTK_OBJECT(menuItem), "select", |
1082 | GTK_SIGNAL_FUNC(gtk_menu_hilight_callback), | |
1083 | (gpointer)this ); | |
837904f2 | 1084 | |
717a57c2 VZ |
1085 | gtk_signal_connect( GTK_OBJECT(menuItem), "deselect", |
1086 | GTK_SIGNAL_FUNC(gtk_menu_nolight_callback), | |
1087 | (gpointer)this ); | |
e31126cb | 1088 | |
88d19775 MR |
1089 | if ( mitem->IsSubMenu() && mitem->GetKind() != wxITEM_RADIO && mitem->GetKind() != wxITEM_CHECK ) |
1090 | { | |
e31126cb RR |
1091 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), mitem->GetSubMenu()->m_menu ); |
1092 | ||
1093 | gtk_widget_show( mitem->GetSubMenu()->m_menu ); | |
1094 | ||
1095 | // if adding a submenu to a menu already existing in the menu bar, we | |
1096 | // must set invoking window to allow processing events from this | |
1097 | // submenu | |
1098 | if ( m_invokingWindow ) | |
1099 | wxMenubarSetInvokingWindow(mitem->GetSubMenu(), m_invokingWindow); | |
88d19775 MR |
1100 | } |
1101 | else | |
1102 | { | |
e31126cb | 1103 | gtk_signal_connect( GTK_OBJECT(menuItem), "activate", |
88d19775 MR |
1104 | GTK_SIGNAL_FUNC(gtk_menu_clicked_callback), |
1105 | (gpointer)this ); | |
1106 | } | |
1107 | ||
e31126cb RR |
1108 | guint accel_key = gtk_label_parse_uline (GTK_LABEL(label), wxGTK_CONV( text ) ); |
1109 | if (accel_key != GDK_VoidSymbol) | |
1110 | { | |
1111 | gtk_widget_add_accelerator (menuItem, | |
88d19775 MR |
1112 | "activate_item", |
1113 | gtk_menu_ensure_uline_accel_group(GTK_MENU(m_menu)), | |
1114 | accel_key, | |
1115 | GDK_MOD1_MASK, | |
1116 | GTK_ACCEL_LOCKED); | |
1117 | } | |
717a57c2 | 1118 | } |
23280650 | 1119 | |
837904f2 | 1120 | mitem->SetMenuItem(menuItem); |
837904f2 | 1121 | |
6d971354 | 1122 | if (ms_locked) |
d65c269b | 1123 | { |
6d971354 RR |
1124 | // This doesn't even exist! |
1125 | // gtk_widget_lock_accelerators(mitem->GetMenuItem()); | |
d65c269b | 1126 | } |
d65c269b | 1127 | |
44014bcd | 1128 | return true; |
6de97a3b | 1129 | } |
c801d85f | 1130 | |
9add9367 | 1131 | wxMenuItem* wxMenu::DoAppend(wxMenuItem *mitem) |
828f655f | 1132 | { |
9add9367 RD |
1133 | if (!GtkAppend(mitem)) |
1134 | return NULL; | |
9959e2b6 | 1135 | |
9add9367 | 1136 | return wxMenuBase::DoAppend(mitem); |
c33c4050 RR |
1137 | } |
1138 | ||
9add9367 | 1139 | wxMenuItem* wxMenu::DoInsert(size_t pos, wxMenuItem *item) |
c33c4050 | 1140 | { |
717a57c2 | 1141 | if ( !wxMenuBase::DoInsert(pos, item) ) |
9add9367 | 1142 | return NULL; |
c626a8b7 | 1143 | |
6d971354 | 1144 | // TODO |
49826dab | 1145 | if ( !GtkAppend(item, (int)pos) ) |
9add9367 | 1146 | return NULL; |
32db328c | 1147 | |
9add9367 | 1148 | return item; |
c33c4050 RR |
1149 | } |
1150 | ||
717a57c2 | 1151 | wxMenuItem *wxMenu::DoRemove(wxMenuItem *item) |
c33c4050 | 1152 | { |
717a57c2 | 1153 | if ( !wxMenuBase::DoRemove(item) ) |
d3b9f782 | 1154 | return NULL; |
c626a8b7 | 1155 | |
717a57c2 VZ |
1156 | // TODO: this code doesn't delete the item factory item and this seems |
1157 | // impossible as of GTK 1.2.6. | |
1158 | gtk_widget_destroy( item->GetMenuItem() ); | |
c626a8b7 | 1159 | |
717a57c2 | 1160 | return item; |
c33c4050 RR |
1161 | } |
1162 | ||
96fd301f VZ |
1163 | int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const |
1164 | { | |
222ed1d6 | 1165 | wxMenuItemList::compatibility_iterator node = m_items.GetFirst(); |
83624f79 RR |
1166 | while (node) |
1167 | { | |
b1d4dd7a | 1168 | wxMenuItem *item = node->GetData(); |
83624f79 | 1169 | if (item->GetMenuItem() == menuItem) |
88d19775 | 1170 | return item->GetId(); |
b1d4dd7a | 1171 | node = node->GetNext(); |
83624f79 | 1172 | } |
96fd301f | 1173 | |
c626a8b7 | 1174 | return wxNOT_FOUND; |
6de97a3b | 1175 | } |
c801d85f | 1176 | |
717a57c2 VZ |
1177 | // ---------------------------------------------------------------------------- |
1178 | // helpers | |
1179 | // ---------------------------------------------------------------------------- | |
1180 | ||
6d971354 | 1181 | #if wxUSE_ACCEL |
a070d8ce | 1182 | |
98f29783 | 1183 | static wxString GetGtkHotKey( const wxMenuItem& item ) |
c801d85f | 1184 | { |
717a57c2 VZ |
1185 | wxString hotkey; |
1186 | ||
1187 | wxAcceleratorEntry *accel = item.GetAccel(); | |
1188 | if ( accel ) | |
83624f79 | 1189 | { |
717a57c2 VZ |
1190 | int flags = accel->GetFlags(); |
1191 | if ( flags & wxACCEL_ALT ) | |
1192 | hotkey += wxT("<alt>"); | |
1193 | if ( flags & wxACCEL_CTRL ) | |
1194 | hotkey += wxT("<control>"); | |
1195 | if ( flags & wxACCEL_SHIFT ) | |
1196 | hotkey += wxT("<shift>"); | |
1197 | ||
1198 | int code = accel->GetKeyCode(); | |
1199 | switch ( code ) | |
c626a8b7 | 1200 | { |
717a57c2 VZ |
1201 | case WXK_F1: |
1202 | case WXK_F2: | |
1203 | case WXK_F3: | |
1204 | case WXK_F4: | |
1205 | case WXK_F5: | |
1206 | case WXK_F6: | |
1207 | case WXK_F7: | |
1208 | case WXK_F8: | |
1209 | case WXK_F9: | |
1210 | case WXK_F10: | |
1211 | case WXK_F11: | |
1212 | case WXK_F12: | |
bbcd4085 RR |
1213 | case WXK_F13: |
1214 | case WXK_F14: | |
1215 | case WXK_F15: | |
1216 | case WXK_F16: | |
1217 | case WXK_F17: | |
1218 | case WXK_F18: | |
1219 | case WXK_F19: | |
1220 | case WXK_F20: | |
1221 | case WXK_F21: | |
1222 | case WXK_F22: | |
1223 | case WXK_F23: | |
1224 | case WXK_F24: | |
04cc1e93 | 1225 | hotkey += wxString::Format(wxT("F%d"), code - WXK_F1 + 1); |
717a57c2 | 1226 | break; |
2368dcda | 1227 | |
a070d8ce VZ |
1228 | // TODO: we should use gdk_keyval_name() (a.k.a. |
1229 | // XKeysymToString) here as well as hardcoding the keysym | |
1230 | // names this might be not portable | |
bbcd4085 | 1231 | case WXK_INSERT: |
3ca6a5f0 BP |
1232 | hotkey << wxT("Insert" ); |
1233 | break; | |
1234 | case WXK_DELETE: | |
1235 | hotkey << wxT("Delete" ); | |
1236 | break; | |
2b5f62a0 VZ |
1237 | case WXK_UP: |
1238 | hotkey << wxT("Up" ); | |
1239 | break; | |
1240 | case WXK_DOWN: | |
1241 | hotkey << wxT("Down" ); | |
1242 | break; | |
1243 | case WXK_PAGEUP: | |
f005ea42 | 1244 | hotkey << wxT("Page_Up" ); |
2b5f62a0 VZ |
1245 | break; |
1246 | case WXK_PAGEDOWN: | |
f005ea42 | 1247 | hotkey << wxT("Page_Down" ); |
2b5f62a0 VZ |
1248 | break; |
1249 | case WXK_LEFT: | |
1250 | hotkey << wxT("Left" ); | |
1251 | break; | |
1252 | case WXK_RIGHT: | |
1253 | hotkey << wxT("Right" ); | |
1254 | break; | |
1255 | case WXK_HOME: | |
1256 | hotkey << wxT("Home" ); | |
1257 | break; | |
1258 | case WXK_END: | |
1259 | hotkey << wxT("End" ); | |
1260 | break; | |
1261 | case WXK_RETURN: | |
1262 | hotkey << wxT("Return" ); | |
1263 | break; | |
bbcd4085 RR |
1264 | case WXK_BACK: |
1265 | hotkey << wxT("BackSpace" ); | |
1266 | break; | |
1267 | case WXK_TAB: | |
1268 | hotkey << wxT("Tab" ); | |
1269 | break; | |
1270 | case WXK_ESCAPE: | |
1271 | hotkey << wxT("Esc" ); | |
1272 | break; | |
1273 | case WXK_SPACE: | |
1274 | hotkey << wxT("space" ); | |
1275 | break; | |
1276 | case WXK_MULTIPLY: | |
1277 | hotkey << wxT("Multiply" ); | |
1278 | break; | |
1279 | case WXK_ADD: | |
1280 | hotkey << wxT("Add" ); | |
1281 | break; | |
1282 | case WXK_SEPARATOR: | |
1283 | hotkey << wxT("Separator" ); | |
1284 | break; | |
1285 | case WXK_SUBTRACT: | |
1286 | hotkey << wxT("Subtract" ); | |
1287 | break; | |
1288 | case WXK_DECIMAL: | |
1289 | hotkey << wxT("Decimal" ); | |
1290 | break; | |
1291 | case WXK_DIVIDE: | |
1292 | hotkey << wxT("Divide" ); | |
1293 | break; | |
1294 | case WXK_CANCEL: | |
1295 | hotkey << wxT("Cancel" ); | |
1296 | break; | |
1297 | case WXK_CLEAR: | |
1298 | hotkey << wxT("Clear" ); | |
1299 | break; | |
1300 | case WXK_MENU: | |
1301 | hotkey << wxT("Menu" ); | |
1302 | break; | |
1303 | case WXK_PAUSE: | |
1304 | hotkey << wxT("Pause" ); | |
1305 | break; | |
1306 | case WXK_CAPITAL: | |
1307 | hotkey << wxT("Capital" ); | |
1308 | break; | |
1309 | case WXK_SELECT: | |
1310 | hotkey << wxT("Select" ); | |
1311 | break; | |
1312 | case WXK_PRINT: | |
1313 | hotkey << wxT("Print" ); | |
1314 | break; | |
1315 | case WXK_EXECUTE: | |
1316 | hotkey << wxT("Execute" ); | |
1317 | break; | |
1318 | case WXK_SNAPSHOT: | |
1319 | hotkey << wxT("Snapshot" ); | |
1320 | break; | |
1321 | case WXK_HELP: | |
1322 | hotkey << wxT("Help" ); | |
1323 | break; | |
1324 | case WXK_NUMLOCK: | |
1325 | hotkey << wxT("Num_Lock" ); | |
1326 | break; | |
1327 | case WXK_SCROLL: | |
1328 | hotkey << wxT("Scroll_Lock" ); | |
1329 | break; | |
1330 | case WXK_NUMPAD_INSERT: | |
1331 | hotkey << wxT("KP_Insert" ); | |
1332 | break; | |
1333 | case WXK_NUMPAD_DELETE: | |
1334 | hotkey << wxT("KP_Delete" ); | |
1335 | break; | |
1336 | case WXK_NUMPAD_SPACE: | |
1337 | hotkey << wxT("KP_Space" ); | |
1338 | break; | |
1339 | case WXK_NUMPAD_TAB: | |
1340 | hotkey << wxT("KP_Tab" ); | |
1341 | break; | |
1342 | case WXK_NUMPAD_ENTER: | |
1343 | hotkey << wxT("KP_Enter" ); | |
1344 | break; | |
1345 | case WXK_NUMPAD_F1: case WXK_NUMPAD_F2: case WXK_NUMPAD_F3: | |
1346 | case WXK_NUMPAD_F4: | |
1347 | hotkey += wxString::Format(wxT("KP_F%d"), code - WXK_NUMPAD_F1 + 1); | |
1348 | break; | |
1349 | case WXK_NUMPAD_HOME: | |
1350 | hotkey << wxT("KP_Home" ); | |
1351 | break; | |
1352 | case WXK_NUMPAD_LEFT: | |
1353 | hotkey << wxT("KP_Left" ); | |
1354 | break; | |
1355 | case WXK_NUMPAD_UP: | |
1356 | hotkey << wxT("KP_Up" ); | |
1357 | break; | |
1358 | case WXK_NUMPAD_RIGHT: | |
1359 | hotkey << wxT("KP_Right" ); | |
1360 | break; | |
1361 | case WXK_NUMPAD_DOWN: | |
1362 | hotkey << wxT("KP_Down" ); | |
1363 | break; | |
aee12bfb | 1364 | case WXK_NUMPAD_PAGEUP: |
f005ea42 | 1365 | hotkey << wxT("KP_Page_Up" ); |
bbcd4085 | 1366 | break; |
aee12bfb | 1367 | case WXK_NUMPAD_PAGEDOWN: |
f005ea42 | 1368 | hotkey << wxT("KP_Page_Down" ); |
bbcd4085 RR |
1369 | break; |
1370 | case WXK_NUMPAD_END: | |
1371 | hotkey << wxT("KP_End" ); | |
1372 | break; | |
1373 | case WXK_NUMPAD_BEGIN: | |
1374 | hotkey << wxT("KP_Begin" ); | |
1375 | break; | |
1376 | case WXK_NUMPAD_EQUAL: | |
1377 | hotkey << wxT("KP_Equal" ); | |
1378 | break; | |
1379 | case WXK_NUMPAD_MULTIPLY: | |
1380 | hotkey << wxT("KP_Multiply" ); | |
1381 | break; | |
1382 | case WXK_NUMPAD_ADD: | |
1383 | hotkey << wxT("KP_Add" ); | |
1384 | break; | |
1385 | case WXK_NUMPAD_SEPARATOR: | |
1386 | hotkey << wxT("KP_Separator" ); | |
1387 | break; | |
1388 | case WXK_NUMPAD_SUBTRACT: | |
1389 | hotkey << wxT("KP_Subtract" ); | |
1390 | break; | |
1391 | case WXK_NUMPAD_DECIMAL: | |
1392 | hotkey << wxT("KP_Decimal" ); | |
1393 | break; | |
1394 | case WXK_NUMPAD_DIVIDE: | |
1395 | hotkey << wxT("KP_Divide" ); | |
1396 | break; | |
1397 | case WXK_NUMPAD0: case WXK_NUMPAD1: case WXK_NUMPAD2: | |
1398 | case WXK_NUMPAD3: case WXK_NUMPAD4: case WXK_NUMPAD5: | |
1399 | case WXK_NUMPAD6: case WXK_NUMPAD7: case WXK_NUMPAD8: case WXK_NUMPAD9: | |
1400 | hotkey += wxString::Format(wxT("KP_%d"), code - WXK_NUMPAD0); | |
1401 | break; | |
1402 | case WXK_WINDOWS_LEFT: | |
1403 | hotkey << wxT("Super_L" ); | |
1404 | break; | |
1405 | case WXK_WINDOWS_RIGHT: | |
1406 | hotkey << wxT("Super_R" ); | |
1407 | break; | |
1408 | case WXK_WINDOWS_MENU: | |
1409 | hotkey << wxT("Menu" ); | |
1410 | break; | |
1411 | case WXK_COMMAND: | |
1412 | hotkey << wxT("Command" ); | |
1413 | break; | |
1414 | /* These probably wouldn't work as there is no SpecialX in gdk/keynames.txt | |
88d19775 MR |
1415 | case WXK_SPECIAL1: case WXK_SPECIAL2: case WXK_SPECIAL3: case WXK_SPECIAL4: |
1416 | case WXK_SPECIAL5: case WXK_SPECIAL6: case WXK_SPECIAL7: case WXK_SPECIAL8: | |
1417 | case WXK_SPECIAL9: case WXK_SPECIAL10: case WXK_SPECIAL11: case WXK_SPECIAL12: | |
1418 | case WXK_SPECIAL13: case WXK_SPECIAL14: case WXK_SPECIAL15: case WXK_SPECIAL16: | |
bbcd4085 RR |
1419 | case WXK_SPECIAL17: case WXK_SPECIAL18: case WXK_SPECIAL19: case WXK_SPECIAL20: |
1420 | hotkey += wxString::Format(wxT("Special%d"), code - WXK_SPECIAL1 + 1); | |
1421 | break; | |
1422 | */ | |
90527a50 | 1423 | // if there are any other keys wxAcceleratorEntry::Create() may |
a070d8ce | 1424 | // return, we should process them here |
8bbe427f | 1425 | |
717a57c2 | 1426 | default: |
a070d8ce | 1427 | if ( code < 127 ) |
717a57c2 | 1428 | { |
2b5f62a0 | 1429 | wxString name = wxGTK_CONV_BACK( gdk_keyval_name((guint)code) ); |
316ef03b | 1430 | if ( !name.empty() ) |
a070d8ce VZ |
1431 | { |
1432 | hotkey << name; | |
1433 | break; | |
1434 | } | |
717a57c2 | 1435 | } |
c801d85f | 1436 | |
717a57c2 VZ |
1437 | wxFAIL_MSG( wxT("unknown keyboard accel") ); |
1438 | } | |
c801d85f | 1439 | |
717a57c2 | 1440 | delete accel; |
631f1bfe | 1441 | } |
717a57c2 VZ |
1442 | |
1443 | return hotkey; | |
631f1bfe | 1444 | } |
a070d8ce | 1445 | |
717a57c2 | 1446 | #endif // wxUSE_ACCEL |
43a11e2a VZ |
1447 | |
1448 | // ---------------------------------------------------------------------------- | |
1449 | // Pop-up menu stuff | |
1450 | // ---------------------------------------------------------------------------- | |
1451 | ||
1452 | #if wxUSE_MENUS_NATIVE | |
1453 | ||
81939780 | 1454 | extern "C" WXDLLIMPEXP_CORE |
43a11e2a VZ |
1455 | void gtk_pop_hide_callback( GtkWidget *WXUNUSED(widget), bool* is_waiting ) |
1456 | { | |
670f9935 | 1457 | *is_waiting = false; |
43a11e2a VZ |
1458 | } |
1459 | ||
81939780 | 1460 | WXDLLIMPEXP_CORE void SetInvokingWindow( wxMenu *menu, wxWindow* win ) |
43a11e2a VZ |
1461 | { |
1462 | menu->SetInvokingWindow( win ); | |
1463 | ||
1464 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); | |
1465 | while (node) | |
1466 | { | |
1467 | wxMenuItem *menuitem = node->GetData(); | |
1468 | if (menuitem->IsSubMenu()) | |
1469 | { | |
1470 | SetInvokingWindow( menuitem->GetSubMenu(), win ); | |
1471 | } | |
1472 | ||
1473 | node = node->GetNext(); | |
1474 | } | |
1475 | } | |
1476 | ||
81939780 | 1477 | extern "C" WXDLLIMPEXP_CORE |
43a11e2a VZ |
1478 | void wxPopupMenuPositionCallback( GtkMenu *menu, |
1479 | gint *x, gint *y, | |
43a11e2a VZ |
1480 | gpointer user_data ) |
1481 | { | |
1482 | // ensure that the menu appears entirely on screen | |
1483 | GtkRequisition req; | |
1484 | gtk_widget_get_child_requisition(GTK_WIDGET(menu), &req); | |
1485 | ||
1486 | wxSize sizeScreen = wxGetDisplaySize(); | |
1487 | wxPoint *pos = (wxPoint*)user_data; | |
1488 | ||
1489 | gint xmax = sizeScreen.x - req.width, | |
1490 | ymax = sizeScreen.y - req.height; | |
1491 | ||
1492 | *x = pos->x < xmax ? pos->x : xmax; | |
1493 | *y = pos->y < ymax ? pos->y : ymax; | |
1494 | } | |
1495 | ||
1496 | bool wxWindowGTK::DoPopupMenu( wxMenu *menu, int x, int y ) | |
1497 | { | |
1498 | wxCHECK_MSG( m_widget != NULL, false, wxT("invalid window") ); | |
1499 | ||
1500 | wxCHECK_MSG( menu != NULL, false, wxT("invalid popup-menu") ); | |
1501 | ||
1502 | // NOTE: if you change this code, you need to update | |
1503 | // the same code in taskbar.cpp as well. This | |
1504 | // is ugly code duplication, I know. | |
1505 | ||
1506 | SetInvokingWindow( menu, this ); | |
1507 | ||
1508 | menu->UpdateUI(); | |
1509 | ||
1510 | bool is_waiting = true; | |
1511 | ||
1512 | gulong handler = gtk_signal_connect( GTK_OBJECT(menu->m_menu), | |
1513 | "hide", | |
1514 | GTK_SIGNAL_FUNC(gtk_pop_hide_callback), | |
1515 | (gpointer)&is_waiting ); | |
1516 | ||
1517 | wxPoint pos; | |
1518 | gpointer userdata; | |
1519 | GtkMenuPositionFunc posfunc; | |
1520 | if ( x == -1 && y == -1 ) | |
1521 | { | |
1522 | // use GTK's default positioning algorithm | |
1523 | userdata = NULL; | |
1524 | posfunc = NULL; | |
1525 | } | |
1526 | else | |
1527 | { | |
1528 | pos = ClientToScreen(wxPoint(x, y)); | |
1529 | userdata = &pos; | |
1530 | posfunc = wxPopupMenuPositionCallback; | |
1531 | } | |
1532 | ||
1533 | wxMenuEvent eventOpen(wxEVT_MENU_OPEN, -1, menu); | |
1534 | DoCommonMenuCallbackCode(menu, eventOpen); | |
1535 | ||
1536 | gtk_menu_popup( | |
1537 | GTK_MENU(menu->m_menu), | |
d3b9f782 VZ |
1538 | NULL, // parent menu shell |
1539 | NULL, // parent menu item | |
43a11e2a VZ |
1540 | posfunc, // function to position it |
1541 | userdata, // client data | |
1542 | 0, // button used to activate it | |
defdd888 | 1543 | wxGtkTimeLastClick // the time of activation |
43a11e2a VZ |
1544 | ); |
1545 | ||
1546 | while (is_waiting) | |
1547 | { | |
1548 | gtk_main_iteration(); | |
1549 | } | |
1550 | ||
1551 | gtk_signal_disconnect(GTK_OBJECT(menu->m_menu), handler); | |
1552 | ||
1553 | wxMenuEvent eventClose(wxEVT_MENU_CLOSE, -1, menu); | |
1554 | DoCommonMenuCallbackCode(menu, eventClose); | |
1555 | ||
1556 | return true; | |
1557 | } | |
1558 | ||
1559 | #endif // wxUSE_MENUS_NATIVE |