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