]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/menu.cpp
ignore clicks on a toolbar but outside any button
[wxWidgets.git] / src / gtk / menu.cpp
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: menu.cpp
3// Purpose:
4// Author: Robert Roebling
96fd301f 5// Id: $Id$
a81258be 6// Copyright: (c) 1998 Robert Roebling
96fd301f 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifdef __GNUG__
11#pragma implementation "menu.h"
6ca41e57 12#pragma implementation "menuitem.h"
c801d85f
KB
13#endif
14
96fd301f 15#include "wx/log.h"
30dea054 16#include "wx/intl.h"
06cfab17 17#include "wx/app.h"
37d403aa 18#include "wx/bitmap.h"
3dfac970 19#include "wx/menu.h"
c801d85f 20
974e8d94
VZ
21#if wxUSE_ACCEL
22 #include "wx/accel.h"
23#endif // wxUSE_ACCEL
24
16c1f79c 25#include <gdk/gdk.h>
cc47eed9 26#include <gdk/gdkkeysyms.h>
16c1f79c 27#include <gtk/gtk.h>
83624f79 28
acfd422a
RR
29//-----------------------------------------------------------------------------
30// idle system
31//-----------------------------------------------------------------------------
32
33extern void wxapp_install_idle_handler();
34extern bool g_isIdle;
35
717a57c2
VZ
36#if (GTK_MINOR_VERSION > 0) && wxUSE_ACCEL
37static wxString GetHotKey( const wxMenuItem& item );
38#endif
39
cc47eed9
RR
40//-----------------------------------------------------------------------------
41// substitute for missing GtkPixmapMenuItem
42//-----------------------------------------------------------------------------
37d403aa 43
cc47eed9
RR
44#define GTK_TYPE_PIXMAP_MENU_ITEM (gtk_pixmap_menu_item_get_type ())
45#define GTK_PIXMAP_MENU_ITEM(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_PIXMAP_MENU_ITEM, GtkPixmapMenuItem))
37d403aa 46#define GTK_PIXMAP_MENU_ITEM_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PIXMAP_MENU_ITEM, GtkPixmapMenuItemClass))
cc47eed9 47#define GTK_IS_PIXMAP_MENU_ITEM(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_PIXMAP_MENU_ITEM))
37d403aa
JS
48#define GTK_IS_PIXMAP_MENU_ITEM_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PIXMAP_MENU_ITEM))
49//#define GTK_PIXMAP_MENU_ITEM_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PIXMAP_MENU_ITEM))
cc47eed9 50#define GTK_PIXMAP_MENU_ITEM_GET_CLASS(obj) (GTK_PIXMAP_MENU_ITEM_CLASS( GTK_OBJECT_GET_CLASS(obj)))
37d403aa
JS
51
52#ifndef GTK_MENU_ITEM_GET_CLASS
53#define GTK_MENU_ITEM_GET_CLASS(obj) (GTK_MENU_ITEM_CLASS( GTK_OBJECT_GET_CLASS(obj)))
54#endif
55
56typedef struct _GtkPixmapMenuItem GtkPixmapMenuItem;
57typedef struct _GtkPixmapMenuItemClass GtkPixmapMenuItemClass;
58
59struct _GtkPixmapMenuItem
60{
cc47eed9 61 GtkMenuItem menu_item;
37d403aa 62
cc47eed9 63 GtkWidget *pixmap;
37d403aa
JS
64};
65
66struct _GtkPixmapMenuItemClass
67{
cc47eed9 68 GtkMenuItemClass parent_class;
37d403aa 69
cc47eed9
RR
70 guint orig_toggle_size;
71 guint have_pixmap_count;
37d403aa
JS
72};
73
74
cc47eed9
RR
75GtkType gtk_pixmap_menu_item_get_type (void);
76GtkWidget* gtk_pixmap_menu_item_new (void);
77void gtk_pixmap_menu_item_set_pixmap (GtkPixmapMenuItem *menu_item,
78 GtkWidget *pixmap);
37d403aa 79
f6bcfd97
BP
80//-----------------------------------------------------------------------------
81// idle system
82//-----------------------------------------------------------------------------
83
84static wxString wxReplaceUnderscore( const wxString& title )
85{
86 const wxChar *pc;
87
88 /* GTK 1.2 wants to have "_" instead of "&" for accelerators */
89 wxString str;
90 for ( pc = title; *pc != wxT('\0'); pc++ )
91 {
92 if (*pc == wxT('&'))
93 {
94#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
95 str << wxT('_');
96 }
97 else if (*pc == wxT('/'))
98 {
99 str << wxT('\\');
100#endif
101 }
102 else
103 {
104#if __WXGTK12__
105 if ( *pc == wxT('_') )
106 {
107 // underscores must be doubled to prevent them from being
108 // interpreted as accelerator character prefix by GTK
109 str << *pc;
110 }
111#endif // GTK+ 1.2
112
113 str << *pc;
114 }
115 }
116 return str;
117}
118
c801d85f
KB
119//-----------------------------------------------------------------------------
120// wxMenuBar
121//-----------------------------------------------------------------------------
122
123IMPLEMENT_DYNAMIC_CLASS(wxMenuBar,wxWindow)
124
3502e687
RR
125wxMenuBar::wxMenuBar( long style )
126{
1e133b7d 127 /* the parent window is known after wxFrame::SetMenu() */
23280650 128 m_needParent = FALSE;
ae53c98c 129 m_style = style;
9c884972 130 m_invokingWindow = (wxWindow*) NULL;
23280650 131
4dcaf11a 132 if (!PreCreation( (wxWindow*) NULL, wxDefaultPosition, wxDefaultSize ) ||
223d09f6 133 !CreateBase( (wxWindow*) NULL, -1, wxDefaultPosition, wxDefaultSize, style, wxDefaultValidator, wxT("menubar") ))
4dcaf11a 134 {
223d09f6 135 wxFAIL_MSG( wxT("wxMenuBar creation failed") );
455fadaa 136 return;
4dcaf11a 137 }
3502e687
RR
138
139 m_menus.DeleteContents( TRUE );
140
1e133b7d
RR
141 /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */
142#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
143 m_accel = gtk_accel_group_new();
144 m_factory = gtk_item_factory_new( GTK_TYPE_MENU_BAR, "<main>", m_accel );
145 m_menubar = gtk_item_factory_get_widget( m_factory, "<main>" );
23280650 146#else
3502e687 147 m_menubar = gtk_menu_bar_new();
1e133b7d 148#endif
3502e687
RR
149
150 if (style & wxMB_DOCKABLE)
151 {
152 m_widget = gtk_handle_box_new();
c626a8b7
VZ
153 gtk_container_add( GTK_CONTAINER(m_widget), GTK_WIDGET(m_menubar) );
154 gtk_widget_show( GTK_WIDGET(m_menubar) );
3502e687
RR
155 }
156 else
157 {
158 m_widget = GTK_WIDGET(m_menubar);
159 }
160
161 PostCreation();
c4608a8a 162
db434467 163 ApplyWidgetStyle();
3502e687
RR
164}
165
96fd301f 166wxMenuBar::wxMenuBar()
c801d85f 167{
1e133b7d
RR
168 /* the parent window is known after wxFrame::SetMenu() */
169 m_needParent = FALSE;
ae53c98c 170 m_style = 0;
9c884972 171 m_invokingWindow = (wxWindow*) NULL;
23280650 172
4dcaf11a 173 if (!PreCreation( (wxWindow*) NULL, wxDefaultPosition, wxDefaultSize ) ||
223d09f6 174 !CreateBase( (wxWindow*) NULL, -1, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, wxT("menubar") ))
4dcaf11a 175 {
223d09f6 176 wxFAIL_MSG( wxT("wxMenuBar creation failed") );
455fadaa 177 return;
4dcaf11a 178 }
974e8d94 179
83624f79 180 m_menus.DeleteContents( TRUE );
96fd301f 181
1e133b7d
RR
182 /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */
183#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
184 m_accel = gtk_accel_group_new();
185 m_factory = gtk_item_factory_new( GTK_TYPE_MENU_BAR, "<main>", m_accel );
186 m_menubar = gtk_item_factory_get_widget( m_factory, "<main>" );
23280650 187#else
83624f79 188 m_menubar = gtk_menu_bar_new();
1e133b7d 189#endif
8bbe427f 190
828f655f 191 m_widget = GTK_WIDGET(m_menubar);
96fd301f 192
83624f79 193 PostCreation();
c4608a8a 194
db434467 195 ApplyWidgetStyle();
6de97a3b 196}
c801d85f 197
1e133b7d
RR
198wxMenuBar::~wxMenuBar()
199{
d1b15f03 200// gtk_object_unref( GTK_OBJECT(m_factory) ); why not ?
1e133b7d
RR
201}
202
5bd9e519
RR
203static void wxMenubarUnsetInvokingWindow( wxMenu *menu, wxWindow *win )
204{
205 menu->SetInvokingWindow( (wxWindow*) NULL );
206
207#if (GTK_MINOR_VERSION > 0)
208 wxWindow *top_frame = win;
8487f887 209 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
bd77da97 210 top_frame = top_frame->GetParent();
5bd9e519
RR
211
212 /* support for native hot keys */
213 gtk_accel_group_detach( menu->m_accel, GTK_OBJECT(top_frame->m_widget) );
214#endif
215
1987af7e 216 wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst();
5bd9e519
RR
217 while (node)
218 {
1987af7e 219 wxMenuItem *menuitem = node->GetData();
5bd9e519
RR
220 if (menuitem->IsSubMenu())
221 wxMenubarUnsetInvokingWindow( menuitem->GetSubMenu(), win );
1987af7e 222 node = node->GetNext();
5bd9e519
RR
223 }
224}
225
226static void wxMenubarSetInvokingWindow( wxMenu *menu, wxWindow *win )
227{
228 menu->SetInvokingWindow( win );
229
b4da05a6 230#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
5bd9e519 231 wxWindow *top_frame = win;
8487f887 232 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
bd77da97 233 top_frame = top_frame->GetParent();
5bd9e519
RR
234
235 /* support for native hot keys */
b4da05a6
VZ
236 GtkObject *obj = GTK_OBJECT(top_frame->m_widget);
237 if ( !g_slist_find( menu->m_accel->attach_objects, obj ) )
238 gtk_accel_group_attach( menu->m_accel, obj );
5bd9e519
RR
239#endif
240
1987af7e 241 wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst();
5bd9e519
RR
242 while (node)
243 {
1987af7e 244 wxMenuItem *menuitem = node->GetData();
5bd9e519
RR
245 if (menuitem->IsSubMenu())
246 wxMenubarSetInvokingWindow( menuitem->GetSubMenu(), win );
1987af7e 247 node = node->GetNext();
5bd9e519
RR
248 }
249}
250
251void wxMenuBar::SetInvokingWindow( wxWindow *win )
252{
9c884972 253 m_invokingWindow = win;
5bd9e519
RR
254#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
255 wxWindow *top_frame = win;
8487f887 256 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
bd77da97 257 top_frame = top_frame->GetParent();
5bd9e519
RR
258
259 /* support for native key accelerators indicated by underscroes */
b4da05a6
VZ
260 GtkObject *obj = GTK_OBJECT(top_frame->m_widget);
261 if ( !g_slist_find( m_accel->attach_objects, obj ) )
262 gtk_accel_group_attach( m_accel, obj );
5bd9e519
RR
263#endif
264
1987af7e 265 wxMenuList::Node *node = m_menus.GetFirst();
5bd9e519
RR
266 while (node)
267 {
1987af7e 268 wxMenu *menu = node->GetData();
5bd9e519 269 wxMenubarSetInvokingWindow( menu, win );
1987af7e 270 node = node->GetNext();
5bd9e519
RR
271 }
272}
273
274void wxMenuBar::UnsetInvokingWindow( wxWindow *win )
275{
9c884972 276 m_invokingWindow = (wxWindow*) NULL;
5bd9e519
RR
277#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
278 wxWindow *top_frame = win;
8487f887 279 while (top_frame->GetParent() && !(top_frame->IsTopLevel()))
bd77da97 280 top_frame = top_frame->GetParent();
5bd9e519
RR
281
282 /* support for native key accelerators indicated by underscroes */
283 gtk_accel_group_detach( m_accel, GTK_OBJECT(top_frame->m_widget) );
284#endif
285
1987af7e 286 wxMenuList::Node *node = m_menus.GetFirst();
5bd9e519
RR
287 while (node)
288 {
1987af7e 289 wxMenu *menu = node->GetData();
5bd9e519 290 wxMenubarUnsetInvokingWindow( menu, win );
1987af7e 291 node = node->GetNext();
5bd9e519
RR
292 }
293}
294
3dfac970 295bool wxMenuBar::Append( wxMenu *menu, const wxString &title )
c801d85f 296{
f03ec224
VZ
297 if ( !wxMenuBarBase::Append( menu, title ) )
298 return FALSE;
299
300 return GtkAppend(menu, title);
301}
23280650 302
f03ec224
VZ
303bool wxMenuBar::GtkAppend(wxMenu *menu, const wxString& title)
304{
f6bcfd97 305 wxString str( wxReplaceUnderscore( title ) );
1e133b7d
RR
306
307 /* this doesn't have much effect right now */
308 menu->SetTitle( str );
23280650 309
1e133b7d
RR
310 /* GTK 1.2.0 doesn't have gtk_item_factory_get_item(), but GTK 1.2.1 has. */
311#if (GTK_MINOR_VERSION > 0) && (GTK_MICRO_VERSION > 0)
312
313 /* local buffer in multibyte form */
2b2edbed 314 wxString buf;
223d09f6 315 buf << wxT('/') << str.c_str();
c980c992 316
dc6c62a9 317 char *cbuf = new char[buf.Length()+1];
c980c992
GL
318 strcpy(cbuf, buf.mbc_str());
319
1e133b7d 320 GtkItemFactoryEntry entry;
c980c992 321 entry.path = (gchar *)cbuf; // const_cast
1e133b7d
RR
322 entry.accelerator = (gchar*) NULL;
323 entry.callback = (GtkItemFactoryCallback) NULL;
324 entry.callback_action = 0;
90350682 325 entry.item_type = (char *)"<Branch>";
2b2edbed 326
1e133b7d 327 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
1e133b7d 328 /* in order to get the pointer to the item we need the item text _without_ underscores */
223d09f6 329 wxString tmp = wxT("<main>/");
f6bcfd97 330 const wxChar *pc;
223d09f6 331 for ( pc = str; *pc != wxT('\0'); pc++ )
1e133b7d 332 {
455fadaa
VZ
333 // contrary to the common sense, we must throw out _all_ underscores,
334 // (i.e. "Hello__World" => "HelloWorld" and not "Hello_World" as we
974e8d94 335 // might naively think). IMHO it's a bug in GTK+ (VZ)
223d09f6 336 while (*pc == wxT('_'))
455fadaa 337 pc++;
2b2edbed 338 tmp << *pc;
034be888 339 }
1e133b7d 340 menu->m_owner = gtk_item_factory_get_item( m_factory, tmp.mb_str() );
1e133b7d 341 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu );
2b2edbed 342 delete [] cbuf;
1e133b7d 343#else
96fd301f 344
1e133b7d 345 menu->m_owner = gtk_menu_item_new_with_label( str.mb_str() );
2b1c162e
RR
346 gtk_widget_show( menu->m_owner );
347 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu->m_owner), menu->m_menu );
96fd301f 348
2b1c162e 349 gtk_menu_bar_append( GTK_MENU_BAR(m_menubar), menu->m_owner );
23280650 350
1e133b7d 351#endif
9c884972
RR
352
353 // m_invokingWindow is set after wxFrame::SetMenuBar(). This call enables
354 // adding menu later on.
355 if (m_invokingWindow)
356 wxMenubarSetInvokingWindow( menu, m_invokingWindow );
3dfac970
VZ
357
358 return TRUE;
359}
360
361bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title)
362{
363 if ( !wxMenuBarBase::Insert(pos, menu, title) )
364 return FALSE;
365
f03ec224
VZ
366#if __WXGTK12__
367 // GTK+ doesn't have a function to insert a menu using GtkItemFactory (as
368 // of version 1.2.6), so we first append the item and then change its
369 // index
370 if ( !GtkAppend(menu, title) )
371 return FALSE;
372
186baeb2
RR
373 if (pos+1 >= m_menus.GetCount())
374 return TRUE;
375
f03ec224
VZ
376 GtkMenuShell *menu_shell = GTK_MENU_SHELL(m_factory->widget);
377 gpointer data = g_list_last(menu_shell->children)->data;
378 menu_shell->children = g_list_remove(menu_shell->children, data);
379 menu_shell->children = g_list_insert(menu_shell->children, data, pos);
380
381 return TRUE;
382#else // GTK < 1.2
383 // this should be easy to do with GTK 1.0 - can use standard functions for
384 // this and don't need any hacks like above, but as I don't have GTK 1.0
385 // any more I can't do it
386 wxFAIL_MSG( wxT("TODO") );
3dfac970
VZ
387
388 return FALSE;
f03ec224 389#endif // GTK 1.2/1.0
3dfac970
VZ
390}
391
392wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title)
393{
f03ec224
VZ
394 // remove the old item and insert a new one
395 wxMenu *menuOld = Remove(pos);
396 if ( menuOld && !Insert(pos, menu, title) )
397 {
1d62a8b4 398 return (wxMenu*) NULL;
f03ec224 399 }
3dfac970 400
f03ec224
VZ
401 // either Insert() succeeded or Remove() failed and menuOld is NULL
402 return menuOld;
3dfac970
VZ
403}
404
405wxMenu *wxMenuBar::Remove(size_t pos)
406{
f03ec224
VZ
407 wxMenu *menu = wxMenuBarBase::Remove(pos);
408 if ( !menu )
1d62a8b4 409 return (wxMenu*) NULL;
f03ec224 410
589c9fff 411/*
c4608a8a 412 GtkMenuShell *menu_shell = GTK_MENU_SHELL(m_factory->widget);
589c9fff 413
1d62a8b4
RR
414 printf( "factory entries before %d\n", (int)g_slist_length(m_factory->items) );
415 printf( "menu shell entries before %d\n", (int)g_list_length( menu_shell->children ) );
589c9fff 416*/
c4608a8a 417
1d62a8b4
RR
418 // unparent calls unref() and that would delete the widget so we raise
419 // the ref count to 2 artificially before invoking unparent.
420 gtk_widget_ref( menu->m_menu );
421 gtk_widget_unparent( menu->m_menu );
c4608a8a 422
1d62a8b4 423 gtk_widget_destroy( menu->m_owner );
c4608a8a 424
589c9fff 425/*
1d62a8b4
RR
426 printf( "factory entries after %d\n", (int)g_slist_length(m_factory->items) );
427 printf( "menu shell entries after %d\n", (int)g_list_length( menu_shell->children ) );
589c9fff 428*/
c4608a8a 429
1d62a8b4 430 return menu;
6de97a3b 431}
96fd301f 432
716b7364 433static int FindMenuItemRecursive( const wxMenu *menu, const wxString &menuString, const wxString &itemString )
c801d85f 434{
f6bcfd97 435 if (wxMenuItem::GetLabelFromText(menu->GetTitle()) == wxMenuItem::GetLabelFromText(menuString))
83624f79
RR
436 {
437 int res = menu->FindItem( itemString );
c626a8b7
VZ
438 if (res != wxNOT_FOUND)
439 return res;
83624f79 440 }
c626a8b7 441
1987af7e 442 wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst();
83624f79
RR
443 while (node)
444 {
1987af7e 445 wxMenuItem *item = node->GetData();
83624f79
RR
446 if (item->IsSubMenu())
447 return FindMenuItemRecursive(item->GetSubMenu(), menuString, itemString);
2b1c162e 448
1987af7e 449 node = node->GetNext();
83624f79
RR
450 }
451
c626a8b7
VZ
452 return wxNOT_FOUND;
453}
454
c801d85f
KB
455int wxMenuBar::FindMenuItem( const wxString &menuString, const wxString &itemString ) const
456{
1987af7e 457 wxMenuList::Node *node = m_menus.GetFirst();
83624f79
RR
458 while (node)
459 {
1987af7e 460 wxMenu *menu = node->GetData();
83624f79 461 int res = FindMenuItemRecursive( menu, menuString, itemString);
1987af7e
VZ
462 if (res != -1)
463 return res;
464 node = node->GetNext();
83624f79 465 }
1987af7e
VZ
466
467 return wxNOT_FOUND;
6de97a3b 468}
c801d85f 469
c626a8b7 470// Find a wxMenuItem using its id. Recurses down into sub-menus
96fd301f 471static wxMenuItem* FindMenuItemByIdRecursive(const wxMenu* menu, int id)
716b7364 472{
717a57c2 473 wxMenuItem* result = menu->FindChildItem(id);
716b7364 474
1987af7e 475 wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst();
c626a8b7 476 while ( node && result == NULL )
83624f79 477 {
1987af7e 478 wxMenuItem *item = node->GetData();
83624f79 479 if (item->IsSubMenu())
c626a8b7 480 {
83624f79 481 result = FindMenuItemByIdRecursive( item->GetSubMenu(), id );
c626a8b7 482 }
1987af7e 483 node = node->GetNext();
83624f79 484 }
96fd301f 485
83624f79 486 return result;
6de97a3b 487}
716b7364 488
3dfac970 489wxMenuItem* wxMenuBar::FindItem( int id, wxMenu **menuForItem ) const
716b7364 490{
83624f79 491 wxMenuItem* result = 0;
1987af7e 492 wxMenuList::Node *node = m_menus.GetFirst();
83624f79
RR
493 while (node && result == 0)
494 {
1987af7e 495 wxMenu *menu = node->GetData();
83624f79 496 result = FindMenuItemByIdRecursive( menu, id );
1987af7e 497 node = node->GetNext();
83624f79 498 }
c626a8b7 499
3dfac970
VZ
500 if ( menuForItem )
501 {
502 *menuForItem = result ? result->GetMenu() : (wxMenu *)NULL;
503 }
c626a8b7 504
3dfac970 505 return result;
bbe0af5b
RR
506}
507
3dfac970 508void wxMenuBar::EnableTop( size_t pos, bool flag )
bbe0af5b 509{
3dfac970 510 wxMenuList::Node *node = m_menus.Item( pos );
c626a8b7 511
223d09f6 512 wxCHECK_RET( node, wxT("menu not found") );
c626a8b7 513
3dfac970 514 wxMenu* menu = node->GetData();
c626a8b7
VZ
515
516 if (menu->m_owner)
517 gtk_widget_set_sensitive( menu->m_owner, flag );
bbe0af5b
RR
518}
519
3dfac970 520wxString wxMenuBar::GetLabelTop( size_t pos ) const
bbe0af5b 521{
3dfac970 522 wxMenuList::Node *node = m_menus.Item( pos );
c626a8b7 523
223d09f6 524 wxCHECK_MSG( node, wxT("invalid"), wxT("menu not found") );
c626a8b7 525
3dfac970 526 wxMenu* menu = node->GetData();
c626a8b7 527
f6bcfd97
BP
528 wxString label;
529 wxString text( menu->GetTitle() );
530#if (GTK_MINOR_VERSION > 0)
531 for ( const wxChar *pc = text.c_str(); *pc; pc++ )
532 {
533 if ( *pc == wxT('_') || *pc == wxT('&') )
534 {
535 // '_' is the escape character for GTK+ and '&' is the one for
536 // wxWindows - skip both of them
537 continue;
538 }
539
540 label += *pc;
541 }
542#else // GTK+ 1.0
543 label = text;
544#endif // GTK+ 1.2/1.0
545
546 return label;
bbe0af5b
RR
547}
548
3dfac970 549void wxMenuBar::SetLabelTop( size_t pos, const wxString& label )
bbe0af5b 550{
3dfac970 551 wxMenuList::Node *node = m_menus.Item( pos );
c626a8b7 552
223d09f6 553 wxCHECK_RET( node, wxT("menu not found") );
c626a8b7 554
3dfac970 555 wxMenu* menu = node->GetData();
c626a8b7 556
f6bcfd97
BP
557 wxString str( wxReplaceUnderscore( label ) );
558
559 menu->SetTitle( str );
560
561 if (menu->m_owner)
562 {
563 GtkLabel *label = GTK_LABEL( GTK_BIN(menu->m_owner)->child );
564
565 /* set new text */
566 gtk_label_set( label, str.mb_str());
567
568 /* reparse key accel */
569 (void)gtk_label_parse_uline (GTK_LABEL(label), str.mb_str() );
570 gtk_accel_label_refetch( GTK_ACCEL_LABEL(label) );
571 }
572
bbe0af5b
RR
573}
574
c801d85f 575//-----------------------------------------------------------------------------
cf7a7e13 576// "activate"
c801d85f
KB
577//-----------------------------------------------------------------------------
578
6de97a3b 579static void gtk_menu_clicked_callback( GtkWidget *widget, wxMenu *menu )
c801d85f 580{
1e6feb95
VZ
581 if (g_isIdle)
582 wxapp_install_idle_handler();
c4608a8a 583
83624f79 584 int id = menu->FindMenuIdByMenuItem(widget);
96fd301f 585
83624f79 586 /* should find it for normal (not popup) menu */
1e6feb95
VZ
587 wxASSERT_MSG( (id != -1) || (menu->GetInvokingWindow() != NULL),
588 _T("menu item not found in gtk_menu_clicked_callback") );
96fd301f 589
c626a8b7
VZ
590 if (!menu->IsEnabled(id))
591 return;
96fd301f 592
717a57c2 593 wxMenuItem* item = menu->FindChildItem( id );
223d09f6 594 wxCHECK_RET( item, wxT("error in menu item callback") );
c626a8b7
VZ
595
596 if (item->IsCheckable())
2d17d68f 597 {
974e8d94
VZ
598 bool isReallyChecked = item->IsChecked();
599 if ( item->wxMenuItemBase::IsChecked() == isReallyChecked )
2d17d68f 600 {
c626a8b7 601 /* the menu item has been checked by calling wxMenuItem->Check() */
2d17d68f 602 return;
c626a8b7
VZ
603 }
604 else
605 {
974e8d94
VZ
606 /* the user pressed on the menu item -> report and make consistent
607 * again */
608 item->wxMenuItemBase::Check(isReallyChecked);
c626a8b7 609 }
2d17d68f
RR
610 }
611
1e6feb95 612 menu->SendEvent(item->GetId(), item->IsCheckable() ? item->IsChecked() : -1);
cf7a7e13
RR
613}
614
615//-----------------------------------------------------------------------------
616// "select"
617//-----------------------------------------------------------------------------
618
619static void gtk_menu_hilight_callback( GtkWidget *widget, wxMenu *menu )
620{
acfd422a
RR
621 if (g_isIdle) wxapp_install_idle_handler();
622
83624f79
RR
623 int id = menu->FindMenuIdByMenuItem(widget);
624
625 wxASSERT( id != -1 ); // should find it!
cf7a7e13 626
c626a8b7
VZ
627 if (!menu->IsEnabled(id))
628 return;
cf7a7e13 629
342b6a2f 630 wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, id );
83624f79 631 event.SetEventObject( menu );
cf7a7e13 632
c626a8b7
VZ
633 if (menu->GetEventHandler()->ProcessEvent(event))
634 return;
6de97a3b 635
83624f79
RR
636 wxWindow *win = menu->GetInvokingWindow();
637 if (win) win->GetEventHandler()->ProcessEvent( event );
6de97a3b 638}
c801d85f 639
cd743a6f
RR
640//-----------------------------------------------------------------------------
641// "deselect"
642//-----------------------------------------------------------------------------
643
644static void gtk_menu_nolight_callback( GtkWidget *widget, wxMenu *menu )
645{
acfd422a
RR
646 if (g_isIdle) wxapp_install_idle_handler();
647
cd743a6f
RR
648 int id = menu->FindMenuIdByMenuItem(widget);
649
650 wxASSERT( id != -1 ); // should find it!
651
c626a8b7
VZ
652 if (!menu->IsEnabled(id))
653 return;
cd743a6f
RR
654
655 wxMenuEvent event( wxEVT_MENU_HIGHLIGHT, -1 );
656 event.SetEventObject( menu );
657
c626a8b7
VZ
658 if (menu->GetEventHandler()->ProcessEvent(event))
659 return;
cd743a6f
RR
660
661 wxWindow *win = menu->GetInvokingWindow();
c626a8b7
VZ
662 if (win)
663 win->GetEventHandler()->ProcessEvent( event );
cd743a6f
RR
664}
665
cf7a7e13 666//-----------------------------------------------------------------------------
db1b4961 667// wxMenuItem
cf7a7e13
RR
668//-----------------------------------------------------------------------------
669
7dbf5360 670IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxObject)
974e8d94
VZ
671
672wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu,
673 int id,
674 const wxString& name,
675 const wxString& help,
676 bool isCheckable,
677 wxMenu *subMenu)
678{
679 return new wxMenuItem(parentMenu, id, name, help, isCheckable, subMenu);
680}
96fd301f 681
974e8d94
VZ
682wxMenuItem::wxMenuItem(wxMenu *parentMenu,
683 int id,
684 const wxString& text,
685 const wxString& help,
686 bool isCheckable,
687 wxMenu *subMenu)
c801d85f 688{
974e8d94
VZ
689 m_id = id;
690 m_isCheckable = isCheckable;
83624f79
RR
691 m_isChecked = FALSE;
692 m_isEnabled = TRUE;
974e8d94
VZ
693 m_subMenu = subMenu;
694 m_parentMenu = parentMenu;
695 m_help = help;
696
37d403aa 697 m_labelWidget = (GtkWidget *) NULL;
83624f79 698 m_menuItem = (GtkWidget *) NULL;
974e8d94 699
974e8d94 700 DoSetText(text);
6de97a3b 701}
c801d85f 702
d1b15f03
RR
703wxMenuItem::~wxMenuItem()
704{
705 // don't delete menu items, the menus take care of that
706}
707
717a57c2 708// return the menu item text without any menu accels
3b59cdbf
VZ
709/* static */
710wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
717a57c2
VZ
711{
712 wxString label;
d76419bd 713
3b59cdbf 714 for ( const wxChar *pc = text.c_str(); *pc; pc++ )
717a57c2 715 {
d76419bd 716 if ( *pc == wxT('_') )
717a57c2 717 {
d76419bd
RR
718 // wxGTK escapes "xxx_xxx" to "xxx__xxx"
719 pc++;
720 label += *pc;
721 continue;
722 }
723
724 if ( *pc == wxT('&') )
725 {
726 // wxMSW escapes &
717a57c2
VZ
727 continue;
728 }
729
730 label += *pc;
731 }
717a57c2
VZ
732
733 return label;
734}
735
736void wxMenuItem::SetText( const wxString& str )
737{
738 DoSetText(str);
354aa1e3
RR
739
740 if (m_menuItem)
741 {
37d403aa
JS
742 GtkLabel *label;
743 if (m_labelWidget)
744 label = (GtkLabel*) m_labelWidget;
745 else
746 label = GTK_LABEL( GTK_BIN(m_menuItem)->child );
717a57c2
VZ
747
748 /* set new text */
354aa1e3 749 gtk_label_set( label, m_text.mb_str());
717a57c2
VZ
750
751 /* reparse key accel */
1987af7e 752 (void)gtk_label_parse_uline (GTK_LABEL(label), m_text.mb_str() );
354aa1e3
RR
753 gtk_accel_label_refetch( GTK_ACCEL_LABEL(label) );
754 }
755}
756
c626a8b7 757// it's valid for this function to be called even if m_menuItem == NULL
974e8d94 758void wxMenuItem::DoSetText( const wxString& str )
716b7364 759{
ab46dc18 760 /* '\t' is the deliminator indicating a hot key */
974e8d94 761 m_text.Empty();
ab46dc18 762 const wxChar *pc = str;
223d09f6 763 for (; (*pc != wxT('\0')) && (*pc != wxT('\t')); pc++ )
83624f79 764 {
223d09f6 765 if (*pc == wxT('&'))
23280650 766 {
034be888 767#if (GTK_MINOR_VERSION > 0)
223d09f6 768 m_text << wxT('_');
572d7461 769 }
223d09f6 770 else if ( *pc == wxT('_') ) // escape underscores
572d7461 771 {
223d09f6 772 m_text << wxT("__");
572d7461 773 }
223d09f6 774 else if (*pc == wxT('/')) /* we have to filter out slashes ... */
23280650 775 {
223d09f6 776 m_text << wxT('\\'); /* ... and replace them with back slashes */
034be888
RR
777#endif
778 }
d38ceae8 779 else
354aa1e3 780 m_text << *pc;
83624f79 781 }
23280650 782
837904f2 783 /* only GTK 1.2 knows about hot keys */
223d09f6 784 m_hotKey = wxT("");
ab46dc18 785#if (GTK_MINOR_VERSION > 0)
223d09f6 786 if(*pc == wxT('\t'))
d7dbc98a
KB
787 {
788 pc++;
789 m_hotKey = pc;
790 }
ab46dc18 791#endif
716b7364
RR
792}
793
717a57c2
VZ
794#if wxUSE_ACCEL
795
796wxAcceleratorEntry *wxMenuItem::GetAccel() const
797{
1987af7e 798 if ( !GetHotKey() )
717a57c2
VZ
799 {
800 // nothing
801 return (wxAcceleratorEntry *)NULL;
802 }
803
804 // as wxGetAccelFromString() looks for TAB, insert a dummy one here
805 wxString label;
1987af7e 806 label << wxT('\t') << GetHotKey();
717a57c2
VZ
807
808 return wxGetAccelFromString(label);
809}
810
811#endif // wxUSE_ACCEL
812
96fd301f 813void wxMenuItem::Check( bool check )
716b7364 814{
223d09f6 815 wxCHECK_RET( m_menuItem, wxT("invalid menu item") );
db1b4961 816
223d09f6 817 wxCHECK_RET( IsCheckable(), wxT("Can't check uncheckable item!") )
96fd301f 818
974e8d94
VZ
819 if (check == m_isChecked)
820 return;
2d17d68f 821
974e8d94 822 wxMenuItemBase::Check( check );
83624f79 823 gtk_check_menu_item_set_state( (GtkCheckMenuItem*)m_menuItem, (gint)check );
716b7364
RR
824}
825
8bbe427f
VZ
826void wxMenuItem::Enable( bool enable )
827{
223d09f6 828 wxCHECK_RET( m_menuItem, wxT("invalid menu item") );
db1b4961 829
83624f79 830 gtk_widget_set_sensitive( m_menuItem, enable );
974e8d94 831 wxMenuItemBase::Enable( enable );
a9c96bcc
RR
832}
833
96fd301f 834bool wxMenuItem::IsChecked() const
716b7364 835{
223d09f6 836 wxCHECK_MSG( m_menuItem, FALSE, wxT("invalid menu item") );
db1b4961 837
974e8d94
VZ
838 wxCHECK_MSG( IsCheckable(), FALSE,
839 wxT("can't get state of uncheckable item!") );
96fd301f 840
974e8d94 841 return ((GtkCheckMenuItem*)m_menuItem)->active != 0;
716b7364
RR
842}
843
354aa1e3
RR
844wxString wxMenuItem::GetFactoryPath() const
845{
d76419bd
RR
846 /* in order to get the pointer to the item we need the item text
847 _without_ underscores */
354aa1e3 848 wxString path( wxT("<main>/") );
717a57c2 849
d76419bd
RR
850 for ( const wxChar *pc = m_text.c_str(); *pc; pc++ )
851 {
852 if ( *pc == wxT('_') || *pc == wxT('&') )
853 {
854 // remove '_' and '&' unconditionally
855 continue;
856 }
857
858 path += *pc;
859 }
860
354aa1e3
RR
861 return path;
862}
863
db1b4961 864//-----------------------------------------------------------------------------
83624f79 865// wxMenu
db1b4961
RR
866//-----------------------------------------------------------------------------
867
c801d85f
KB
868IMPLEMENT_DYNAMIC_CLASS(wxMenu,wxEvtHandler)
869
717a57c2 870void wxMenu::Init()
c801d85f 871{
034be888
RR
872#if (GTK_MINOR_VERSION > 0)
873 m_accel = gtk_accel_group_new();
874 m_factory = gtk_item_factory_new( GTK_TYPE_MENU, "<main>", m_accel );
875 m_menu = gtk_item_factory_get_widget( m_factory, "<main>" );
23280650 876#else
83624f79 877 m_menu = gtk_menu_new(); // Do not show!
034be888 878#endif
8bbe427f 879
2b1c162e 880 m_owner = (GtkWidget*) NULL;
2b2edbed
KB
881
882#if (GTK_MINOR_VERSION > 0)
883 /* Tearoffs are entries, just like separators. So if we want this
884 menu to be a tear-off one, we just append a tearoff entry
885 immediately. */
886 if(m_style & wxMENU_TEAROFF)
887 {
888 GtkItemFactoryEntry entry;
90350682 889 entry.path = (char *)"/tearoff";
2b2edbed
KB
890 entry.callback = (GtkItemFactoryCallback) NULL;
891 entry.callback_action = 0;
90350682 892 entry.item_type = (char *)"<Tearoff>";
2b2edbed
KB
893 entry.accelerator = (gchar*) NULL;
894 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
23280650 895 //GtkWidget *menuItem = gtk_item_factory_get_widget( m_factory, "<main>/tearoff" );
2b2edbed
KB
896 }
897#endif
c801d85f 898
717a57c2
VZ
899 // append the title as the very first entry if we have it
900 if ( !!m_title )
d1b15f03 901 {
717a57c2
VZ
902 Append(-2, m_title);
903 AppendSeparator();
d1b15f03 904 }
717a57c2 905}
15a2076a 906
717a57c2
VZ
907wxMenu::~wxMenu()
908{
a583e623 909 m_items.Clear();
f03ec224 910
d1b15f03 911 gtk_widget_destroy( m_menu );
974e8d94 912
d1b15f03 913 gtk_object_unref( GTK_OBJECT(m_factory) );
c2dd8380
GL
914}
915
32db328c 916bool wxMenu::GtkAppend(wxMenuItem *mitem)
c2dd8380 917{
717a57c2 918 GtkWidget *menuItem;
96fd301f 919
37d403aa
JS
920 bool appended = FALSE;
921
717a57c2
VZ
922 if ( mitem->IsSeparator() )
923 {
08fc1744 924#if (GTK_MINOR_VERSION > 0)
717a57c2 925 GtkItemFactoryEntry entry;
90350682 926 entry.path = (char *)"/sep";
717a57c2
VZ
927 entry.callback = (GtkItemFactoryCallback) NULL;
928 entry.callback_action = 0;
90350682 929 entry.item_type = (char *)"<Separator>";
717a57c2
VZ
930 entry.accelerator = (gchar*) NULL;
931
932 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
933
934 /* this will be wrong for more than one separator. do we care? */
935 menuItem = gtk_item_factory_get_widget( m_factory, "<main>/sep" );
936#else // GTK+ 1.0
937 menuItem = gtk_menu_item_new();
938#endif // GTK 1.2/1.0
939 }
940 else if ( mitem->IsSubMenu() )
837904f2 941 {
717a57c2
VZ
942#if (GTK_MINOR_VERSION > 0)
943 /* text has "_" instead of "&" after mitem->SetText() */
944 wxString text( mitem->GetText() );
974e8d94 945
717a57c2
VZ
946 /* local buffer in multibyte form */
947 char buf[200];
948 strcpy( buf, "/" );
949 strcat( buf, text.mb_str() );
50592885 950
717a57c2
VZ
951 GtkItemFactoryEntry entry;
952 entry.path = buf;
953 entry.callback = (GtkItemFactoryCallback) 0;
954 entry.callback_action = 0;
90350682 955 entry.item_type = (char *)"<Branch>";
a583e623 956 entry.accelerator = (gchar*) NULL;
50592885 957
717a57c2 958 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
50592885 959
717a57c2 960 wxString path( mitem->GetFactoryPath() );
1987af7e 961 menuItem = gtk_item_factory_get_item( m_factory, path.mb_str() );
717a57c2 962#else // GTK+ 1.0
1987af7e 963 menuItem = gtk_menu_item_new_with_label(mitem->GetText().mbc_str());
717a57c2 964#endif // GTK 1.2/1.0
50592885 965
1987af7e 966 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem), mitem->GetSubMenu()->m_menu );
e7200790
VZ
967
968 // if adding a submenu to a menu already existing in the menu bar, we
969 // must set invoking window to allow processing events from this
970 // submenu
971 if ( m_invokingWindow )
972 wxMenubarSetInvokingWindow(mitem->GetSubMenu(), m_invokingWindow);
837904f2 973 }
37d403aa
JS
974 else if (mitem->GetBitmap().Ok()) // An item with bitmap
975 {
cc47eed9
RR
976 wxString text( mitem->GetText() );
977 const wxBitmap *bitmap = &mitem->GetBitmap();
978
979 menuItem = gtk_pixmap_menu_item_new ();
980 GtkWidget *label = gtk_accel_label_new (text.mb_str());
981 gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
982 gtk_container_add (GTK_CONTAINER (menuItem), label);
983 guint accel_key = gtk_label_parse_uline (GTK_LABEL(label), text.mb_str() );
984 gtk_accel_label_set_accel_widget (GTK_ACCEL_LABEL (label), menuItem);
985 if (accel_key != GDK_VoidSymbol)
986 {
987 gtk_widget_add_accelerator (menuItem,
988 "activate_item",
989 gtk_menu_ensure_uline_accel_group (GTK_MENU (m_menu)),
990 accel_key, 0,
991 GTK_ACCEL_LOCKED);
992 }
993 gtk_widget_show (label);
37d403aa 994
cc47eed9 995 mitem->SetLabelWidget(label);
37d403aa 996
cc47eed9
RR
997 GtkWidget* pixmap = gtk_pixmap_new( bitmap->GetPixmap(), bitmap->GetMask() ? bitmap->GetMask()->GetBitmap() : (GdkBitmap* )NULL);
998 gtk_widget_show(pixmap);
999 gtk_pixmap_menu_item_set_pixmap(GTK_PIXMAP_MENU_ITEM( menuItem ), pixmap);
37d403aa
JS
1000
1001 gtk_signal_connect( GTK_OBJECT(menuItem), "activate",
1002 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback),
1003 (gpointer)this );
1004 gtk_menu_append( GTK_MENU(m_menu), menuItem );
1005 gtk_widget_show( menuItem );
1006
37d403aa
JS
1007 appended = TRUE; // We've done this, don't do it again
1008 }
717a57c2
VZ
1009 else // a normal item
1010 {
034be888 1011#if (GTK_MINOR_VERSION > 0)
717a57c2
VZ
1012 /* text has "_" instead of "&" after mitem->SetText() */
1013 wxString text( mitem->GetText() );
1014
1015 /* local buffer in multibyte form */
1016 char buf[200];
1017 strcpy( buf, "/" );
1018 strcat( buf, text.mb_str() );
1019
1020 GtkItemFactoryEntry entry;
1021 entry.path = buf;
1022 entry.callback = (GtkItemFactoryCallback) gtk_menu_clicked_callback;
1023 entry.callback_action = 0;
1987af7e 1024 if ( mitem->IsCheckable() )
90350682 1025 entry.item_type = (char *)"<CheckItem>";
717a57c2 1026 else
90350682 1027 entry.item_type = (char *)"<Item>";
a583e623 1028 entry.accelerator = (gchar*) NULL;
23280650 1029
974e8d94 1030#if wxUSE_ACCEL
717a57c2
VZ
1031 // due to an apparent bug in GTK+, we have to use a static buffer here -
1032 // otherwise GTK+ 1.2.2 manages to override the memory we pass to it
1033 // somehow! (VZ)
3ca6a5f0
BP
1034 static char s_accel[50]; // must be big enougg
1035 wxString tmp( GetHotKey(*mitem) );
1036 strncpy(s_accel, tmp.mb_str(), WXSIZEOF(s_accel));
717a57c2
VZ
1037 entry.accelerator = s_accel;
1038#else // !wxUSE_ACCEL
1039 entry.accelerator = (char*) NULL;
1040#endif // wxUSE_ACCEL/!wxUSE_ACCEL
96fd301f 1041
717a57c2 1042 gtk_item_factory_create_item( m_factory, &entry, (gpointer) this, 2 ); /* what is 2 ? */
cf7a7e13 1043
717a57c2 1044 wxString path( mitem->GetFactoryPath() );
1987af7e 1045 menuItem = gtk_item_factory_get_widget( m_factory, path.mb_str() );
717a57c2 1046#else // GTK+ 1.0
1987af7e
VZ
1047 menuItem = checkable ? gtk_check_menu_item_new_with_label( mitem->GetText().mb_str() )
1048 : gtk_menu_item_new_with_label( mitem->GetText().mb_str() );
034be888 1049
717a57c2
VZ
1050 gtk_signal_connect( GTK_OBJECT(menuItem), "activate",
1051 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback),
1052 (gpointer)this );
1053#endif // GTK+ 1.2/1.0
1054 }
23280650 1055
717a57c2
VZ
1056 if ( !mitem->IsSeparator() )
1057 {
1058 gtk_signal_connect( GTK_OBJECT(menuItem), "select",
1059 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback),
1060 (gpointer)this );
837904f2 1061
717a57c2
VZ
1062 gtk_signal_connect( GTK_OBJECT(menuItem), "deselect",
1063 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback),
1064 (gpointer)this );
1065 }
23280650 1066
717a57c2 1067#if GTK_MINOR_VERSION == 0
37d403aa
JS
1068 if (!appended)
1069 {
1070 gtk_menu_append( GTK_MENU(m_menu), menuItem );
1071 gtk_widget_show( menuItem );
1072 }
717a57c2 1073#endif // GTK+ 1.0
23280650 1074
837904f2 1075 mitem->SetMenuItem(menuItem);
837904f2 1076
32db328c 1077 return TRUE;
6de97a3b 1078}
c801d85f 1079
32db328c 1080bool wxMenu::DoAppend(wxMenuItem *mitem)
828f655f 1081{
32db328c 1082 return GtkAppend(mitem) && wxMenuBase::DoAppend(mitem);
c33c4050
RR
1083}
1084
717a57c2 1085bool wxMenu::DoInsert(size_t pos, wxMenuItem *item)
c33c4050 1086{
717a57c2
VZ
1087 if ( !wxMenuBase::DoInsert(pos, item) )
1088 return FALSE;
c626a8b7 1089
32db328c
VZ
1090#ifdef __WXGTK12__
1091 // GTK+ doesn't have a function to insert a menu using GtkItemFactory (as
1092 // of version 1.2.6), so we first append the item and then change its
1093 // index
1094 if ( !GtkAppend(item) )
1095 return FALSE;
1096
f6bcfd97
BP
1097 if ( m_style & wxMENU_TEAROFF )
1098 {
1099 // change the position as the first item is the tear-off marker
1100 pos++;
1101 }
1102
32db328c
VZ
1103 GtkMenuShell *menu_shell = GTK_MENU_SHELL(m_factory->widget);
1104 gpointer data = g_list_last(menu_shell->children)->data;
1105 menu_shell->children = g_list_remove(menu_shell->children, data);
1106 menu_shell->children = g_list_insert(menu_shell->children, data, pos);
1107
1108 return TRUE;
1109#else // GTK < 1.2
1110 // this should be easy to do...
1111 wxFAIL_MSG( wxT("not implemented") );
c626a8b7 1112
717a57c2 1113 return FALSE;
96fa7876 1114#endif // GTK 1.2/1.0
c33c4050
RR
1115}
1116
717a57c2 1117wxMenuItem *wxMenu::DoRemove(wxMenuItem *item)
c33c4050 1118{
717a57c2
VZ
1119 if ( !wxMenuBase::DoRemove(item) )
1120 return (wxMenuItem *)NULL;
c626a8b7 1121
717a57c2
VZ
1122 // TODO: this code doesn't delete the item factory item and this seems
1123 // impossible as of GTK 1.2.6.
1124 gtk_widget_destroy( item->GetMenuItem() );
c626a8b7 1125
717a57c2 1126 return item;
c33c4050
RR
1127}
1128
96fd301f
VZ
1129int wxMenu::FindMenuIdByMenuItem( GtkWidget *menuItem ) const
1130{
83624f79
RR
1131 wxNode *node = m_items.First();
1132 while (node)
1133 {
1134 wxMenuItem *item = (wxMenuItem*)node->Data();
1135 if (item->GetMenuItem() == menuItem)
1136 return item->GetId();
1137 node = node->Next();
1138 }
96fd301f 1139
c626a8b7 1140 return wxNOT_FOUND;
6de97a3b 1141}
c801d85f 1142
717a57c2
VZ
1143// ----------------------------------------------------------------------------
1144// helpers
1145// ----------------------------------------------------------------------------
1146
1147#if (GTK_MINOR_VERSION > 0) && wxUSE_ACCEL
a070d8ce 1148
717a57c2 1149static wxString GetHotKey( const wxMenuItem& item )
c801d85f 1150{
717a57c2
VZ
1151 wxString hotkey;
1152
1153 wxAcceleratorEntry *accel = item.GetAccel();
1154 if ( accel )
83624f79 1155 {
717a57c2
VZ
1156 int flags = accel->GetFlags();
1157 if ( flags & wxACCEL_ALT )
1158 hotkey += wxT("<alt>");
1159 if ( flags & wxACCEL_CTRL )
1160 hotkey += wxT("<control>");
1161 if ( flags & wxACCEL_SHIFT )
1162 hotkey += wxT("<shift>");
1163
1164 int code = accel->GetKeyCode();
1165 switch ( code )
c626a8b7 1166 {
717a57c2
VZ
1167 case WXK_F1:
1168 case WXK_F2:
1169 case WXK_F3:
1170 case WXK_F4:
1171 case WXK_F5:
1172 case WXK_F6:
1173 case WXK_F7:
1174 case WXK_F8:
1175 case WXK_F9:
1176 case WXK_F10:
1177 case WXK_F11:
1178 case WXK_F12:
1179 hotkey << wxT('F') << code - WXK_F1 + 1;
1180 break;
3ca6a5f0 1181
a070d8ce
VZ
1182 // TODO: we should use gdk_keyval_name() (a.k.a.
1183 // XKeysymToString) here as well as hardcoding the keysym
1184 // names this might be not portable
3ca6a5f0
BP
1185 case WXK_NUMPAD_INSERT:
1186 hotkey << wxT("KP_Insert" );
1187 break;
1188 case WXK_NUMPAD_DELETE:
1189 hotkey << wxT("KP_Delete" );
1190 break;
1191 case WXK_INSERT:
1192 hotkey << wxT("Insert" );
1193 break;
1194 case WXK_DELETE:
1195 hotkey << wxT("Delete" );
1196 break;
96fd301f 1197
a070d8ce
VZ
1198 // if there are any other keys wxGetAccelFromString() may
1199 // return, we should process them here
8bbe427f 1200
717a57c2 1201 default:
a070d8ce 1202 if ( code < 127 )
717a57c2 1203 {
a070d8ce
VZ
1204 gchar *name = gdk_keyval_name((guint)code);
1205 if ( name )
1206 {
1207 hotkey << name;
1208 break;
1209 }
717a57c2 1210 }
c801d85f 1211
717a57c2
VZ
1212 wxFAIL_MSG( wxT("unknown keyboard accel") );
1213 }
c801d85f 1214
717a57c2 1215 delete accel;
631f1bfe 1216 }
717a57c2
VZ
1217
1218 return hotkey;
631f1bfe 1219}
a070d8ce 1220
717a57c2 1221#endif // wxUSE_ACCEL
631f1bfe 1222
37d403aa 1223
cc47eed9
RR
1224//-----------------------------------------------------------------------------
1225// substitute for missing GtkPixmapMenuItem
1226//-----------------------------------------------------------------------------
37d403aa
JS
1227
1228/*
1229 * Copyright (C) 1998, 1999, 2000 Free Software Foundation
1230 * All rights reserved.
1231 *
1232 * This file is part of the Gnome Library.
1233 *
1234 * The Gnome Library is free software; you can redistribute it and/or
1235 * modify it under the terms of the GNU Library General Public License as
1236 * published by the Free Software Foundation; either version 2 of the
1237 * License, or (at your option) any later version.
1238 *
1239 * The Gnome Library is distributed in the hope that it will be useful,
1240 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1241 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1242 * Library General Public License for more details.
1243 *
1244 * You should have received a copy of the GNU Library General Public
1245 * License along with the Gnome Library; see the file COPYING.LIB. If not,
1246 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1247 * Boston, MA 02111-1307, USA.
1248 */
1249/*
1250 @NOTATION@
1251 */
1252
1253/* Author: Dietmar Maurer <dm@vlsivie.tuwien.ac.at> */
1254
37d403aa
JS
1255#include <gtk/gtkaccellabel.h>
1256#include <gtk/gtksignal.h>
1257#include <gtk/gtkmenuitem.h>
1258#include <gtk/gtkmenu.h>
1259#include <gtk/gtkcontainer.h>
1260
90350682
VZ
1261extern "C"
1262{
1263
37d403aa
JS
1264static void gtk_pixmap_menu_item_class_init (GtkPixmapMenuItemClass *klass);
1265static void gtk_pixmap_menu_item_init (GtkPixmapMenuItem *menu_item);
1266static void gtk_pixmap_menu_item_draw (GtkWidget *widget,
1267 GdkRectangle *area);
1268static gint gtk_pixmap_menu_item_expose (GtkWidget *widget,
1269 GdkEventExpose *event);
1270
1271/* we must override the following functions */
1272
1273static void gtk_pixmap_menu_item_map (GtkWidget *widget);
1274static void gtk_pixmap_menu_item_size_allocate (GtkWidget *widget,
1275 GtkAllocation *allocation);
1276static void gtk_pixmap_menu_item_forall (GtkContainer *container,
1277 gboolean include_internals,
1278 GtkCallback callback,
1279 gpointer callback_data);
1280static void gtk_pixmap_menu_item_size_request (GtkWidget *widget,
1281 GtkRequisition *requisition);
1282static void gtk_pixmap_menu_item_remove (GtkContainer *container,
1283 GtkWidget *child);
1284
1285static void changed_have_pixmap_status (GtkPixmapMenuItem *menu_item);
1286
1287static GtkMenuItemClass *parent_class = NULL;
1288
90350682
VZ
1289}
1290
37d403aa
JS
1291#define BORDER_SPACING 3
1292#define PMAP_WIDTH 20
1293
1294GtkType
1295gtk_pixmap_menu_item_get_type (void)
1296{
1297 static GtkType pixmap_menu_item_type = 0;
1298
1299 if (!pixmap_menu_item_type)
1300 {
1301 GtkTypeInfo pixmap_menu_item_info =
1302 {
90350682 1303 (char *)"GtkPixmapMenuItem",
37d403aa
JS
1304 sizeof (GtkPixmapMenuItem),
1305 sizeof (GtkPixmapMenuItemClass),
1306 (GtkClassInitFunc) gtk_pixmap_menu_item_class_init,
1307 (GtkObjectInitFunc) gtk_pixmap_menu_item_init,
1308 /* reserved_1 */ NULL,
1309 /* reserved_2 */ NULL,
1310 (GtkClassInitFunc) NULL,
1311 };
1312
1313 pixmap_menu_item_type = gtk_type_unique (gtk_menu_item_get_type (),
1314 &pixmap_menu_item_info);
1315 }
1316
1317 return pixmap_menu_item_type;
1318}
1319
1320/**
1321 * gtk_pixmap_menu_item_new
1322 *
1323 * Creates a new pixmap menu item. Use gtk_pixmap_menu_item_set_pixmap()
1324 * to set the pixmap wich is displayed at the left side.
1325 *
1326 * Returns:
1327 * &GtkWidget pointer to new menu item
1328 **/
1329
1330GtkWidget*
1331gtk_pixmap_menu_item_new (void)
1332{
1333 return GTK_WIDGET (gtk_type_new (gtk_pixmap_menu_item_get_type ()));
1334}
1335
1336static void
1337gtk_pixmap_menu_item_class_init (GtkPixmapMenuItemClass *klass)
1338{
1339 GtkObjectClass *object_class;
1340 GtkWidgetClass *widget_class;
1341 GtkMenuItemClass *menu_item_class;
1342 GtkContainerClass *container_class;
1343
1344 object_class = (GtkObjectClass*) klass;
1345 widget_class = (GtkWidgetClass*) klass;
1346 menu_item_class = (GtkMenuItemClass*) klass;
1347 container_class = (GtkContainerClass*) klass;
1348
1349 parent_class = (GtkMenuItemClass*) gtk_type_class (gtk_menu_item_get_type ());
1350
1351 widget_class->draw = gtk_pixmap_menu_item_draw;
1352 widget_class->expose_event = gtk_pixmap_menu_item_expose;
1353 widget_class->map = gtk_pixmap_menu_item_map;
1354 widget_class->size_allocate = gtk_pixmap_menu_item_size_allocate;
1355 widget_class->size_request = gtk_pixmap_menu_item_size_request;
1356
1357 container_class->forall = gtk_pixmap_menu_item_forall;
1358 container_class->remove = gtk_pixmap_menu_item_remove;
1359
1360 klass->orig_toggle_size = menu_item_class->toggle_size;
1361 klass->have_pixmap_count = 0;
1362}
1363
1364static void
1365gtk_pixmap_menu_item_init (GtkPixmapMenuItem *menu_item)
1366{
1367 GtkMenuItem *mi;
1368
1369 mi = GTK_MENU_ITEM (menu_item);
1370
1371 menu_item->pixmap = NULL;
1372}
1373
1374static void
1375gtk_pixmap_menu_item_draw (GtkWidget *widget,
1376 GdkRectangle *area)
1377{
1378 g_return_if_fail (widget != NULL);
1379 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (widget));
1380 g_return_if_fail (area != NULL);
1381
1382 if (GTK_WIDGET_CLASS (parent_class)->draw)
1383 (* GTK_WIDGET_CLASS (parent_class)->draw) (widget, area);
1384
1385 if (GTK_WIDGET_DRAWABLE (widget) &&
1386 GTK_PIXMAP_MENU_ITEM(widget)->pixmap) {
1387 gtk_widget_draw(GTK_WIDGET(GTK_PIXMAP_MENU_ITEM(widget)->pixmap),NULL);
1388 }
1389}
1390
1391static gint
1392gtk_pixmap_menu_item_expose (GtkWidget *widget,
1393 GdkEventExpose *event)
1394{
1395 g_return_val_if_fail (widget != NULL, FALSE);
1396 g_return_val_if_fail (GTK_IS_PIXMAP_MENU_ITEM (widget), FALSE);
1397 g_return_val_if_fail (event != NULL, FALSE);
1398
1399 if (GTK_WIDGET_CLASS (parent_class)->expose_event)
1400 (* GTK_WIDGET_CLASS (parent_class)->expose_event) (widget, event);
1401
1402 if (GTK_WIDGET_DRAWABLE (widget) &&
1403 GTK_PIXMAP_MENU_ITEM(widget)->pixmap) {
1404 gtk_widget_draw(GTK_WIDGET(GTK_PIXMAP_MENU_ITEM(widget)->pixmap),NULL);
1405 }
1406
1407 return FALSE;
1408}
1409
1410/**
1411 * gtk_pixmap_menu_item_set_pixmap
1412 * @menu_item: Pointer to the pixmap menu item
1413 * @pixmap: Pointer to a pixmap widget
1414 *
1415 * Set the pixmap of the menu item.
1416 *
1417 **/
1418
1419void
1420gtk_pixmap_menu_item_set_pixmap (GtkPixmapMenuItem *menu_item,
1421 GtkWidget *pixmap)
1422{
1423 g_return_if_fail (menu_item != NULL);
1424 g_return_if_fail (pixmap != NULL);
1425 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (menu_item));
1426 g_return_if_fail (GTK_IS_WIDGET (pixmap));
1427 g_return_if_fail (menu_item->pixmap == NULL);
1428
1429 gtk_widget_set_parent (pixmap, GTK_WIDGET (menu_item));
1430 menu_item->pixmap = pixmap;
1431
1432 if (GTK_WIDGET_REALIZED (pixmap->parent) &&
1433 !GTK_WIDGET_REALIZED (pixmap))
1434 gtk_widget_realize (pixmap);
1435
1436 if (GTK_WIDGET_VISIBLE (pixmap->parent)) {
1437 if (GTK_WIDGET_MAPPED (pixmap->parent) &&
1438 GTK_WIDGET_VISIBLE(pixmap) &&
1439 !GTK_WIDGET_MAPPED (pixmap))
1440 gtk_widget_map (pixmap);
1441 }
1442
1443 changed_have_pixmap_status(menu_item);
1444
1445 if (GTK_WIDGET_VISIBLE (pixmap) && GTK_WIDGET_VISIBLE (menu_item))
1446 gtk_widget_queue_resize (pixmap);
1447}
1448
1449static void
1450gtk_pixmap_menu_item_map (GtkWidget *widget)
1451{
1452 GtkPixmapMenuItem *menu_item;
1453
1454 g_return_if_fail (widget != NULL);
1455 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (widget));
1456
1457 menu_item = GTK_PIXMAP_MENU_ITEM(widget);
1458
1459 GTK_WIDGET_CLASS(parent_class)->map(widget);
1460
1461 if (menu_item->pixmap &&
1462 GTK_WIDGET_VISIBLE (menu_item->pixmap) &&
1463 !GTK_WIDGET_MAPPED (menu_item->pixmap))
1464 gtk_widget_map (menu_item->pixmap);
1465}
1466
1467static void
1468gtk_pixmap_menu_item_size_allocate (GtkWidget *widget,
1469 GtkAllocation *allocation)
1470{
1471 GtkPixmapMenuItem *pmenu_item;
1472
1473 pmenu_item = GTK_PIXMAP_MENU_ITEM(widget);
1474
1475 if (pmenu_item->pixmap && GTK_WIDGET_VISIBLE(pmenu_item))
1476 {
1477 GtkAllocation child_allocation;
1478 int border_width;
1479
1480 border_width = GTK_CONTAINER (widget)->border_width;
1481
1482 child_allocation.width = pmenu_item->pixmap->requisition.width;
1483 child_allocation.height = pmenu_item->pixmap->requisition.height;
1484 child_allocation.x = border_width + BORDER_SPACING;
1485 child_allocation.y = (border_width + BORDER_SPACING
1486 + (((allocation->height - child_allocation.height) - child_allocation.x)
1487 / 2)); /* center pixmaps vertically */
1488 gtk_widget_size_allocate (pmenu_item->pixmap, &child_allocation);
1489 }
1490
1491 if (GTK_WIDGET_CLASS (parent_class)->size_allocate)
1492 GTK_WIDGET_CLASS(parent_class)->size_allocate (widget, allocation);
1493}
1494
1495static void
1496gtk_pixmap_menu_item_forall (GtkContainer *container,
1497 gboolean include_internals,
1498 GtkCallback callback,
1499 gpointer callback_data)
1500{
1501 GtkPixmapMenuItem *menu_item;
1502
1503 g_return_if_fail (container != NULL);
1504 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (container));
1505 g_return_if_fail (callback != NULL);
1506
1507 menu_item = GTK_PIXMAP_MENU_ITEM (container);
1508
1509 if (menu_item->pixmap)
1510 (* callback) (menu_item->pixmap, callback_data);
1511
1512 GTK_CONTAINER_CLASS(parent_class)->forall(container,include_internals,
1513 callback,callback_data);
1514}
1515
1516static void
1517gtk_pixmap_menu_item_size_request (GtkWidget *widget,
1518 GtkRequisition *requisition)
1519{
1520 GtkPixmapMenuItem *menu_item;
1521 GtkRequisition req = {0, 0};
1522
1523 g_return_if_fail (widget != NULL);
1524 g_return_if_fail (GTK_IS_MENU_ITEM (widget));
1525 g_return_if_fail (requisition != NULL);
1526
1527 GTK_WIDGET_CLASS(parent_class)->size_request(widget,requisition);
1528
1529 menu_item = GTK_PIXMAP_MENU_ITEM (widget);
1530
1531 if (menu_item->pixmap)
1532 gtk_widget_size_request(menu_item->pixmap, &req);
1533
1534 requisition->height = MAX(req.height + GTK_CONTAINER(widget)->border_width + BORDER_SPACING, (unsigned int) requisition->height);
1535 requisition->width += (req.width + GTK_CONTAINER(widget)->border_width + BORDER_SPACING);
1536}
1537
1538static void
1539gtk_pixmap_menu_item_remove (GtkContainer *container,
1540 GtkWidget *child)
1541{
1542 GtkBin *bin;
1543 gboolean widget_was_visible;
1544
1545 g_return_if_fail (container != NULL);
1546 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (container));
1547 g_return_if_fail (child != NULL);
1548 g_return_if_fail (GTK_IS_WIDGET (child));
1549
1550 bin = GTK_BIN (container);
1551 g_return_if_fail ((bin->child == child ||
1552 (GTK_PIXMAP_MENU_ITEM(container)->pixmap == child)));
1553
1554 widget_was_visible = GTK_WIDGET_VISIBLE (child);
1555
1556 gtk_widget_unparent (child);
1557 if (bin->child == child)
1558 bin->child = NULL;
1559 else {
1560 GTK_PIXMAP_MENU_ITEM(container)->pixmap = NULL;
1561 changed_have_pixmap_status(GTK_PIXMAP_MENU_ITEM(container));
1562 }
1563
1564 if (widget_was_visible)
1565 gtk_widget_queue_resize (GTK_WIDGET (container));
1566}
1567
1568
1569/* important to only call this if there was actually a _change_ in pixmap == NULL */
1570static void
1571changed_have_pixmap_status (GtkPixmapMenuItem *menu_item)
1572{
1573 if (menu_item->pixmap != NULL) {
1574 GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item)->have_pixmap_count += 1;
1575
1576 if (GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item)->have_pixmap_count == 1) {
1577 /* Install pixmap toggle size */
1578 GTK_MENU_ITEM_GET_CLASS(menu_item)->toggle_size = MAX(GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item)->orig_toggle_size, PMAP_WIDTH);
1579 }
1580 } else {
1581 GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item)->have_pixmap_count -= 1;
1582
1583 if (GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item)->have_pixmap_count == 0) {
1584 /* Install normal toggle size */
1585 GTK_MENU_ITEM_GET_CLASS(menu_item)->toggle_size = GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item)->orig_toggle_size;
1586 }
1587 }
1588
1589 /* Note that we actually need to do this for _all_ GtkPixmapMenuItem
1590 whenever the klass->toggle_size changes; but by doing it anytime
1591 this function is called, we get the same effect, just because of
1592 how the preferences option to show pixmaps works. Bogus, broken.
1593 */
1594 if (GTK_WIDGET_VISIBLE(GTK_WIDGET(menu_item)))
1595 gtk_widget_queue_resize(GTK_WIDGET(menu_item));
1596}
1597
37d403aa 1598