]>
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 | |
496e7ec6 | 94 | GTKApplyWidgetStyle(); |
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 | 124 | { |
d3b9f782 | 125 | menu->SetInvokingWindow( NULL ); |
5bd9e519 | 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 | { | |
d3b9f782 | 229 | m_invokingWindow = 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 | { | |
d3b9f782 | 319 | return 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 ) | |
d3b9f782 | 330 | return 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 | { | |
d3b9f782 | 413 | *menuForItem = result ? result->GetMenu() : NULL; |
3dfac970 | 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 | ||
90659535 PC |
698 | // "can_activate_accel" from menu item |
699 | extern "C" { | |
700 | static gboolean can_activate_accel(GtkWidget*, guint, wxMenu* menu) | |
701 | { | |
702 | menu->UpdateUI(); | |
703 | // always allow our "activate" handler to be called | |
704 | return true; | |
705 | } | |
706 | } | |
707 | ||
c801d85f KB |
708 | IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler) |
709 | ||
717a57c2 | 710 | void wxMenu::Init() |
c801d85f | 711 | { |
3ed946f2 PC |
712 | m_popupShown = false; |
713 | ||
034be888 | 714 | m_accel = gtk_accel_group_new(); |
6d971354 | 715 | m_menu = gtk_menu_new(); |
defc0789 VS |
716 | // NB: keep reference to the menu so that it is not destroyed behind |
717 | // our back by GTK+ e.g. when it is removed from menubar: | |
0f35e441 | 718 | g_object_ref(m_menu); |
352cd79f | 719 | gtk_object_sink(GTK_OBJECT(m_menu)); |
8bbe427f | 720 | |
d3b9f782 | 721 | m_owner = NULL; |
2b2edbed | 722 | |
d9e403cc RR |
723 | // Tearoffs are entries, just like separators. So if we want this |
724 | // menu to be a tear-off one, we just append a tearoff entry | |
725 | // immediately. | |
9959e2b6 | 726 | if ( m_style & wxMENU_TEAROFF ) |
2b2edbed | 727 | { |
9959e2b6 | 728 | GtkWidget *tearoff = gtk_tearoff_menu_item_new(); |
6d971354 | 729 | |
1ab9e06d | 730 | gtk_menu_shell_append(GTK_MENU_SHELL(m_menu), tearoff); |
9959e2b6 | 731 | } |
6d971354 | 732 | |
9959e2b6 | 733 | m_prevRadio = NULL; |
c801d85f | 734 | |
717a57c2 | 735 | // append the title as the very first entry if we have it |
9959e2b6 | 736 | if ( !m_title.empty() ) |
d1b15f03 | 737 | { |
9959e2b6 | 738 | Append(wxGTK_TITLE_ID, m_title); |
717a57c2 | 739 | AppendSeparator(); |
d1b15f03 | 740 | } |
3ed946f2 PC |
741 | |
742 | // "show" occurs for sub-menus which are not showing, so use "map" instead | |
743 | g_signal_connect(m_menu, "map", G_CALLBACK(menu_map), this); | |
744 | g_signal_connect(m_menu, "hide", G_CALLBACK(menu_hide), this); | |
717a57c2 | 745 | } |
15a2076a | 746 | |
717a57c2 VZ |
747 | wxMenu::~wxMenu() |
748 | { | |
3ed946f2 PC |
749 | // see wxMenu::Init |
750 | g_object_unref(m_menu); | |
52af3158 | 751 | |
3ed946f2 PC |
752 | // if the menu is inserted in another menu at this time, there was |
753 | // one more reference to it: | |
754 | if (m_owner) | |
755 | gtk_widget_destroy(m_menu); | |
f0378929 | 756 | |
3ed946f2 | 757 | g_object_unref(m_accel); |
c2dd8380 GL |
758 | } |
759 | ||
978af864 VZ |
760 | void wxMenu::SetLayoutDirection(const wxLayoutDirection dir) |
761 | { | |
762 | if ( m_owner ) | |
763 | wxWindow::GTKSetLayout(m_owner, dir); | |
764 | //else: will be called later by wxMenuBar again | |
765 | } | |
766 | ||
767 | wxLayoutDirection wxMenu::GetLayoutDirection() const | |
768 | { | |
769 | return wxWindow::GTKGetLayout(m_owner); | |
770 | } | |
771 | ||
49826dab | 772 | bool wxMenu::GtkAppend(wxMenuItem *mitem, int pos) |
c2dd8380 | 773 | { |
717a57c2 | 774 | GtkWidget *menuItem; |
1deef997 PC |
775 | GtkWidget* prevRadio = m_prevRadio; |
776 | m_prevRadio = NULL; | |
777 | switch (mitem->GetKind()) | |
717a57c2 | 778 | { |
1deef997 PC |
779 | case wxITEM_SEPARATOR: |
780 | menuItem = gtk_separator_menu_item_new(); | |
781 | break; | |
782 | case wxITEM_CHECK: | |
783 | menuItem = gtk_check_menu_item_new_with_label(""); | |
784 | break; | |
785 | case wxITEM_RADIO: | |
6d971354 | 786 | { |
1deef997 PC |
787 | GSList* group = NULL; |
788 | if (prevRadio) | |
789 | group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(prevRadio)); | |
790 | menuItem = gtk_radio_menu_item_new_with_label(group, ""); | |
791 | m_prevRadio = menuItem; | |
6d971354 | 792 | } |
1deef997 PC |
793 | break; |
794 | default: | |
795 | wxFAIL_MSG("unexpected menu item kind"); | |
796 | // fall through | |
797 | case wxITEM_NORMAL: | |
798 | const wxBitmap& bitmap = mitem->GetBitmap(); | |
799 | const char* stockid; | |
800 | if (bitmap.IsOk()) | |
6d971354 | 801 | { |
4a4a02ac PC |
802 | // always use pixbuf, because pixmap mask does not |
803 | // work with disabled images in some themes | |
804 | GtkWidget* image = gtk_image_new_from_pixbuf(bitmap.GetPixbuf()); | |
1deef997 PC |
805 | menuItem = gtk_image_menu_item_new_with_label(""); |
806 | gtk_widget_show(image); | |
807 | gtk_image_menu_item_set_image(GTK_IMAGE_MENU_ITEM(menuItem), image); | |
6d971354 | 808 | } |
1deef997 PC |
809 | else if ((stockid = wxGetStockGtkID(mitem->GetId())) != NULL) |
810 | // use stock bitmap for this item if available on the assumption | |
811 | // that it never hurts to follow GTK+ conventions more closely | |
812 | menuItem = gtk_image_menu_item_new_from_stock(stockid, NULL); | |
813 | else | |
814 | menuItem = gtk_menu_item_new_with_label(""); | |
815 | break; | |
717a57c2 | 816 | } |
1deef997 | 817 | mitem->SetMenuItem(menuItem); |
9959e2b6 | 818 | |
1deef997 | 819 | gtk_menu_shell_insert(GTK_MENU_SHELL(m_menu), menuItem, pos); |
e31126cb | 820 | |
6d971354 | 821 | gtk_widget_show( menuItem ); |
23280650 | 822 | |
717a57c2 VZ |
823 | if ( !mitem->IsSeparator() ) |
824 | { | |
1deef997 | 825 | mitem->SetGtkLabel(); |
9fa72bd2 | 826 | g_signal_connect (menuItem, "select", |
e2147e6d | 827 | G_CALLBACK(menuitem_select), mitem); |
9fa72bd2 | 828 | g_signal_connect (menuItem, "deselect", |
e2147e6d | 829 | G_CALLBACK(menuitem_deselect), mitem); |
e31126cb | 830 | |
88d19775 MR |
831 | if ( mitem->IsSubMenu() && mitem->GetKind() != wxITEM_RADIO && mitem->GetKind() != wxITEM_CHECK ) |
832 | { | |
e31126cb RR |
833 | gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), mitem->GetSubMenu()->m_menu ); |
834 | ||
835 | gtk_widget_show( mitem->GetSubMenu()->m_menu ); | |
836 | ||
837 | // if adding a submenu to a menu already existing in the menu bar, we | |
838 | // must set invoking window to allow processing events from this | |
839 | // submenu | |
840 | if ( m_invokingWindow ) | |
841 | wxMenubarSetInvokingWindow(mitem->GetSubMenu(), m_invokingWindow); | |
88d19775 MR |
842 | } |
843 | else | |
844 | { | |
90659535 PC |
845 | g_signal_connect(menuItem, "can_activate_accel", |
846 | G_CALLBACK(can_activate_accel), this); | |
9fa72bd2 | 847 | g_signal_connect (menuItem, "activate", |
e2147e6d PC |
848 | G_CALLBACK(menuitem_activate), |
849 | mitem); | |
88d19775 | 850 | } |
717a57c2 | 851 | } |
23280650 | 852 | |
670f9935 | 853 | return true; |
6de97a3b | 854 | } |
c801d85f | 855 | |
9add9367 | 856 | wxMenuItem* wxMenu::DoAppend(wxMenuItem *mitem) |
828f655f | 857 | { |
9add9367 RD |
858 | if (!GtkAppend(mitem)) |
859 | return NULL; | |
9959e2b6 | 860 | |
9add9367 | 861 | return wxMenuBase::DoAppend(mitem); |
c33c4050 RR |
862 | } |
863 | ||
9add9367 | 864 | wxMenuItem* wxMenu::DoInsert(size_t pos, wxMenuItem *item) |
c33c4050 | 865 | { |
717a57c2 | 866 | if ( !wxMenuBase::DoInsert(pos, item) ) |
9add9367 | 867 | return NULL; |
c626a8b7 | 868 | |
6d971354 | 869 | // TODO |
49826dab | 870 | if ( !GtkAppend(item, (int)pos) ) |
9add9367 | 871 | return NULL; |
32db328c | 872 | |
9add9367 | 873 | return item; |
c33c4050 RR |
874 | } |
875 | ||
717a57c2 | 876 | wxMenuItem *wxMenu::DoRemove(wxMenuItem *item) |
c33c4050 | 877 | { |
717a57c2 | 878 | if ( !wxMenuBase::DoRemove(item) ) |
8d749001 VZ |
879 | return NULL; |
880 | ||
881 | GtkWidget * const mitem = item->GetMenuItem(); | |
882 | if ( m_prevRadio == mitem ) | |
883 | { | |
884 | // deleting an item starts a new radio group (has to as we shouldn't | |
885 | // keep a deleted pointer anyhow) | |
886 | m_prevRadio = NULL; | |
887 | } | |
c626a8b7 | 888 | |
afd83fb7 | 889 | gtk_menu_item_set_submenu(GTK_MENU_ITEM(mitem), NULL); |
e828d3fc PC |
890 | gtk_widget_destroy(mitem); |
891 | item->SetMenuItem(NULL); | |
c626a8b7 | 892 | |
717a57c2 | 893 | return item; |
c33c4050 RR |
894 | } |
895 | ||
978af864 VZ |
896 | void wxMenu::Attach(wxMenuBarBase *menubar) |
897 | { | |
898 | wxMenuBase::Attach(menubar); | |
899 | ||
900 | // inherit layout direction from menubar. | |
901 | SetLayoutDirection(menubar->GetLayoutDirection()); | |
902 | } | |
903 | ||
717a57c2 VZ |
904 | // ---------------------------------------------------------------------------- |
905 | // helpers | |
906 | // ---------------------------------------------------------------------------- | |
907 | ||
6d971354 | 908 | #if wxUSE_ACCEL |
a070d8ce | 909 | |
98f29783 | 910 | static wxString GetGtkHotKey( const wxMenuItem& item ) |
c801d85f | 911 | { |
717a57c2 VZ |
912 | wxString hotkey; |
913 | ||
914 | wxAcceleratorEntry *accel = item.GetAccel(); | |
915 | if ( accel ) | |
83624f79 | 916 | { |
717a57c2 VZ |
917 | int flags = accel->GetFlags(); |
918 | if ( flags & wxACCEL_ALT ) | |
919 | hotkey += wxT("<alt>"); | |
920 | if ( flags & wxACCEL_CTRL ) | |
921 | hotkey += wxT("<control>"); | |
922 | if ( flags & wxACCEL_SHIFT ) | |
923 | hotkey += wxT("<shift>"); | |
924 | ||
925 | int code = accel->GetKeyCode(); | |
926 | switch ( code ) | |
c626a8b7 | 927 | { |
717a57c2 VZ |
928 | case WXK_F1: |
929 | case WXK_F2: | |
930 | case WXK_F3: | |
931 | case WXK_F4: | |
932 | case WXK_F5: | |
933 | case WXK_F6: | |
934 | case WXK_F7: | |
935 | case WXK_F8: | |
936 | case WXK_F9: | |
937 | case WXK_F10: | |
938 | case WXK_F11: | |
939 | case WXK_F12: | |
bbcd4085 RR |
940 | case WXK_F13: |
941 | case WXK_F14: | |
942 | case WXK_F15: | |
943 | case WXK_F16: | |
944 | case WXK_F17: | |
945 | case WXK_F18: | |
946 | case WXK_F19: | |
947 | case WXK_F20: | |
948 | case WXK_F21: | |
949 | case WXK_F22: | |
950 | case WXK_F23: | |
951 | case WXK_F24: | |
04cc1e93 | 952 | hotkey += wxString::Format(wxT("F%d"), code - WXK_F1 + 1); |
717a57c2 | 953 | break; |
2368dcda | 954 | |
a070d8ce VZ |
955 | // TODO: we should use gdk_keyval_name() (a.k.a. |
956 | // XKeysymToString) here as well as hardcoding the keysym | |
957 | // names this might be not portable | |
bbcd4085 | 958 | case WXK_INSERT: |
3ca6a5f0 BP |
959 | hotkey << wxT("Insert" ); |
960 | break; | |
961 | case WXK_DELETE: | |
962 | hotkey << wxT("Delete" ); | |
963 | break; | |
2b5f62a0 VZ |
964 | case WXK_UP: |
965 | hotkey << wxT("Up" ); | |
966 | break; | |
967 | case WXK_DOWN: | |
968 | hotkey << wxT("Down" ); | |
969 | break; | |
970 | case WXK_PAGEUP: | |
f005ea42 | 971 | hotkey << wxT("Page_Up" ); |
2b5f62a0 VZ |
972 | break; |
973 | case WXK_PAGEDOWN: | |
f005ea42 | 974 | hotkey << wxT("Page_Down" ); |
2b5f62a0 VZ |
975 | break; |
976 | case WXK_LEFT: | |
977 | hotkey << wxT("Left" ); | |
978 | break; | |
979 | case WXK_RIGHT: | |
980 | hotkey << wxT("Right" ); | |
981 | break; | |
982 | case WXK_HOME: | |
983 | hotkey << wxT("Home" ); | |
984 | break; | |
985 | case WXK_END: | |
986 | hotkey << wxT("End" ); | |
987 | break; | |
988 | case WXK_RETURN: | |
989 | hotkey << wxT("Return" ); | |
990 | break; | |
bbcd4085 RR |
991 | case WXK_BACK: |
992 | hotkey << wxT("BackSpace" ); | |
993 | break; | |
994 | case WXK_TAB: | |
995 | hotkey << wxT("Tab" ); | |
996 | break; | |
997 | case WXK_ESCAPE: | |
998 | hotkey << wxT("Esc" ); | |
999 | break; | |
1000 | case WXK_SPACE: | |
1001 | hotkey << wxT("space" ); | |
1002 | break; | |
1003 | case WXK_MULTIPLY: | |
1004 | hotkey << wxT("Multiply" ); | |
1005 | break; | |
1006 | case WXK_ADD: | |
1007 | hotkey << wxT("Add" ); | |
1008 | break; | |
1009 | case WXK_SEPARATOR: | |
1010 | hotkey << wxT("Separator" ); | |
1011 | break; | |
1012 | case WXK_SUBTRACT: | |
1013 | hotkey << wxT("Subtract" ); | |
1014 | break; | |
1015 | case WXK_DECIMAL: | |
1016 | hotkey << wxT("Decimal" ); | |
1017 | break; | |
1018 | case WXK_DIVIDE: | |
1019 | hotkey << wxT("Divide" ); | |
1020 | break; | |
1021 | case WXK_CANCEL: | |
1022 | hotkey << wxT("Cancel" ); | |
1023 | break; | |
1024 | case WXK_CLEAR: | |
1025 | hotkey << wxT("Clear" ); | |
1026 | break; | |
1027 | case WXK_MENU: | |
1028 | hotkey << wxT("Menu" ); | |
1029 | break; | |
1030 | case WXK_PAUSE: | |
1031 | hotkey << wxT("Pause" ); | |
1032 | break; | |
1033 | case WXK_CAPITAL: | |
1034 | hotkey << wxT("Capital" ); | |
1035 | break; | |
1036 | case WXK_SELECT: | |
1037 | hotkey << wxT("Select" ); | |
1038 | break; | |
1039 | case WXK_PRINT: | |
1040 | hotkey << wxT("Print" ); | |
1041 | break; | |
1042 | case WXK_EXECUTE: | |
1043 | hotkey << wxT("Execute" ); | |
1044 | break; | |
1045 | case WXK_SNAPSHOT: | |
1046 | hotkey << wxT("Snapshot" ); | |
1047 | break; | |
1048 | case WXK_HELP: | |
1049 | hotkey << wxT("Help" ); | |
1050 | break; | |
1051 | case WXK_NUMLOCK: | |
1052 | hotkey << wxT("Num_Lock" ); | |
1053 | break; | |
1054 | case WXK_SCROLL: | |
1055 | hotkey << wxT("Scroll_Lock" ); | |
1056 | break; | |
1057 | case WXK_NUMPAD_INSERT: | |
1058 | hotkey << wxT("KP_Insert" ); | |
1059 | break; | |
1060 | case WXK_NUMPAD_DELETE: | |
1061 | hotkey << wxT("KP_Delete" ); | |
1062 | break; | |
1063 | case WXK_NUMPAD_SPACE: | |
1064 | hotkey << wxT("KP_Space" ); | |
1065 | break; | |
1066 | case WXK_NUMPAD_TAB: | |
1067 | hotkey << wxT("KP_Tab" ); | |
1068 | break; | |
1069 | case WXK_NUMPAD_ENTER: | |
1070 | hotkey << wxT("KP_Enter" ); | |
1071 | break; | |
1072 | case WXK_NUMPAD_F1: case WXK_NUMPAD_F2: case WXK_NUMPAD_F3: | |
1073 | case WXK_NUMPAD_F4: | |
1074 | hotkey += wxString::Format(wxT("KP_F%d"), code - WXK_NUMPAD_F1 + 1); | |
1075 | break; | |
1076 | case WXK_NUMPAD_HOME: | |
1077 | hotkey << wxT("KP_Home" ); | |
1078 | break; | |
1079 | case WXK_NUMPAD_LEFT: | |
1080 | hotkey << wxT("KP_Left" ); | |
1081 | break; | |
1082 | case WXK_NUMPAD_UP: | |
1083 | hotkey << wxT("KP_Up" ); | |
1084 | break; | |
1085 | case WXK_NUMPAD_RIGHT: | |
1086 | hotkey << wxT("KP_Right" ); | |
1087 | break; | |
1088 | case WXK_NUMPAD_DOWN: | |
1089 | hotkey << wxT("KP_Down" ); | |
1090 | break; | |
5bd24f72 | 1091 | case WXK_NUMPAD_PAGEUP: |
f005ea42 | 1092 | hotkey << wxT("KP_Page_Up" ); |
bbcd4085 | 1093 | break; |
5bd24f72 | 1094 | case WXK_NUMPAD_PAGEDOWN: |
f005ea42 | 1095 | hotkey << wxT("KP_Page_Down" ); |
bbcd4085 RR |
1096 | break; |
1097 | case WXK_NUMPAD_END: | |
1098 | hotkey << wxT("KP_End" ); | |
1099 | break; | |
1100 | case WXK_NUMPAD_BEGIN: | |
1101 | hotkey << wxT("KP_Begin" ); | |
1102 | break; | |
1103 | case WXK_NUMPAD_EQUAL: | |
1104 | hotkey << wxT("KP_Equal" ); | |
1105 | break; | |
1106 | case WXK_NUMPAD_MULTIPLY: | |
1107 | hotkey << wxT("KP_Multiply" ); | |
1108 | break; | |
1109 | case WXK_NUMPAD_ADD: | |
1110 | hotkey << wxT("KP_Add" ); | |
1111 | break; | |
1112 | case WXK_NUMPAD_SEPARATOR: | |
1113 | hotkey << wxT("KP_Separator" ); | |
1114 | break; | |
1115 | case WXK_NUMPAD_SUBTRACT: | |
1116 | hotkey << wxT("KP_Subtract" ); | |
1117 | break; | |
1118 | case WXK_NUMPAD_DECIMAL: | |
1119 | hotkey << wxT("KP_Decimal" ); | |
1120 | break; | |
1121 | case WXK_NUMPAD_DIVIDE: | |
1122 | hotkey << wxT("KP_Divide" ); | |
1123 | break; | |
1124 | case WXK_NUMPAD0: case WXK_NUMPAD1: case WXK_NUMPAD2: | |
1125 | case WXK_NUMPAD3: case WXK_NUMPAD4: case WXK_NUMPAD5: | |
1126 | case WXK_NUMPAD6: case WXK_NUMPAD7: case WXK_NUMPAD8: case WXK_NUMPAD9: | |
1127 | hotkey += wxString::Format(wxT("KP_%d"), code - WXK_NUMPAD0); | |
1128 | break; | |
1129 | case WXK_WINDOWS_LEFT: | |
1130 | hotkey << wxT("Super_L" ); | |
1131 | break; | |
1132 | case WXK_WINDOWS_RIGHT: | |
1133 | hotkey << wxT("Super_R" ); | |
1134 | break; | |
1135 | case WXK_WINDOWS_MENU: | |
1136 | hotkey << wxT("Menu" ); | |
1137 | break; | |
1138 | case WXK_COMMAND: | |
1139 | hotkey << wxT("Command" ); | |
1140 | break; | |
1141 | /* These probably wouldn't work as there is no SpecialX in gdk/keynames.txt | |
88d19775 MR |
1142 | case WXK_SPECIAL1: case WXK_SPECIAL2: case WXK_SPECIAL3: case WXK_SPECIAL4: |
1143 | case WXK_SPECIAL5: case WXK_SPECIAL6: case WXK_SPECIAL7: case WXK_SPECIAL8: | |
1144 | case WXK_SPECIAL9: case WXK_SPECIAL10: case WXK_SPECIAL11: case WXK_SPECIAL12: | |
1145 | case WXK_SPECIAL13: case WXK_SPECIAL14: case WXK_SPECIAL15: case WXK_SPECIAL16: | |
bbcd4085 RR |
1146 | case WXK_SPECIAL17: case WXK_SPECIAL18: case WXK_SPECIAL19: case WXK_SPECIAL20: |
1147 | hotkey += wxString::Format(wxT("Special%d"), code - WXK_SPECIAL1 + 1); | |
1148 | break; | |
1149 | */ | |
90527a50 | 1150 | // if there are any other keys wxAcceleratorEntry::Create() may |
a070d8ce | 1151 | // return, we should process them here |
8bbe427f | 1152 | |
717a57c2 | 1153 | default: |
a070d8ce | 1154 | if ( code < 127 ) |
717a57c2 | 1155 | { |
30083ad8 VZ |
1156 | const wxString |
1157 | name = wxGTK_CONV_BACK_SYS(gdk_keyval_name((guint)code)); | |
1158 | if ( !name.empty() ) | |
a070d8ce VZ |
1159 | { |
1160 | hotkey << name; | |
1161 | break; | |
1162 | } | |
717a57c2 | 1163 | } |
c801d85f | 1164 | |
717a57c2 VZ |
1165 | wxFAIL_MSG( wxT("unknown keyboard accel") ); |
1166 | } | |
c801d85f | 1167 | |
717a57c2 | 1168 | delete accel; |
631f1bfe | 1169 | } |
717a57c2 VZ |
1170 | |
1171 | return hotkey; | |
631f1bfe | 1172 | } |
a070d8ce | 1173 | |
1deef997 PC |
1174 | static void |
1175 | wxGetGtkAccel(const wxMenuItem* item, guint* accel_key, GdkModifierType* accel_mods) | |
1176 | { | |
1177 | *accel_key = 0; | |
1178 | const wxString string = GetGtkHotKey(*item); | |
1179 | if (!string.empty()) | |
1180 | gtk_accelerator_parse(wxGTK_CONV_SYS(string), accel_key, accel_mods); | |
1181 | else | |
1182 | { | |
1183 | GtkStockItem stock_item; | |
1184 | const char* stockid = wxGetStockGtkID(item->GetId()); | |
1185 | if (stockid && gtk_stock_lookup(stockid, &stock_item)) | |
1186 | { | |
1187 | *accel_key = stock_item.keyval; | |
1188 | *accel_mods = stock_item.modifier; | |
1189 | } | |
1190 | } | |
1191 | } | |
717a57c2 | 1192 | #endif // wxUSE_ACCEL |
43a11e2a | 1193 | |
bcf881ef JS |
1194 | const char *wxGetStockGtkID(wxWindowID id) |
1195 | { | |
1196 | #define STOCKITEM(wx,gtk) \ | |
1197 | case wx: \ | |
1198 | return gtk; | |
1199 | ||
bcf881ef JS |
1200 | #if GTK_CHECK_VERSION(2,6,0) |
1201 | #define STOCKITEM_26(wx,gtk) STOCKITEM(wx,gtk) | |
1202 | #else | |
1deef997 | 1203 | #define STOCKITEM_26(wx,gtk) |
bcf881ef JS |
1204 | #endif |
1205 | ||
6b1eedc1 VZ |
1206 | #if GTK_CHECK_VERSION(2,8,0) |
1207 | #define STOCKITEM_28(wx,gtk) STOCKITEM(wx,gtk) | |
1208 | #else | |
1209 | #define STOCKITEM_28(wx,gtk) | |
1210 | #endif | |
1211 | ||
bcf881ef JS |
1212 | #if GTK_CHECK_VERSION(2,10,0) |
1213 | #define STOCKITEM_210(wx,gtk) STOCKITEM(wx,gtk) | |
1214 | #else | |
1deef997 | 1215 | #define STOCKITEM_210(wx,gtk) |
bcf881ef JS |
1216 | #endif |
1217 | ||
1218 | ||
1219 | switch (id) | |
1220 | { | |
1221 | STOCKITEM_26(wxID_ABOUT, GTK_STOCK_ABOUT) | |
1222 | STOCKITEM(wxID_ADD, GTK_STOCK_ADD) | |
1223 | STOCKITEM(wxID_APPLY, GTK_STOCK_APPLY) | |
6b1eedc1 | 1224 | STOCKITEM(wxID_BACKWARD, GTK_STOCK_GO_BACK) |
bcf881ef | 1225 | STOCKITEM(wxID_BOLD, GTK_STOCK_BOLD) |
6b1eedc1 | 1226 | STOCKITEM(wxID_BOTTOM, GTK_STOCK_GOTO_BOTTOM) |
bcf881ef | 1227 | STOCKITEM(wxID_CANCEL, GTK_STOCK_CANCEL) |
6b1eedc1 | 1228 | STOCKITEM(wxID_CDROM, GTK_STOCK_CDROM) |
bcf881ef JS |
1229 | STOCKITEM(wxID_CLEAR, GTK_STOCK_CLEAR) |
1230 | STOCKITEM(wxID_CLOSE, GTK_STOCK_CLOSE) | |
6b1eedc1 | 1231 | STOCKITEM(wxID_CONVERT, GTK_STOCK_CONVERT) |
bcf881ef JS |
1232 | STOCKITEM(wxID_COPY, GTK_STOCK_COPY) |
1233 | STOCKITEM(wxID_CUT, GTK_STOCK_CUT) | |
1234 | STOCKITEM(wxID_DELETE, GTK_STOCK_DELETE) | |
6b1eedc1 | 1235 | STOCKITEM(wxID_DOWN, GTK_STOCK_GO_DOWN) |
bcf881ef | 1236 | STOCKITEM_26(wxID_EDIT, GTK_STOCK_EDIT) |
6b1eedc1 VZ |
1237 | STOCKITEM(wxID_EXECUTE, GTK_STOCK_EXECUTE) |
1238 | STOCKITEM(wxID_EXIT, GTK_STOCK_QUIT) | |
bcf881ef | 1239 | STOCKITEM_26(wxID_FILE, GTK_STOCK_FILE) |
6b1eedc1 VZ |
1240 | STOCKITEM(wxID_FIND, GTK_STOCK_FIND) |
1241 | STOCKITEM(wxID_FIRST, GTK_STOCK_GOTO_FIRST) | |
1242 | STOCKITEM(wxID_FLOPPY, GTK_STOCK_FLOPPY) | |
bcf881ef | 1243 | STOCKITEM(wxID_FORWARD, GTK_STOCK_GO_FORWARD) |
6b1eedc1 | 1244 | STOCKITEM(wxID_HARDDISK, GTK_STOCK_HARDDISK) |
bcf881ef JS |
1245 | STOCKITEM(wxID_HELP, GTK_STOCK_HELP) |
1246 | STOCKITEM(wxID_HOME, GTK_STOCK_HOME) | |
1deef997 | 1247 | STOCKITEM(wxID_INDENT, GTK_STOCK_INDENT) |
bcf881ef | 1248 | STOCKITEM(wxID_INDEX, GTK_STOCK_INDEX) |
6b1eedc1 | 1249 | STOCKITEM_28(wxID_INFO, GTK_STOCK_INFO) |
bcf881ef | 1250 | STOCKITEM(wxID_ITALIC, GTK_STOCK_ITALIC) |
6b1eedc1 | 1251 | STOCKITEM(wxID_JUMP_TO, GTK_STOCK_JUMP_TO) |
bcf881ef JS |
1252 | STOCKITEM(wxID_JUSTIFY_CENTER, GTK_STOCK_JUSTIFY_CENTER) |
1253 | STOCKITEM(wxID_JUSTIFY_FILL, GTK_STOCK_JUSTIFY_FILL) | |
1254 | STOCKITEM(wxID_JUSTIFY_LEFT, GTK_STOCK_JUSTIFY_LEFT) | |
1255 | STOCKITEM(wxID_JUSTIFY_RIGHT, GTK_STOCK_JUSTIFY_RIGHT) | |
6b1eedc1 VZ |
1256 | STOCKITEM(wxID_LAST, GTK_STOCK_GOTO_LAST) |
1257 | STOCKITEM(wxID_NETWORK, GTK_STOCK_NETWORK) | |
bcf881ef JS |
1258 | STOCKITEM(wxID_NEW, GTK_STOCK_NEW) |
1259 | STOCKITEM(wxID_NO, GTK_STOCK_NO) | |
1260 | STOCKITEM(wxID_OK, GTK_STOCK_OK) | |
1261 | STOCKITEM(wxID_OPEN, GTK_STOCK_OPEN) | |
1262 | STOCKITEM(wxID_PASTE, GTK_STOCK_PASTE) | |
1263 | STOCKITEM(wxID_PREFERENCES, GTK_STOCK_PREFERENCES) | |
bcf881ef | 1264 | STOCKITEM(wxID_PREVIEW, GTK_STOCK_PRINT_PREVIEW) |
6b1eedc1 | 1265 | STOCKITEM(wxID_PRINT, GTK_STOCK_PRINT) |
bcf881ef | 1266 | STOCKITEM(wxID_PROPERTIES, GTK_STOCK_PROPERTIES) |
bcf881ef JS |
1267 | STOCKITEM(wxID_REDO, GTK_STOCK_REDO) |
1268 | STOCKITEM(wxID_REFRESH, GTK_STOCK_REFRESH) | |
1269 | STOCKITEM(wxID_REMOVE, GTK_STOCK_REMOVE) | |
6b1eedc1 | 1270 | STOCKITEM(wxID_REPLACE, GTK_STOCK_FIND_AND_REPLACE) |
bcf881ef JS |
1271 | STOCKITEM(wxID_REVERT_TO_SAVED, GTK_STOCK_REVERT_TO_SAVED) |
1272 | STOCKITEM(wxID_SAVE, GTK_STOCK_SAVE) | |
1273 | STOCKITEM(wxID_SAVEAS, GTK_STOCK_SAVE_AS) | |
1274 | STOCKITEM_210(wxID_SELECTALL, GTK_STOCK_SELECT_ALL) | |
6b1eedc1 VZ |
1275 | STOCKITEM(wxID_SELECT_COLOR, GTK_STOCK_SELECT_COLOR) |
1276 | STOCKITEM(wxID_SELECT_FONT, GTK_STOCK_SELECT_FONT) | |
1277 | STOCKITEM(wxID_SORT_ASCENDING, GTK_STOCK_SORT_ASCENDING) | |
1278 | STOCKITEM(wxID_SORT_DESCENDING, GTK_STOCK_SORT_DESCENDING) | |
1279 | STOCKITEM(wxID_SPELL_CHECK, GTK_STOCK_SPELL_CHECK) | |
bcf881ef | 1280 | STOCKITEM(wxID_STOP, GTK_STOCK_STOP) |
6b1eedc1 VZ |
1281 | STOCKITEM(wxID_STRIKETHROUGH, GTK_STOCK_STRIKETHROUGH) |
1282 | STOCKITEM(wxID_TOP, GTK_STOCK_GOTO_TOP) | |
bcf881ef JS |
1283 | STOCKITEM(wxID_UNDELETE, GTK_STOCK_UNDELETE) |
1284 | STOCKITEM(wxID_UNDERLINE, GTK_STOCK_UNDERLINE) | |
1285 | STOCKITEM(wxID_UNDO, GTK_STOCK_UNDO) | |
1deef997 | 1286 | STOCKITEM(wxID_UNINDENT, GTK_STOCK_UNINDENT) |
6b1eedc1 | 1287 | STOCKITEM(wxID_UP, GTK_STOCK_GO_UP) |
bcf881ef JS |
1288 | STOCKITEM(wxID_YES, GTK_STOCK_YES) |
1289 | STOCKITEM(wxID_ZOOM_100, GTK_STOCK_ZOOM_100) | |
1290 | STOCKITEM(wxID_ZOOM_FIT, GTK_STOCK_ZOOM_FIT) | |
1291 | STOCKITEM(wxID_ZOOM_IN, GTK_STOCK_ZOOM_IN) | |
1292 | STOCKITEM(wxID_ZOOM_OUT, GTK_STOCK_ZOOM_OUT) | |
1293 | ||
1294 | default: | |
bcf881ef JS |
1295 | break; |
1296 | }; | |
1297 | ||
1298 | #undef STOCKITEM | |
1299 | ||
1300 | return NULL; | |
1301 | } | |
1302 | ||
28fcfbfe | 1303 | #endif // wxUSE_MENUS |