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