]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
88a7a4e1 | 2 | // Name: src/gtk/menu.cpp |
28fcfbfe | 3 | // Purpose: implementation of wxMenuBar and wxMenu classes for wxGTK |
c801d85f | 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 | ||
28fcfbfe VZ |
13 | #if wxUSE_MENUS |
14 | ||
e1bf3ad3 | 15 | #include "wx/menu.h" |
88a7a4e1 WS |
16 | |
17 | #ifndef WX_PRECOMP | |
18 | #include "wx/intl.h" | |
e4db172a | 19 | #include "wx/log.h" |
d281df50 | 20 | #include "wx/frame.h" |
0bca0373 | 21 | #include "wx/bitmap.h" |
7d02e0d6 | 22 | #include "wx/app.h" |
88a7a4e1 WS |
23 | #endif |
24 | ||
d281df50 | 25 | #include "wx/accel.h" |
ab73fe8d | 26 | #include "wx/stockitem.h" |
9e691f46 | 27 | #include "wx/gtk/private.h" |
b1f17bf0 | 28 | #include "wx/gtk/private/mnemonics.h" |
9e691f46 | 29 | |
9959e2b6 VZ |
30 | // we use normal item but with a special id for the menu title |
31 | static const int wxGTK_TITLE_ID = -3; | |
32 | ||
5e6f2fe9 VZ |
33 | // forward declare it as it's used by wxMenuBar too when using Hildon |
34 | extern "C" | |
35 | { | |
e2147e6d | 36 | static void menuitem_activate(GtkWidget*, wxMenuItem* item); |
5e6f2fe9 | 37 | } |
6c76d1ce | 38 | |
6d971354 | 39 | #if wxUSE_ACCEL |
1deef997 | 40 | static void wxGetGtkAccel(const wxMenuItem*, guint*, GdkModifierType*); |
717a57c2 VZ |
41 | #endif |
42 | ||
cdf003d4 | 43 | static void DoCommonMenuCallbackCode(wxMenu *menu, wxMenuEvent& event) |
e6396ed4 | 44 | { |
e6396ed4 JS |
45 | event.SetEventObject( menu ); |
46 | ||
a01fe3d6 | 47 | wxEvtHandler* handler = menu->GetEventHandler(); |
937013e0 | 48 | if (handler && handler->SafelyProcessEvent(event)) |
e6396ed4 JS |
49 | return; |
50 | ||
51 | wxWindow *win = menu->GetInvokingWindow(); | |
cdf003d4 | 52 | if (win) |
937013e0 | 53 | win->HandleWindowEvent( event ); |
cdf003d4 VZ |
54 | } |
55 | ||
c801d85f KB |
56 | //----------------------------------------------------------------------------- |
57 | // wxMenuBar | |
58 | //----------------------------------------------------------------------------- | |
59 | ||
60 | IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow) | |
61 | ||
294ea16d | 62 | void wxMenuBar::Init(size_t n, wxMenu *menus[], const wxString titles[], long style) |
3502e687 | 63 | { |
e8375af8 | 64 | m_invokingWindow = NULL; |
23280650 | 65 | |
e2f3bc41 VZ |
66 | #if wxUSE_LIBHILDON |
67 | // Hildon window uses a single menu instead of a menu bar, so wxMenuBar is | |
68 | // the same as menu in this case | |
69 | m_widget = | |
70 | m_menubar = gtk_menu_new(); | |
71 | #else // !wxUSE_LIBHILDON | |
e8375af8 VZ |
72 | if (!PreCreation( NULL, wxDefaultPosition, wxDefaultSize ) || |
73 | !CreateBase( NULL, -1, wxDefaultPosition, wxDefaultSize, style, wxDefaultValidator, wxT("menubar") )) | |
4dcaf11a | 74 | { |
223d09f6 | 75 | wxFAIL_MSG( wxT("wxMenuBar creation failed") ); |
455fadaa | 76 | return; |
4dcaf11a | 77 | } |
3502e687 | 78 | |
3502e687 RR |
79 | m_menubar = gtk_menu_bar_new(); |
80 | ||
81 | if (style & wxMB_DOCKABLE) | |
82 | { | |
83 | m_widget = gtk_handle_box_new(); | |
10bd1f7d PC |
84 | gtk_container_add(GTK_CONTAINER(m_widget), m_menubar); |
85 | gtk_widget_show(m_menubar); | |
3502e687 RR |
86 | } |
87 | else | |
88 | { | |
10bd1f7d | 89 | m_widget = m_menubar; |
3502e687 RR |
90 | } |
91 | ||
92 | PostCreation(); | |
c4608a8a | 93 | |
db434467 | 94 | ApplyWidgetStyle(); |
e2f3bc41 | 95 | #endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON |
294ea16d VZ |
96 | |
97 | for (size_t i = 0; i < n; ++i ) | |
98 | Append(menus[i], titles[i]); | |
3502e687 RR |
99 | } |
100 | ||
294ea16d | 101 | wxMenuBar::wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style) |
c801d85f | 102 | { |
294ea16d VZ |
103 | Init(n, menus, titles, style); |
104 | } | |
96fd301f | 105 | |
294ea16d VZ |
106 | wxMenuBar::wxMenuBar(long style) |
107 | { | |
108 | Init(0, NULL, NULL, style); | |
109 | } | |
c4608a8a | 110 | |
294ea16d VZ |
111 | wxMenuBar::wxMenuBar() |
112 | { | |
113 | Init(0, NULL, NULL, 0); | |
6de97a3b | 114 | } |
c801d85f | 115 | |
1e133b7d RR |
116 | wxMenuBar::~wxMenuBar() |
117 | { | |
1e133b7d RR |
118 | } |
119 | ||
8ef9a526 PC |
120 | static void |
121 | wxMenubarUnsetInvokingWindow(wxMenu* menu, wxWindow* win, GtkWindow* tlw = NULL) | |
5bd9e519 RR |
122 | { |
123 | menu->SetInvokingWindow( (wxWindow*) NULL ); | |
124 | ||
05b743ba | 125 | // support for native hot keys |
8ef9a526 PC |
126 | if (menu->m_accel) |
127 | { | |
128 | if (tlw == NULL) | |
129 | tlw = GTK_WINDOW(wxGetTopLevelParent(win)->m_widget); | |
130 | if (g_slist_find(menu->m_accel->acceleratables, tlw)) | |
131 | gtk_window_remove_accel_group(tlw, menu->m_accel); | |
132 | } | |
05b743ba | 133 | |
222ed1d6 | 134 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
5bd9e519 RR |
135 | while (node) |
136 | { | |
1987af7e | 137 | wxMenuItem *menuitem = node->GetData(); |
5bd9e519 | 138 | if (menuitem->IsSubMenu()) |
8ef9a526 | 139 | wxMenubarUnsetInvokingWindow(menuitem->GetSubMenu(), win, tlw); |
1987af7e | 140 | node = node->GetNext(); |
5bd9e519 RR |
141 | } |
142 | } | |
143 | ||
8ef9a526 PC |
144 | static void |
145 | wxMenubarSetInvokingWindow(wxMenu* menu, wxWindow* win, GtkWindow* tlw = NULL) | |
5bd9e519 RR |
146 | { |
147 | menu->SetInvokingWindow( win ); | |
148 | ||
6d971354 | 149 | // support for native hot keys |
8ef9a526 PC |
150 | if (menu->m_accel) |
151 | { | |
152 | if (tlw == NULL) | |
153 | tlw = GTK_WINDOW(wxGetTopLevelParent(win)->m_widget); | |
154 | if (!g_slist_find(menu->m_accel->acceleratables, tlw)) | |
155 | gtk_window_add_accel_group(tlw, menu->m_accel); | |
156 | } | |
5bd9e519 | 157 | |
222ed1d6 | 158 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
5bd9e519 RR |
159 | while (node) |
160 | { | |
1987af7e | 161 | wxMenuItem *menuitem = node->GetData(); |
5bd9e519 | 162 | if (menuitem->IsSubMenu()) |
8ef9a526 | 163 | wxMenubarSetInvokingWindow(menuitem->GetSubMenu(), win, tlw); |
1987af7e | 164 | node = node->GetNext(); |
5bd9e519 RR |
165 | } |
166 | } | |
167 | ||
168 | void wxMenuBar::SetInvokingWindow( wxWindow *win ) | |
169 | { | |
9c884972 | 170 | m_invokingWindow = win; |
5bd9e519 | 171 | |
222ed1d6 | 172 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
5bd9e519 RR |
173 | while (node) |
174 | { | |
1987af7e | 175 | wxMenu *menu = node->GetData(); |
5bd9e519 | 176 | wxMenubarSetInvokingWindow( menu, win ); |
1987af7e | 177 | node = node->GetNext(); |
5bd9e519 RR |
178 | } |
179 | } | |
180 | ||
978af864 VZ |
181 | void wxMenuBar::SetLayoutDirection(wxLayoutDirection dir) |
182 | { | |
183 | if ( dir == wxLayout_Default ) | |
184 | { | |
185 | const wxWindow *const frame = GetFrame(); | |
186 | if ( frame ) | |
187 | { | |
188 | // inherit layout from frame. | |
189 | dir = frame->GetLayoutDirection(); | |
190 | } | |
191 | else // use global layout | |
192 | { | |
193 | dir = wxTheApp->GetLayoutDirection(); | |
194 | } | |
195 | } | |
196 | ||
197 | if ( dir == wxLayout_Default ) | |
198 | return; | |
199 | ||
200 | GTKSetLayout(m_menubar, dir); | |
201 | ||
202 | // also set the layout of all menus we already have (new ones will inherit | |
203 | // the current layout) | |
204 | for ( wxMenuList::compatibility_iterator node = m_menus.GetFirst(); | |
205 | node; | |
206 | node = node->GetNext() ) | |
207 | { | |
208 | wxMenu *const menu = node->GetData(); | |
209 | menu->SetLayoutDirection(dir); | |
210 | } | |
211 | } | |
212 | ||
213 | wxLayoutDirection wxMenuBar::GetLayoutDirection() const | |
214 | { | |
215 | return GTKGetLayout(m_menubar); | |
216 | } | |
217 | ||
218 | void wxMenuBar::Attach(wxFrame *frame) | |
219 | { | |
220 | wxMenuBarBase::Attach(frame); | |
221 | ||
222 | SetLayoutDirection(wxLayout_Default); | |
223 | } | |
224 | ||
5bd9e519 RR |
225 | void wxMenuBar::UnsetInvokingWindow( wxWindow *win ) |
226 | { | |
9c884972 | 227 | m_invokingWindow = (wxWindow*) NULL; |
9959e2b6 | 228 | |
222ed1d6 | 229 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
5bd9e519 RR |
230 | while (node) |
231 | { | |
1987af7e | 232 | wxMenu *menu = node->GetData(); |
5bd9e519 | 233 | wxMenubarUnsetInvokingWindow( menu, win ); |
1987af7e | 234 | node = node->GetNext(); |
5bd9e519 RR |
235 | } |
236 | } | |
237 | ||
3dfac970 | 238 | bool wxMenuBar::Append( wxMenu *menu, const wxString &title ) |
c801d85f | 239 | { |
f03ec224 | 240 | if ( !wxMenuBarBase::Append( menu, title ) ) |
670f9935 | 241 | return false; |
f03ec224 VZ |
242 | |
243 | return GtkAppend(menu, title); | |
244 | } | |
23280650 | 245 | |
49826dab | 246 | bool wxMenuBar::GtkAppend(wxMenu *menu, const wxString& title, int pos) |
f03ec224 | 247 | { |
6c76d1ce | 248 | menu->SetLayoutDirection(GetLayoutDirection()); |
1e133b7d | 249 | |
6c76d1ce VZ |
250 | #if wxUSE_LIBHILDON |
251 | // if the menu has only one item, append it directly to the top level menu | |
252 | // instead of inserting a useless submenu | |
253 | if ( menu->GetMenuItemCount() == 1 ) | |
254 | { | |
255 | wxMenuItem * const item = menu->FindItemByPosition(0); | |
23280650 | 256 | |
6c76d1ce VZ |
257 | // remove both mnemonics and accelerator: neither is useful under Maemo |
258 | const wxString str(wxStripMenuCodes(item->GetItemLabel())); | |
96fd301f | 259 | |
6c76d1ce VZ |
260 | if ( item->IsSubMenu() ) |
261 | return GtkAppend(item->GetSubMenu(), str, pos); | |
262 | ||
263 | menu->m_owner = gtk_menu_item_new_with_mnemonic( wxGTK_CONV( str ) ); | |
9959e2b6 | 264 | |
6c76d1ce | 265 | g_signal_connect(menu->m_owner, "activate", |
e2147e6d | 266 | G_CALLBACK(menuitem_activate), item); |
6c76d1ce VZ |
267 | item->SetMenuItem(menu->m_owner); |
268 | } | |
269 | else | |
270 | #endif // wxUSE_LIBHILDON/!wxUSE_LIBHILDON | |
271 | { | |
272 | const wxString str(wxConvertMnemonicsToGTK(title)); | |
273 | ||
274 | // This doesn't have much effect right now. | |
275 | menu->SetTitle( str ); | |
276 | ||
277 | // The "m_owner" is the "menu item" | |
278 | menu->m_owner = gtk_menu_item_new_with_mnemonic( wxGTK_CONV( str ) ); | |
279 | ||
280 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu ); | |
281 | } | |
282 | ||
283 | gtk_widget_show( menu->m_owner ); | |
9959e2b6 | 284 | |
49826dab RD |
285 | if (pos == -1) |
286 | gtk_menu_shell_append( GTK_MENU_SHELL(m_menubar), menu->m_owner ); | |
287 | else | |
288 | gtk_menu_shell_insert( GTK_MENU_SHELL(m_menubar), menu->m_owner, pos ); | |
9959e2b6 | 289 | |
9c884972 | 290 | // m_invokingWindow is set after wxFrame::SetMenuBar(). This call enables |
2b5f62a0 | 291 | // addings menu later on. |
9c884972 RR |
292 | if (m_invokingWindow) |
293 | wxMenubarSetInvokingWindow( menu, m_invokingWindow ); | |
3dfac970 | 294 | |
670f9935 | 295 | return true; |
3dfac970 VZ |
296 | } |
297 | ||
298 | bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title) | |
299 | { | |
300 | if ( !wxMenuBarBase::Insert(pos, menu, title) ) | |
670f9935 | 301 | return false; |
3dfac970 | 302 | |
6d971354 | 303 | // TODO |
9959e2b6 | 304 | |
49826dab | 305 | if ( !GtkAppend(menu, title, (int)pos) ) |
670f9935 | 306 | return false; |
f03ec224 | 307 | |
670f9935 | 308 | return true; |
3dfac970 VZ |
309 | } |
310 | ||
311 | wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title) | |
312 | { | |
f03ec224 VZ |
313 | // remove the old item and insert a new one |
314 | wxMenu *menuOld = Remove(pos); | |
315 | if ( menuOld && !Insert(pos, menu, title) ) | |
316 | { | |
1d62a8b4 | 317 | return (wxMenu*) NULL; |
f03ec224 | 318 | } |
3dfac970 | 319 | |
f03ec224 VZ |
320 | // either Insert() succeeded or Remove() failed and menuOld is NULL |
321 | return menuOld; | |
3dfac970 VZ |
322 | } |
323 | ||
324 | wxMenu *wxMenuBar::Remove(size_t pos) | |
325 | { | |
f03ec224 VZ |
326 | wxMenu *menu = wxMenuBarBase::Remove(pos); |
327 | if ( !menu ) | |
1d62a8b4 | 328 | return (wxMenu*) NULL; |
f03ec224 | 329 | |
6f536f31 | 330 | gtk_menu_item_set_submenu(GTK_MENU_ITEM(menu->m_owner), NULL); |
defc0789 | 331 | gtk_container_remove(GTK_CONTAINER(m_menubar), menu->m_owner); |
c4608a8a | 332 | |
1d62a8b4 | 333 | gtk_widget_destroy( menu->m_owner ); |
defc0789 | 334 | menu->m_owner = NULL; |
c4608a8a | 335 | |
2b5f62a0 | 336 | if (m_invokingWindow) |
05b743ba | 337 | wxMenubarUnsetInvokingWindow( menu, m_invokingWindow ); |
e4161a2a | 338 | |
1d62a8b4 | 339 | return menu; |
6de97a3b | 340 | } |
96fd301f | 341 | |
716b7364 | 342 | static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString ) |
c801d85f | 343 | { |
b1f17bf0 | 344 | if (wxMenuItem::GetLabelText(wxConvertMnemonicsFromGTK(menu->GetTitle())) == wxMenuItem::GetLabelText(menuString)) |
83624f79 RR |
345 | { |
346 | int res = menu->FindItem( itemString ); | |
c626a8b7 VZ |
347 | if (res != wxNOT_FOUND) |
348 | return res; | |
83624f79 | 349 | } |
c626a8b7 | 350 | |
222ed1d6 | 351 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
83624f79 RR |
352 | while (node) |
353 | { | |
1987af7e | 354 | wxMenuItem *item = node->GetData(); |
83624f79 RR |
355 | if (item->IsSubMenu()) |
356 | return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString); | |
2b1c162e | 357 | |
1987af7e | 358 | node = node->GetNext(); |
83624f79 RR |
359 | } |
360 | ||
c626a8b7 VZ |
361 | return wxNOT_FOUND; |
362 | } | |
363 | ||
c801d85f KB |
364 | int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const |
365 | { | |
222ed1d6 | 366 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
83624f79 RR |
367 | while (node) |
368 | { | |
1987af7e | 369 | wxMenu *menu = node->GetData(); |
83624f79 | 370 | int res = FindMenuItemRecursive( menu, menuString, itemString); |
1987af7e VZ |
371 | if (res != -1) |
372 | return res; | |
373 | node = node->GetNext(); | |
83624f79 | 374 | } |
1987af7e VZ |
375 | |
376 | return wxNOT_FOUND; | |
6de97a3b | 377 | } |
c801d85f | 378 | |
c626a8b7 | 379 | // Find a wxMenuItem using its id. Recurses down into sub-menus |
96fd301f | 380 | static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id) |
716b7364 | 381 | { |
717a57c2 | 382 | wxMenuItem* result = menu->FindChildItem(id); |
716b7364 | 383 | |
222ed1d6 | 384 | wxMenuItemList::compatibility_iterator node = menu->GetMenuItems().GetFirst(); |
c626a8b7 | 385 | while ( node && result == NULL ) |
83624f79 | 386 | { |
1987af7e | 387 | wxMenuItem *item = node->GetData(); |
83624f79 | 388 | if (item->IsSubMenu()) |
c626a8b7 | 389 | { |
83624f79 | 390 | result = FindMenuItemByIdRecursive( item->GetSubMenu(), id ); |
c626a8b7 | 391 | } |
1987af7e | 392 | node = node->GetNext(); |
83624f79 | 393 | } |
96fd301f | 394 | |
83624f79 | 395 | return result; |
6de97a3b | 396 | } |
716b7364 | 397 | |
3dfac970 | 398 | wxMenuItem* wxMenuBar::FindItem( int id, wxMenu **menuForItem ) const |
716b7364 | 399 | { |
83624f79 | 400 | wxMenuItem* result = 0; |
222ed1d6 | 401 | wxMenuList::compatibility_iterator node = m_menus.GetFirst(); |
83624f79 RR |
402 | while (node && result == 0) |
403 | { | |
1987af7e | 404 | wxMenu *menu = node->GetData(); |
83624f79 | 405 | result = FindMenuItemByIdRecursive( menu, id ); |
1987af7e | 406 | node = node->GetNext(); |
83624f79 | 407 | } |
c626a8b7 | 408 | |
3dfac970 VZ |
409 | if ( menuForItem ) |
410 | { | |
411 | *menuForItem = result ? result->GetMenu() : (wxMenu *)NULL; | |
412 | } | |
c626a8b7 | 413 | |
3dfac970 | 414 | return result; |
bbe0af5b RR |
415 | } |
416 | ||
3dfac970 | 417 | void wxMenuBar::EnableTop( size_t pos, bool flag ) |
bbe0af5b | 418 | { |
222ed1d6 | 419 | wxMenuList::compatibility_iterator node = m_menus.Item( pos ); |
c626a8b7 | 420 | |
223d09f6 | 421 | wxCHECK_RET( node, wxT("menu not found") ); |
c626a8b7 | 422 | |
3dfac970 | 423 | wxMenu* menu = node->GetData(); |
c626a8b7 VZ |
424 | |
425 | if (menu->m_owner) | |
426 | gtk_widget_set_sensitive( menu->m_owner, flag ); | |
bbe0af5b RR |
427 | } |
428 | ||
52af3158 | 429 | wxString wxMenuBar::GetMenuLabel( size_t pos ) const |
bbe0af5b | 430 | { |
222ed1d6 | 431 | wxMenuList::compatibility_iterator node = m_menus.Item( pos ); |
c626a8b7 | 432 | |
223d09f6 | 433 | wxCHECK_MSG( node, wxT("invalid"), wxT("menu not found") ); |
c626a8b7 | 434 | |
3dfac970 | 435 | wxMenu* menu = node->GetData(); |
c626a8b7 | 436 | |
b1f17bf0 | 437 | return wxConvertMnemonicsFromGTK(menu->GetTitle()); |
bbe0af5b RR |
438 | } |
439 | ||
52af3158 | 440 | void wxMenuBar::SetMenuLabel( size_t pos, const wxString& label ) |
bbe0af5b | 441 | { |
222ed1d6 | 442 | wxMenuList::compatibility_iterator node = m_menus.Item( pos ); |
c626a8b7 | 443 | |
223d09f6 | 444 | wxCHECK_RET( node, wxT("menu not found") ); |
c626a8b7 | 445 | |
3dfac970 | 446 | wxMenu* menu = node->GetData(); |
c626a8b7 | 447 | |
b1f17bf0 | 448 | const wxString str(wxConvertMnemonicsToGTK(label)); |
f6bcfd97 BP |
449 | |
450 | menu->SetTitle( str ); | |
451 | ||
452 | if (menu->m_owner) | |
8394218c | 453 | gtk_label_set_text_with_mnemonic( GTK_LABEL( GTK_BIN(menu->m_owner)->child), wxGTK_CONV(str) ); |
bbe0af5b RR |
454 | } |
455 | ||
c801d85f | 456 | //----------------------------------------------------------------------------- |
cf7a7e13 | 457 | // "activate" |
c801d85f KB |
458 | //----------------------------------------------------------------------------- |
459 | ||
865bb325 | 460 | extern "C" { |
e2147e6d | 461 | static void menuitem_activate(GtkWidget*, wxMenuItem* item) |
c801d85f | 462 | { |
e2147e6d | 463 | if (!item->IsEnabled()) |
c626a8b7 | 464 | return; |
96fd301f | 465 | |
e2147e6d PC |
466 | int id = item->GetId(); |
467 | if (id == wxGTK_TITLE_ID) | |
9959e2b6 VZ |
468 | { |
469 | // ignore events from the menu title | |
470 | return; | |
471 | } | |
472 | ||
4e6beae5 RD |
473 | if (item->IsCheckable()) |
474 | { | |
475 | bool isReallyChecked = item->IsChecked(), | |
476 | isInternallyChecked = item->wxMenuItemBase::IsChecked(); | |
477 | ||
478 | // ensure that the internal state is always consistent with what is | |
479 | // shown on the screen | |
480 | item->wxMenuItemBase::Check(isReallyChecked); | |
481 | ||
482 | // we must not report the events for the radio button going up nor the | |
483 | // events resulting from the calls to wxMenuItem::Check() | |
484 | if ( (item->GetKind() == wxITEM_RADIO && !isReallyChecked) || | |
485 | (isInternallyChecked == isReallyChecked) ) | |
486 | { | |
487 | return; | |
488 | } | |
489 | } | |
490 | ||
491 | ||
02822c8c | 492 | // Is this menu on a menubar? (possibly nested) |
e2147e6d | 493 | wxMenu* menu = item->GetMenu(); |
02822c8c | 494 | wxFrame* frame = NULL; |
6edf1107 DE |
495 | if(menu->IsAttached()) |
496 | frame = menu->GetMenuBar()->GetFrame(); | |
02822c8c | 497 | |
da0b5338 VZ |
498 | // FIXME: why do we have to call wxFrame::GetEventHandler() directly here? |
499 | // normally wxMenu::SendEvent() should be enough, if it doesn't work | |
500 | // in wxGTK then we have a bug in wxMenu::GetInvokingWindow() which | |
501 | // should be fixed instead of working around it here... | |
02822c8c | 502 | if (frame) |
2d17d68f | 503 | { |
4e6beae5 RD |
504 | // If it is attached then let the frame send the event. |
505 | // Don't call frame->ProcessCommand(id) because it toggles | |
506 | // checkable items and we've already done that above. | |
507 | wxCommandEvent commandEvent(wxEVT_COMMAND_MENU_SELECTED, id); | |
508 | commandEvent.SetEventObject(frame); | |
509 | if (item->IsCheckable()) | |
510 | commandEvent.SetInt(item->IsChecked()); | |
511 | ||
937013e0 | 512 | frame->HandleWindowEvent(commandEvent); |
a01fe3d6 RD |
513 | } |
514 | else | |
515 | { | |
4e6beae5 | 516 | // otherwise let the menu have it |
a01fe3d6 | 517 | menu->SendEvent(id, item->IsCheckable() ? item->IsChecked() : -1); |
2d17d68f | 518 | } |
cf7a7e13 | 519 | } |
865bb325 | 520 | } |
cf7a7e13 RR |
521 | |
522 | //----------------------------------------------------------------------------- | |
523 | // "select" | |
524 | //----------------------------------------------------------------------------- | |
525 | ||
865bb325 | 526 | extern "C" { |
e2147e6d | 527 | static void menuitem_select(GtkWidget*, wxMenuItem* item) |
cf7a7e13 | 528 | { |
e2147e6d | 529 | if (!item->IsEnabled()) |
c626a8b7 | 530 | return; |
cf7a7e13 | 531 | |
e2147e6d PC |
532 | wxMenu* menu = item->GetMenu(); |
533 | wxMenuEvent event(wxEVT_MENU_HIGHLIGHT, item->GetId()); | |
83624f79 | 534 | event.SetEventObject( menu ); |
cf7a7e13 | 535 | |
a01fe3d6 | 536 | wxEvtHandler* handler = menu->GetEventHandler(); |
937013e0 | 537 | if (handler && handler->SafelyProcessEvent(event)) |
c626a8b7 | 538 | return; |
6de97a3b | 539 | |
83624f79 | 540 | wxWindow *win = menu->GetInvokingWindow(); |
937013e0 | 541 | if (win) win->HandleWindowEvent( event ); |
6de97a3b | 542 | } |
865bb325 | 543 | } |
c801d85f | 544 | |
cd743a6f RR |
545 | //----------------------------------------------------------------------------- |
546 | // "deselect" | |
547 | //----------------------------------------------------------------------------- | |
548 | ||
865bb325 | 549 | extern "C" { |
e2147e6d | 550 | static void menuitem_deselect(GtkWidget*, wxMenuItem* item) |
cd743a6f | 551 | { |
e2147e6d | 552 | if (!item->IsEnabled()) |
c626a8b7 | 553 | return; |
cd743a6f | 554 | |
e2147e6d | 555 | wxMenu* menu = item->GetMenu(); |
cd743a6f RR |
556 | wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, -1 ); |
557 | event.SetEventObject( menu ); | |
558 | ||
a01fe3d6 | 559 | wxEvtHandler* handler = menu->GetEventHandler(); |
937013e0 | 560 | if (handler && handler->SafelyProcessEvent(event)) |
c626a8b7 | 561 | return; |
cd743a6f RR |
562 | |
563 | wxWindow *win = menu->GetInvokingWindow(); | |
c626a8b7 | 564 | if (win) |
937013e0 | 565 | win->HandleWindowEvent( event ); |
cd743a6f | 566 | } |
865bb325 | 567 | } |
cd743a6f | 568 | |
cf7a7e13 | 569 | //----------------------------------------------------------------------------- |
db1b4961 | 570 | // wxMenuItem |
cf7a7e13 RR |
571 | //----------------------------------------------------------------------------- |
572 | ||
7dbf5360 | 573 | IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject) |
974e8d94 VZ |
574 | |
575 | wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu, | |
576 | int id, | |
577 | const wxString& name, | |
578 | const wxString& help, | |
d65c269b | 579 | wxItemKind kind, |
974e8d94 VZ |
580 | wxMenu *subMenu) |
581 | { | |
d65c269b | 582 | return new wxMenuItem(parentMenu, id, name, help, kind, subMenu); |
974e8d94 | 583 | } |
96fd301f | 584 | |
974e8d94 VZ |
585 | wxMenuItem::wxMenuItem(wxMenu *parentMenu, |
586 | int id, | |
587 | const wxString& text, | |
588 | const wxString& help, | |
d65c269b | 589 | wxItemKind kind, |
974e8d94 | 590 | wxMenu *subMenu) |
d65c269b | 591 | : wxMenuItemBase(parentMenu, id, text, help, kind, subMenu) |
2368dcda | 592 | { |
1deef997 | 593 | m_menuItem = NULL; |
2368dcda VZ |
594 | } |
595 | ||
efebabb7 | 596 | #if WXWIN_COMPATIBILITY_2_8 |
2368dcda VZ |
597 | wxMenuItem::wxMenuItem(wxMenu *parentMenu, |
598 | int id, | |
599 | const wxString& text, | |
600 | const wxString& help, | |
601 | bool isCheckable, | |
602 | wxMenu *subMenu) | |
603 | : wxMenuItemBase(parentMenu, id, text, help, | |
604 | isCheckable ? wxITEM_CHECK : wxITEM_NORMAL, subMenu) | |
605 | { | |
1deef997 | 606 | m_menuItem = NULL; |
2368dcda | 607 | } |
efebabb7 | 608 | #endif |
2368dcda | 609 | |
d1b15f03 RR |
610 | wxMenuItem::~wxMenuItem() |
611 | { | |
612 | // don't delete menu items, the menus take care of that | |
613 | } | |
614 | ||
52af3158 | 615 | void wxMenuItem::SetItemLabel( const wxString& str ) |
717a57c2 | 616 | { |
6c309653 | 617 | #if wxUSE_ACCEL |
354aa1e3 RR |
618 | if (m_menuItem) |
619 | { | |
1deef997 PC |
620 | // remove old accelerator |
621 | guint accel_key; | |
622 | GdkModifierType accel_mods; | |
623 | wxGetGtkAccel(this, &accel_key, &accel_mods); | |
624 | if (accel_key) | |
ee0a94cf | 625 | { |
1deef997 PC |
626 | gtk_widget_remove_accelerator( |
627 | m_menuItem, m_parentMenu->m_accel, accel_key, accel_mods); | |
ee0a94cf | 628 | } |
98f29783 | 629 | } |
19abd352 | 630 | #endif // wxUSE_ACCEL |
1deef997 PC |
631 | wxMenuItemBase::SetItemLabel(str); |
632 | if (m_menuItem) | |
633 | SetGtkLabel(); | |
354aa1e3 RR |
634 | } |
635 | ||
1deef997 | 636 | void wxMenuItem::SetGtkLabel() |
716b7364 | 637 | { |
1deef997 PC |
638 | const wxString text = wxConvertMnemonicsToGTK(m_text.BeforeFirst('\t')); |
639 | GtkLabel* label = GTK_LABEL(GTK_BIN(m_menuItem)->child); | |
640 | gtk_label_set_text_with_mnemonic(label, wxGTK_CONV_SYS(text)); | |
641 | #if wxUSE_ACCEL | |
642 | guint accel_key; | |
643 | GdkModifierType accel_mods; | |
644 | wxGetGtkAccel(this, &accel_key, &accel_mods); | |
645 | if (accel_key) | |
d7dbc98a | 646 | { |
1deef997 PC |
647 | gtk_widget_add_accelerator( |
648 | m_menuItem, "activate", m_parentMenu->m_accel, | |
649 | accel_key, accel_mods, GTK_ACCEL_VISIBLE); | |
d7dbc98a | 650 | } |
1deef997 | 651 | #endif // wxUSE_ACCEL |
716b7364 RR |
652 | } |
653 | ||
1deef997 | 654 | void wxMenuItem::SetBitmap(const wxBitmap& bitmap) |
717a57c2 | 655 | { |
1deef997 PC |
656 | if (m_kind == wxITEM_NORMAL) |
657 | m_bitmap = bitmap; | |
658 | else | |
659 | wxFAIL_MSG("only normal menu items can have bitmaps"); | |
717a57c2 VZ |
660 | } |
661 | ||
96fd301f | 662 | void wxMenuItem::Check( bool check ) |
716b7364 | 663 | { |
223d09f6 | 664 | wxCHECK_RET( m_menuItem, wxT("invalid menu item") ); |
db1b4961 | 665 | |
974e8d94 VZ |
666 | if (check == m_isChecked) |
667 | return; | |
2d17d68f | 668 | |
974e8d94 | 669 | wxMenuItemBase::Check( check ); |
0472ece7 | 670 | |
24bcaec3 | 671 | switch ( GetKind() ) |
0472ece7 | 672 | { |
24bcaec3 VZ |
673 | case wxITEM_CHECK: |
674 | case wxITEM_RADIO: | |
8394218c | 675 | gtk_check_menu_item_set_active( (GtkCheckMenuItem*)m_menuItem, (gint)check ); |
24bcaec3 VZ |
676 | break; |
677 | ||
678 | default: | |
679 | wxFAIL_MSG( _T("can't check this item") ); | |
0472ece7 | 680 | } |
716b7364 RR |
681 | } |
682 | ||
8bbe427f VZ |
683 | void wxMenuItem::Enable( bool enable ) |
684 | { | |
223d09f6 | 685 | wxCHECK_RET( m_menuItem, wxT("invalid menu item") ); |
db1b4961 | 686 | |
83624f79 | 687 | gtk_widget_set_sensitive( m_menuItem, enable ); |
974e8d94 | 688 | wxMenuItemBase::Enable( enable ); |
a9c96bcc RR |
689 | } |
690 | ||
96fd301f | 691 | bool wxMenuItem::IsChecked() const |
716b7364 | 692 | { |
670f9935 | 693 | wxCHECK_MSG( m_menuItem, false, wxT("invalid menu item") ); |
db1b4961 | 694 | |
670f9935 | 695 | wxCHECK_MSG( IsCheckable(), false, |
974e8d94 | 696 | wxT("can't get state of uncheckable item!") ); |
96fd301f | 697 | |
974e8d94 | 698 | return ((GtkCheckMenuItem*)m_menuItem)->active != 0; |
716b7364 RR |
699 | } |
700 | ||
db1b4961 | 701 | //----------------------------------------------------------------------------- |
83624f79 | 702 | // wxMenu |
db1b4961 RR |
703 | //----------------------------------------------------------------------------- |
704 | ||
3ed946f2 PC |
705 | extern "C" { |
706 | // "map" from m_menu | |
707 | static void menu_map(GtkWidget*, wxMenu* menu) | |
708 | { | |
709 | wxMenuEvent event(wxEVT_MENU_OPEN, menu->m_popupShown ? -1 : 0, menu); | |
710 | DoCommonMenuCallbackCode(menu, event); | |
711 | } | |
712 | ||
713 | // "hide" from m_menu | |
714 | static void menu_hide(GtkWidget*, wxMenu* menu) | |
715 | { | |
716 | wxMenuEvent event(wxEVT_MENU_CLOSE, menu->m_popupShown ? -1 : 0, menu); | |
717 | menu->m_popupShown = false; | |
718 | DoCommonMenuCallbackCode(menu, event); | |
719 | } | |
720 | } | |
721 | ||
c801d85f KB |
722 | IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler) |
723 | ||
717a57c2 | 724 | void wxMenu::Init() |
c801d85f | 725 | { |
3ed946f2 PC |
726 | m_popupShown = false; |
727 | ||
034be888 | 728 | m_accel = gtk_accel_group_new(); |
6d971354 | 729 | m_menu = gtk_menu_new(); |
defc0789 VS |
730 | // NB: keep reference to the menu so that it is not destroyed behind |
731 | // our back by GTK+ e.g. when it is removed from menubar: | |
0f35e441 PC |
732 | g_object_ref(m_menu); |
733 | gtk_object_sink(GTK_OBJECT(m_menu)); | |
8bbe427f | 734 | |
2b1c162e | 735 | m_owner = (GtkWidget*) NULL; |
2b2edbed | 736 | |
d9e403cc RR |
737 | // Tearoffs are entries, just like separators. So if we want this |
738 | // menu to be a tear-off one, we just append a tearoff entry | |
739 | // immediately. | |
9959e2b6 | 740 | if ( m_style & wxMENU_TEAROFF ) |
2b2edbed | 741 | { |
9959e2b6 | 742 | GtkWidget *tearoff = gtk_tearoff_menu_item_new(); |
6d971354 | 743 | |
1ab9e06d | 744 | gtk_menu_shell_append(GTK_MENU_SHELL(m_menu), tearoff); |
9959e2b6 | 745 | } |
6d971354 | 746 | |
9959e2b6 | 747 | m_prevRadio = NULL; |
c801d85f | 748 | |
717a57c2 | 749 | // append the title as the very first entry if we have it |
9959e2b6 | 750 | if ( !m_title.empty() ) |
d1b15f03 | 751 | { |
9959e2b6 | 752 | Append(wxGTK_TITLE_ID, m_title); |
717a57c2 | 753 | AppendSeparator(); |
d1b15f03 | 754 | } |
3ed946f2 PC |
755 | |
756 | // "show" occurs for sub-menus which are not showing, so use "map" instead | |
757 | g_signal_connect(m_menu, "map", G_CALLBACK(menu_map), this); | |
758 | g_signal_connect(m_menu, "hide", G_CALLBACK(menu_hide), this); | |
717a57c2 | 759 | } |
15a2076a | 760 | |
717a57c2 VZ |
761 | wxMenu::~wxMenu() |
762 | { | |
3ed946f2 PC |
763 | // see wxMenu::Init |
764 | g_object_unref(m_menu); | |
52af3158 | 765 | |
3ed946f2 PC |
766 | // if the menu is inserted in another menu at this time, there was |
767 | // one more reference to it: | |
768 | if (m_owner) | |
769 | gtk_widget_destroy(m_menu); | |
f0378929 | 770 | |
3ed946f2 | 771 | g_object_unref(m_accel); |
c2dd8380 GL |
772 | } |
773 | ||
978af864 VZ |
774 | void wxMenu::SetLayoutDirection(const wxLayoutDirection dir) |
775 | { | |
776 | if ( m_owner ) | |
777 | wxWindow::GTKSetLayout(m_owner, dir); | |
778 | //else: will be called later by wxMenuBar again | |
779 | } | |
780 | ||
781 | wxLayoutDirection wxMenu::GetLayoutDirection() const | |
782 | { | |
783 | return wxWindow::GTKGetLayout(m_owner); | |
784 | } | |
785 | ||
49826dab | 786 | bool wxMenu::GtkAppend(wxMenuItem *mitem, int pos) |
c2dd8380 | 787 | { |
717a57c2 | 788 | GtkWidget *menuItem; |
1deef997 PC |
789 | GtkWidget* prevRadio = m_prevRadio; |
790 | m_prevRadio = NULL; | |
791 | switch (mitem->GetKind()) | |
717a57c2 | 792 | { |
1deef997 PC |
793 | case wxITEM_SEPARATOR: |
794 | menuItem = gtk_separator_menu_item_new(); | |
795 | break; | |
796 | case wxITEM_CHECK: | |
797 | menuItem = gtk_check_menu_item_new_with_label(""); | |
798 | break; | |
799 | case wxITEM_RADIO: | |
6d971354 | 800 | { |
1deef997 PC |
801 | GSList* group = NULL; |
802 | if (prevRadio) | |
803 | group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(prevRadio)); | |
804 | menuItem = gtk_radio_menu_item_new_with_label(group, ""); | |
805 | m_prevRadio = menuItem; | |
6d971354 | 806 | } |
1deef997 PC |
807 | break; |
808 | default: | |
809 | wxFAIL_MSG("unexpected menu item kind"); | |
810 | // fall through | |
811 | case wxITEM_NORMAL: | |
812 | const wxBitmap& bitmap = mitem->GetBitmap(); | |
813 | const char* stockid; | |
814 | if (bitmap.IsOk()) | |
6d971354 | 815 | { |
1deef997 PC |
816 | GtkWidget* image; |
817 | if (bitmap.HasPixbuf()) | |
818 | image = gtk_image_new_from_pixbuf(bitmap.GetPixbuf()); | |
819 | else | |
d65c269b | 820 | { |
1deef997 PC |
821 | GdkPixmap* mask = NULL; |
822 | if (bitmap.GetMask()) | |
823 | mask = bitmap.GetMask()->GetBitmap(); | |
824 | image = gtk_image_new_from_pixmap(bitmap.GetPixmap(), mask); | |
d65c269b | 825 | } |
1deef997 PC |
826 | menuItem = gtk_image_menu_item_new_with_label(""); |
827 | gtk_widget_show(image); | |
828 | gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuItem), image); | |
6d971354 | 829 | } |
1deef997 PC |
830 | else if ((stockid = wxGetStockGtkID(mitem->GetId())) != NULL) |
831 | // use stock bitmap for this item if available on the assumption | |
832 | // that it never hurts to follow GTK+ conventions more closely | |
833 | menuItem = gtk_image_menu_item_new_from_stock(stockid, NULL); | |
834 | else | |
835 | menuItem = gtk_menu_item_new_with_label(""); | |
836 | break; | |
717a57c2 | 837 | } |
1deef997 | 838 | mitem->SetMenuItem(menuItem); |
9959e2b6 | 839 | |
1deef997 | 840 | gtk_menu_shell_insert(GTK_MENU_SHELL(m_menu), menuItem, pos); |
e31126cb | 841 | |
6d971354 | 842 | gtk_widget_show( menuItem ); |
23280650 | 843 | |
717a57c2 VZ |
844 | if ( !mitem->IsSeparator() ) |
845 | { | |
1deef997 | 846 | mitem->SetGtkLabel(); |
9fa72bd2 | 847 | g_signal_connect (menuItem, "select", |
e2147e6d | 848 | G_CALLBACK(menuitem_select), mitem); |
9fa72bd2 | 849 | g_signal_connect (menuItem, "deselect", |
e2147e6d | 850 | G_CALLBACK(menuitem_deselect), mitem); |
e31126cb | 851 | |
88d19775 MR |
852 | if ( mitem->IsSubMenu() && mitem->GetKind() != wxITEM_RADIO && mitem->GetKind() != wxITEM_CHECK ) |
853 | { | |
e31126cb RR |
854 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), mitem->GetSubMenu()->m_menu ); |
855 | ||
856 | gtk_widget_show( mitem->GetSubMenu()->m_menu ); | |
857 | ||
858 | // if adding a submenu to a menu already existing in the menu bar, we | |
859 | // must set invoking window to allow processing events from this | |
860 | // submenu | |
861 | if ( m_invokingWindow ) | |
862 | wxMenubarSetInvokingWindow(mitem->GetSubMenu(), m_invokingWindow); | |
88d19775 MR |
863 | } |
864 | else | |
865 | { | |
9fa72bd2 | 866 | g_signal_connect (menuItem, "activate", |
e2147e6d PC |
867 | G_CALLBACK(menuitem_activate), |
868 | mitem); | |
88d19775 | 869 | } |
717a57c2 | 870 | } |
23280650 | 871 | |
670f9935 | 872 | return true; |
6de97a3b | 873 | } |
c801d85f | 874 | |
9add9367 | 875 | wxMenuItem* wxMenu::DoAppend(wxMenuItem *mitem) |
828f655f | 876 | { |
9add9367 RD |
877 | if (!GtkAppend(mitem)) |
878 | return NULL; | |
9959e2b6 | 879 | |
9add9367 | 880 | return wxMenuBase::DoAppend(mitem); |
c33c4050 RR |
881 | } |
882 | ||
9add9367 | 883 | wxMenuItem* wxMenu::DoInsert(size_t pos, wxMenuItem *item) |
c33c4050 | 884 | { |
717a57c2 | 885 | if ( !wxMenuBase::DoInsert(pos, item) ) |
9add9367 | 886 | return NULL; |
c626a8b7 | 887 | |
6d971354 | 888 | // TODO |
49826dab | 889 | if ( !GtkAppend(item, (int)pos) ) |
9add9367 | 890 | return NULL; |
32db328c | 891 | |
9add9367 | 892 | return item; |
c33c4050 RR |
893 | } |
894 | ||
717a57c2 | 895 | wxMenuItem *wxMenu::DoRemove(wxMenuItem *item) |
c33c4050 | 896 | { |
717a57c2 | 897 | if ( !wxMenuBase::DoRemove(item) ) |
8d749001 VZ |
898 | return NULL; |
899 | ||
900 | GtkWidget * const mitem = item->GetMenuItem(); | |
901 | if ( m_prevRadio == mitem ) | |
902 | { | |
903 | // deleting an item starts a new radio group (has to as we shouldn't | |
904 | // keep a deleted pointer anyhow) | |
905 | m_prevRadio = NULL; | |
906 | } | |
c626a8b7 | 907 | |
afd83fb7 | 908 | gtk_menu_item_set_submenu(GTK_MENU_ITEM(mitem), NULL); |
e828d3fc PC |
909 | gtk_widget_destroy(mitem); |
910 | item->SetMenuItem(NULL); | |
c626a8b7 | 911 | |
717a57c2 | 912 | return item; |
c33c4050 RR |
913 | } |
914 | ||
978af864 VZ |
915 | void wxMenu::Attach(wxMenuBarBase *menubar) |
916 | { | |
917 | wxMenuBase::Attach(menubar); | |
918 | ||
919 | // inherit layout direction from menubar. | |
920 | SetLayoutDirection(menubar->GetLayoutDirection()); | |
921 | } | |
922 | ||
717a57c2 VZ |
923 | // ---------------------------------------------------------------------------- |
924 | // helpers | |
925 | // ---------------------------------------------------------------------------- | |
926 | ||
6d971354 | 927 | #if wxUSE_ACCEL |
a070d8ce | 928 | |
98f29783 | 929 | static wxString GetGtkHotKey( const wxMenuItem& item ) |
c801d85f | 930 | { |
717a57c2 VZ |
931 | wxString hotkey; |
932 | ||
933 | wxAcceleratorEntry *accel = item.GetAccel(); | |
934 | if ( accel ) | |
83624f79 | 935 | { |
717a57c2 VZ |
936 | int flags = accel->GetFlags(); |
937 | if ( flags & wxACCEL_ALT ) | |
938 | hotkey += wxT("<alt>"); | |
939 | if ( flags & wxACCEL_CTRL ) | |
940 | hotkey += wxT("<control>"); | |
941 | if ( flags & wxACCEL_SHIFT ) | |
942 | hotkey += wxT("<shift>"); | |
943 | ||
944 | int code = accel->GetKeyCode(); | |
945 | switch ( code ) | |
c626a8b7 | 946 | { |
717a57c2 VZ |
947 | case WXK_F1: |
948 | case WXK_F2: | |
949 | case WXK_F3: | |
950 | case WXK_F4: | |
951 | case WXK_F5: | |
952 | case WXK_F6: | |
953 | case WXK_F7: | |
954 | case WXK_F8: | |
955 | case WXK_F9: | |
956 | case WXK_F10: | |
957 | case WXK_F11: | |
958 | case WXK_F12: | |
bbcd4085 RR |
959 | case WXK_F13: |
960 | case WXK_F14: | |
961 | case WXK_F15: | |
962 | case WXK_F16: | |
963 | case WXK_F17: | |
964 | case WXK_F18: | |
965 | case WXK_F19: | |
966 | case WXK_F20: | |
967 | case WXK_F21: | |
968 | case WXK_F22: | |
969 | case WXK_F23: | |
970 | case WXK_F24: | |
04cc1e93 | 971 | hotkey += wxString::Format(wxT("F%d"), code - WXK_F1 + 1); |
717a57c2 | 972 | break; |
2368dcda | 973 | |
a070d8ce VZ |
974 | // TODO: we should use gdk_keyval_name() (a.k.a. |
975 | // XKeysymToString) here as well as hardcoding the keysym | |
976 | // names this might be not portable | |
bbcd4085 | 977 | case WXK_INSERT: |
3ca6a5f0 BP |
978 | hotkey << wxT("Insert" ); |
979 | break; | |
980 | case WXK_DELETE: | |
981 | hotkey << wxT("Delete" ); | |
982 | break; | |
2b5f62a0 VZ |
983 | case WXK_UP: |
984 | hotkey << wxT("Up" ); | |
985 | break; | |
986 | case WXK_DOWN: | |
987 | hotkey << wxT("Down" ); | |
988 | break; | |
989 | case WXK_PAGEUP: | |
f005ea42 | 990 | hotkey << wxT("Page_Up" ); |
2b5f62a0 VZ |
991 | break; |
992 | case WXK_PAGEDOWN: | |
f005ea42 | 993 | hotkey << wxT("Page_Down" ); |
2b5f62a0 VZ |
994 | break; |
995 | case WXK_LEFT: | |
996 | hotkey << wxT("Left" ); | |
997 | break; | |
998 | case WXK_RIGHT: | |
999 | hotkey << wxT("Right" ); | |
1000 | break; | |
1001 | case WXK_HOME: | |
1002 | hotkey << wxT("Home" ); | |
1003 | break; | |
1004 | case WXK_END: | |
1005 | hotkey << wxT("End" ); | |
1006 | break; | |
1007 | case WXK_RETURN: | |
1008 | hotkey << wxT("Return" ); | |
1009 | break; | |
bbcd4085 RR |
1010 | case WXK_BACK: |
1011 | hotkey << wxT("BackSpace" ); | |
1012 | break; | |
1013 | case WXK_TAB: | |
1014 | hotkey << wxT("Tab" ); | |
1015 | break; | |
1016 | case WXK_ESCAPE: | |
1017 | hotkey << wxT("Esc" ); | |
1018 | break; | |
1019 | case WXK_SPACE: | |
1020 | hotkey << wxT("space" ); | |
1021 | break; | |
1022 | case WXK_MULTIPLY: | |
1023 | hotkey << wxT("Multiply" ); | |
1024 | break; | |
1025 | case WXK_ADD: | |
1026 | hotkey << wxT("Add" ); | |
1027 | break; | |
1028 | case WXK_SEPARATOR: | |
1029 | hotkey << wxT("Separator" ); | |
1030 | break; | |
1031 | case WXK_SUBTRACT: | |
1032 | hotkey << wxT("Subtract" ); | |
1033 | break; | |
1034 | case WXK_DECIMAL: | |
1035 | hotkey << wxT("Decimal" ); | |
1036 | break; | |
1037 | case WXK_DIVIDE: | |
1038 | hotkey << wxT("Divide" ); | |
1039 | break; | |
1040 | case WXK_CANCEL: | |
1041 | hotkey << wxT("Cancel" ); | |
1042 | break; | |
1043 | case WXK_CLEAR: | |
1044 | hotkey << wxT("Clear" ); | |
1045 | break; | |
1046 | case WXK_MENU: | |
1047 | hotkey << wxT("Menu" ); | |
1048 | break; | |
1049 | case WXK_PAUSE: | |
1050 | hotkey << wxT("Pause" ); | |
1051 | break; | |
1052 | case WXK_CAPITAL: | |
1053 | hotkey << wxT("Capital" ); | |
1054 | break; | |
1055 | case WXK_SELECT: | |
1056 | hotkey << wxT("Select" ); | |
1057 | break; | |
1058 | case WXK_PRINT: | |
1059 | hotkey << wxT("Print" ); | |
1060 | break; | |
1061 | case WXK_EXECUTE: | |
1062 | hotkey << wxT("Execute" ); | |
1063 | break; | |
1064 | case WXK_SNAPSHOT: | |
1065 | hotkey << wxT("Snapshot" ); | |
1066 | break; | |
1067 | case WXK_HELP: | |
1068 | hotkey << wxT("Help" ); | |
1069 | break; | |
1070 | case WXK_NUMLOCK: | |
1071 | hotkey << wxT("Num_Lock" ); | |
1072 | break; | |
1073 | case WXK_SCROLL: | |
1074 | hotkey << wxT("Scroll_Lock" ); | |
1075 | break; | |
1076 | case WXK_NUMPAD_INSERT: | |
1077 | hotkey << wxT("KP_Insert" ); | |
1078 | break; | |
1079 | case WXK_NUMPAD_DELETE: | |
1080 | hotkey << wxT("KP_Delete" ); | |
1081 | break; | |
1082 | case WXK_NUMPAD_SPACE: | |
1083 | hotkey << wxT("KP_Space" ); | |
1084 | break; | |
1085 | case WXK_NUMPAD_TAB: | |
1086 | hotkey << wxT("KP_Tab" ); | |
1087 | break; | |
1088 | case WXK_NUMPAD_ENTER: | |
1089 | hotkey << wxT("KP_Enter" ); | |
1090 | break; | |
1091 | case WXK_NUMPAD_F1: case WXK_NUMPAD_F2: case WXK_NUMPAD_F3: | |
1092 | case WXK_NUMPAD_F4: | |
1093 | hotkey += wxString::Format(wxT("KP_F%d"), code - WXK_NUMPAD_F1 + 1); | |
1094 | break; | |
1095 | case WXK_NUMPAD_HOME: | |
1096 | hotkey << wxT("KP_Home" ); | |
1097 | break; | |
1098 | case WXK_NUMPAD_LEFT: | |
1099 | hotkey << wxT("KP_Left" ); | |
1100 | break; | |
1101 | case WXK_NUMPAD_UP: | |
1102 | hotkey << wxT("KP_Up" ); | |
1103 | break; | |
1104 | case WXK_NUMPAD_RIGHT: | |
1105 | hotkey << wxT("KP_Right" ); | |
1106 | break; | |
1107 | case WXK_NUMPAD_DOWN: | |
1108 | hotkey << wxT("KP_Down" ); | |
1109 | break; | |
5bd24f72 | 1110 | case WXK_NUMPAD_PAGEUP: |
f005ea42 | 1111 | hotkey << wxT("KP_Page_Up" ); |
bbcd4085 | 1112 | break; |
5bd24f72 | 1113 | case WXK_NUMPAD_PAGEDOWN: |
f005ea42 | 1114 | hotkey << wxT("KP_Page_Down" ); |
bbcd4085 RR |
1115 | break; |
1116 | case WXK_NUMPAD_END: | |
1117 | hotkey << wxT("KP_End" ); | |
1118 | break; | |
1119 | case WXK_NUMPAD_BEGIN: | |
1120 | hotkey << wxT("KP_Begin" ); | |
1121 | break; | |
1122 | case WXK_NUMPAD_EQUAL: | |
1123 | hotkey << wxT("KP_Equal" ); | |
1124 | break; | |
1125 | case WXK_NUMPAD_MULTIPLY: | |
1126 | hotkey << wxT("KP_Multiply" ); | |
1127 | break; | |
1128 | case WXK_NUMPAD_ADD: | |
1129 | hotkey << wxT("KP_Add" ); | |
1130 | break; | |
1131 | case WXK_NUMPAD_SEPARATOR: | |
1132 | hotkey << wxT("KP_Separator" ); | |
1133 | break; | |
1134 | case WXK_NUMPAD_SUBTRACT: | |
1135 | hotkey << wxT("KP_Subtract" ); | |
1136 | break; | |
1137 | case WXK_NUMPAD_DECIMAL: | |
1138 | hotkey << wxT("KP_Decimal" ); | |
1139 | break; | |
1140 | case WXK_NUMPAD_DIVIDE: | |
1141 | hotkey << wxT("KP_Divide" ); | |
1142 | break; | |
1143 | case WXK_NUMPAD0: case WXK_NUMPAD1: case WXK_NUMPAD2: | |
1144 | case WXK_NUMPAD3: case WXK_NUMPAD4: case WXK_NUMPAD5: | |
1145 | case WXK_NUMPAD6: case WXK_NUMPAD7: case WXK_NUMPAD8: case WXK_NUMPAD9: | |
1146 | hotkey += wxString::Format(wxT("KP_%d"), code - WXK_NUMPAD0); | |
1147 | break; | |
1148 | case WXK_WINDOWS_LEFT: | |
1149 | hotkey << wxT("Super_L" ); | |
1150 | break; | |
1151 | case WXK_WINDOWS_RIGHT: | |
1152 | hotkey << wxT("Super_R" ); | |
1153 | break; | |
1154 | case WXK_WINDOWS_MENU: | |
1155 | hotkey << wxT("Menu" ); | |
1156 | break; | |
1157 | case WXK_COMMAND: | |
1158 | hotkey << wxT("Command" ); | |
1159 | break; | |
1160 | /* These probably wouldn't work as there is no SpecialX in gdk/keynames.txt | |
88d19775 MR |
1161 | case WXK_SPECIAL1: case WXK_SPECIAL2: case WXK_SPECIAL3: case WXK_SPECIAL4: |
1162 | case WXK_SPECIAL5: case WXK_SPECIAL6: case WXK_SPECIAL7: case WXK_SPECIAL8: | |
1163 | case WXK_SPECIAL9: case WXK_SPECIAL10: case WXK_SPECIAL11: case WXK_SPECIAL12: | |
1164 | case WXK_SPECIAL13: case WXK_SPECIAL14: case WXK_SPECIAL15: case WXK_SPECIAL16: | |
bbcd4085 RR |
1165 | case WXK_SPECIAL17: case WXK_SPECIAL18: case WXK_SPECIAL19: case WXK_SPECIAL20: |
1166 | hotkey += wxString::Format(wxT("Special%d"), code - WXK_SPECIAL1 + 1); | |
1167 | break; | |
1168 | */ | |
90527a50 | 1169 | // if there are any other keys wxAcceleratorEntry::Create() may |
a070d8ce | 1170 | // return, we should process them here |
8bbe427f | 1171 | |
717a57c2 | 1172 | default: |
a070d8ce | 1173 | if ( code < 127 ) |
717a57c2 | 1174 | { |
30083ad8 VZ |
1175 | const wxString |
1176 | name = wxGTK_CONV_BACK_SYS(gdk_keyval_name((guint)code)); | |
1177 | if ( !name.empty() ) | |
a070d8ce VZ |
1178 | { |
1179 | hotkey << name; | |
1180 | break; | |
1181 | } | |
717a57c2 | 1182 | } |
c801d85f | 1183 | |
717a57c2 VZ |
1184 | wxFAIL_MSG( wxT("unknown keyboard accel") ); |
1185 | } | |
c801d85f | 1186 | |
717a57c2 | 1187 | delete accel; |
631f1bfe | 1188 | } |
717a57c2 VZ |
1189 | |
1190 | return hotkey; | |
631f1bfe | 1191 | } |
a070d8ce | 1192 | |
1deef997 PC |
1193 | static void |
1194 | wxGetGtkAccel(const wxMenuItem* item, guint* accel_key, GdkModifierType* accel_mods) | |
1195 | { | |
1196 | *accel_key = 0; | |
1197 | const wxString string = GetGtkHotKey(*item); | |
1198 | if (!string.empty()) | |
1199 | gtk_accelerator_parse(wxGTK_CONV_SYS(string), accel_key, accel_mods); | |
1200 | else | |
1201 | { | |
1202 | GtkStockItem stock_item; | |
1203 | const char* stockid = wxGetStockGtkID(item->GetId()); | |
1204 | if (stockid && gtk_stock_lookup(stockid, &stock_item)) | |
1205 | { | |
1206 | *accel_key = stock_item.keyval; | |
1207 | *accel_mods = stock_item.modifier; | |
1208 | } | |
1209 | } | |
1210 | } | |
717a57c2 | 1211 | #endif // wxUSE_ACCEL |
43a11e2a | 1212 | |
bcf881ef JS |
1213 | const char *wxGetStockGtkID(wxWindowID id) |
1214 | { | |
1215 | #define STOCKITEM(wx,gtk) \ | |
1216 | case wx: \ | |
1217 | return gtk; | |
1218 | ||
bcf881ef JS |
1219 | #if GTK_CHECK_VERSION(2,6,0) |
1220 | #define STOCKITEM_26(wx,gtk) STOCKITEM(wx,gtk) | |
1221 | #else | |
1deef997 | 1222 | #define STOCKITEM_26(wx,gtk) |
bcf881ef JS |
1223 | #endif |
1224 | ||
1225 | #if GTK_CHECK_VERSION(2,10,0) | |
1226 | #define STOCKITEM_210(wx,gtk) STOCKITEM(wx,gtk) | |
1227 | #else | |
1deef997 | 1228 | #define STOCKITEM_210(wx,gtk) |
bcf881ef JS |
1229 | #endif |
1230 | ||
1231 | ||
1232 | switch (id) | |
1233 | { | |
1234 | STOCKITEM_26(wxID_ABOUT, GTK_STOCK_ABOUT) | |
1235 | STOCKITEM(wxID_ADD, GTK_STOCK_ADD) | |
1236 | STOCKITEM(wxID_APPLY, GTK_STOCK_APPLY) | |
1237 | STOCKITEM(wxID_BOLD, GTK_STOCK_BOLD) | |
1238 | STOCKITEM(wxID_CANCEL, GTK_STOCK_CANCEL) | |
1239 | STOCKITEM(wxID_CLEAR, GTK_STOCK_CLEAR) | |
1240 | STOCKITEM(wxID_CLOSE, GTK_STOCK_CLOSE) | |
1241 | STOCKITEM(wxID_COPY, GTK_STOCK_COPY) | |
1242 | STOCKITEM(wxID_CUT, GTK_STOCK_CUT) | |
1243 | STOCKITEM(wxID_DELETE, GTK_STOCK_DELETE) | |
1244 | STOCKITEM_26(wxID_EDIT, GTK_STOCK_EDIT) | |
1245 | STOCKITEM(wxID_FIND, GTK_STOCK_FIND) | |
1246 | STOCKITEM_26(wxID_FILE, GTK_STOCK_FILE) | |
1247 | STOCKITEM(wxID_REPLACE, GTK_STOCK_FIND_AND_REPLACE) | |
1248 | STOCKITEM(wxID_BACKWARD, GTK_STOCK_GO_BACK) | |
1249 | STOCKITEM(wxID_DOWN, GTK_STOCK_GO_DOWN) | |
1250 | STOCKITEM(wxID_FORWARD, GTK_STOCK_GO_FORWARD) | |
1251 | STOCKITEM(wxID_UP, GTK_STOCK_GO_UP) | |
1252 | STOCKITEM(wxID_HELP, GTK_STOCK_HELP) | |
1253 | STOCKITEM(wxID_HOME, GTK_STOCK_HOME) | |
1deef997 | 1254 | STOCKITEM(wxID_INDENT, GTK_STOCK_INDENT) |
bcf881ef JS |
1255 | STOCKITEM(wxID_INDEX, GTK_STOCK_INDEX) |
1256 | STOCKITEM(wxID_ITALIC, GTK_STOCK_ITALIC) | |
1257 | STOCKITEM(wxID_JUSTIFY_CENTER, GTK_STOCK_JUSTIFY_CENTER) | |
1258 | STOCKITEM(wxID_JUSTIFY_FILL, GTK_STOCK_JUSTIFY_FILL) | |
1259 | STOCKITEM(wxID_JUSTIFY_LEFT, GTK_STOCK_JUSTIFY_LEFT) | |
1260 | STOCKITEM(wxID_JUSTIFY_RIGHT, GTK_STOCK_JUSTIFY_RIGHT) | |
1261 | STOCKITEM(wxID_NEW, GTK_STOCK_NEW) | |
1262 | STOCKITEM(wxID_NO, GTK_STOCK_NO) | |
1263 | STOCKITEM(wxID_OK, GTK_STOCK_OK) | |
1264 | STOCKITEM(wxID_OPEN, GTK_STOCK_OPEN) | |
1265 | STOCKITEM(wxID_PASTE, GTK_STOCK_PASTE) | |
1266 | STOCKITEM(wxID_PREFERENCES, GTK_STOCK_PREFERENCES) | |
1267 | STOCKITEM(wxID_PRINT, GTK_STOCK_PRINT) | |
1268 | STOCKITEM(wxID_PREVIEW, GTK_STOCK_PRINT_PREVIEW) | |
1269 | STOCKITEM(wxID_PROPERTIES, GTK_STOCK_PROPERTIES) | |
1270 | STOCKITEM(wxID_EXIT, GTK_STOCK_QUIT) | |
1271 | STOCKITEM(wxID_REDO, GTK_STOCK_REDO) | |
1272 | STOCKITEM(wxID_REFRESH, GTK_STOCK_REFRESH) | |
1273 | STOCKITEM(wxID_REMOVE, GTK_STOCK_REMOVE) | |
1274 | STOCKITEM(wxID_REVERT_TO_SAVED, GTK_STOCK_REVERT_TO_SAVED) | |
1275 | STOCKITEM(wxID_SAVE, GTK_STOCK_SAVE) | |
1276 | STOCKITEM(wxID_SAVEAS, GTK_STOCK_SAVE_AS) | |
1277 | STOCKITEM_210(wxID_SELECTALL, GTK_STOCK_SELECT_ALL) | |
1278 | STOCKITEM(wxID_STOP, GTK_STOCK_STOP) | |
1279 | STOCKITEM(wxID_UNDELETE, GTK_STOCK_UNDELETE) | |
1280 | STOCKITEM(wxID_UNDERLINE, GTK_STOCK_UNDERLINE) | |
1281 | STOCKITEM(wxID_UNDO, GTK_STOCK_UNDO) | |
1deef997 | 1282 | STOCKITEM(wxID_UNINDENT, GTK_STOCK_UNINDENT) |
bcf881ef JS |
1283 | STOCKITEM(wxID_YES, GTK_STOCK_YES) |
1284 | STOCKITEM(wxID_ZOOM_100, GTK_STOCK_ZOOM_100) | |
1285 | STOCKITEM(wxID_ZOOM_FIT, GTK_STOCK_ZOOM_FIT) | |
1286 | STOCKITEM(wxID_ZOOM_IN, GTK_STOCK_ZOOM_IN) | |
1287 | STOCKITEM(wxID_ZOOM_OUT, GTK_STOCK_ZOOM_OUT) | |
1288 | ||
1289 | default: | |
bcf881ef JS |
1290 | break; |
1291 | }; | |
1292 | ||
1293 | #undef STOCKITEM | |
1294 | ||
1295 | return NULL; | |
1296 | } | |
1297 | ||
28fcfbfe | 1298 | #endif // wxUSE_MENUS |