1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
11 #pragma implementation "menu.h"
12 #pragma implementation "menuitem.h"
15 // For compilers that support precompilation, includes "wx.h".
16 #include "wx/wxprec.h"
22 #include "wx/bitmap.h"
28 #include "wx/gtk/private.h"
30 #include <gdk/gdkkeysyms.h>
32 // FIXME: is this right? somehow I don't think so (VZ)
34 #include <glib-object.h>
36 #define gtk_accel_group_attach(g, o) gtk_window_add_accel_group((o), (g))
37 #define gtk_accel_group_detach(g, o) gtk_window_remove_accel_group((o), (g))
38 #define gtk_menu_ensure_uline_accel_group(m) gtk_menu_get_accel_group(m)
40 #define ACCEL_OBJECT GtkWindow
41 #define ACCEL_OBJECTS(a) (a)->acceleratables
42 #define ACCEL_OBJ_CAST(obj) ((GtkWindow*) obj)
44 #define ACCEL_OBJECT GtkObject
45 #define ACCEL_OBJECTS(a) (a)->attach_objects
46 #define ACCEL_OBJ_CAST(obj) GTK_OBJECT(obj)
49 // we use normal item but with a special id for the menu title
50 static const int wxGTK_TITLE_ID
= -3;
52 //-----------------------------------------------------------------------------
54 //-----------------------------------------------------------------------------
56 extern void wxapp_install_idle_handler();
60 static wxString
GetGtkHotKey( const wxMenuItem
& item
);
63 //-----------------------------------------------------------------------------
64 // substitute for missing GtkPixmapMenuItem
65 //-----------------------------------------------------------------------------
69 #define GTK_TYPE_PIXMAP_MENU_ITEM (gtk_pixmap_menu_item_get_type ())
70 #define GTK_PIXMAP_MENU_ITEM(obj) (GTK_CHECK_CAST ((obj), GTK_TYPE_PIXMAP_MENU_ITEM, GtkPixmapMenuItem))
71 #define GTK_PIXMAP_MENU_ITEM_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_PIXMAP_MENU_ITEM, GtkPixmapMenuItemClass))
72 #define GTK_IS_PIXMAP_MENU_ITEM(obj) (GTK_CHECK_TYPE ((obj), GTK_TYPE_PIXMAP_MENU_ITEM))
73 #define GTK_IS_PIXMAP_MENU_ITEM_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_PIXMAP_MENU_ITEM))
74 //#define GTK_PIXMAP_MENU_ITEM_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), GTK_TYPE_PIXMAP_MENU_ITEM))
75 #define GTK_PIXMAP_MENU_ITEM_GET_CLASS(obj) (GTK_PIXMAP_MENU_ITEM_CLASS( GTK_OBJECT_GET_CLASS(obj)))
77 #ifndef GTK_MENU_ITEM_GET_CLASS
78 #define GTK_MENU_ITEM_GET_CLASS(obj) (GTK_MENU_ITEM_CLASS( GTK_OBJECT_GET_CLASS(obj)))
81 typedef struct _GtkPixmapMenuItem GtkPixmapMenuItem
;
82 typedef struct _GtkPixmapMenuItemClass GtkPixmapMenuItemClass
;
84 struct _GtkPixmapMenuItem
86 GtkMenuItem menu_item
;
91 struct _GtkPixmapMenuItemClass
93 GtkMenuItemClass parent_class
;
95 guint orig_toggle_size
;
96 guint have_pixmap_count
;
100 GtkType
gtk_pixmap_menu_item_get_type (void);
101 GtkWidget
* gtk_pixmap_menu_item_new (void);
102 void gtk_pixmap_menu_item_set_pixmap (GtkPixmapMenuItem
*menu_item
,
106 #endif // !__WXGTK20__
108 //-----------------------------------------------------------------------------
110 //-----------------------------------------------------------------------------
112 static wxString
wxReplaceUnderscore( const wxString
& title
)
116 // GTK 1.2 wants to have "_" instead of "&" for accelerators
119 while (*pc
!= wxT('\0'))
121 if ((*pc
== wxT('&')) && (*(pc
+1) == wxT('&')))
123 // "&" is doubled to indicate "&" instead of accelerator
127 else if (*pc
== wxT('&'))
133 if ( *pc
== wxT('_') )
135 // underscores must be doubled to prevent them from being
136 // interpreted as accelerator character prefix by GTK
145 // wxPrintf( wxT("before %s after %s\n"), title.c_str(), str.c_str() );
150 //-----------------------------------------------------------------------------
151 // activate message from GTK
152 //-----------------------------------------------------------------------------
155 static void gtk_menu_open_callback( GtkWidget
*widget
, wxMenu
*menu
)
157 if (g_isIdle
) wxapp_install_idle_handler();
159 wxMenuEvent
event( wxEVT_MENU_OPEN
, -1, menu
);
160 event
.SetEventObject( menu
);
162 wxEvtHandler
* handler
= menu
->GetEventHandler();
163 if (handler
&& handler
->ProcessEvent(event
))
166 wxWindow
*win
= menu
->GetInvokingWindow();
167 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
171 //-----------------------------------------------------------------------------
173 //-----------------------------------------------------------------------------
175 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar
,wxWindow
)
177 void wxMenuBar::Init(size_t n
, wxMenu
*menus
[], const wxString titles
[], long style
)
179 // the parent window is known after wxFrame::SetMenu()
180 m_needParent
= FALSE
;
182 m_invokingWindow
= (wxWindow
*) NULL
;
184 if (!PreCreation( (wxWindow
*) NULL
, wxDefaultPosition
, wxDefaultSize
) ||
185 !CreateBase( (wxWindow
*) NULL
, -1, wxDefaultPosition
, wxDefaultSize
, style
, wxDefaultValidator
, wxT("menubar") ))
187 wxFAIL_MSG( wxT("wxMenuBar creation failed") );
191 m_menubar
= gtk_menu_bar_new();
193 m_accel
= gtk_accel_group_new();
196 if (style
& wxMB_DOCKABLE
)
198 m_widget
= gtk_handle_box_new();
199 gtk_container_add( GTK_CONTAINER(m_widget
), GTK_WIDGET(m_menubar
) );
200 gtk_widget_show( GTK_WIDGET(m_menubar
) );
204 m_widget
= GTK_WIDGET(m_menubar
);
211 for (size_t i
= 0; i
< n
; ++i
)
212 Append(menus
[i
], titles
[i
]);
215 wxMenuBar::wxMenuBar(size_t n
, wxMenu
*menus
[], const wxString titles
[], long style
)
217 Init(n
, menus
, titles
, style
);
220 wxMenuBar::wxMenuBar(long style
)
222 Init(0, NULL
, NULL
, style
);
225 wxMenuBar::wxMenuBar()
227 Init(0, NULL
, NULL
, 0);
230 wxMenuBar::~wxMenuBar()
234 static void wxMenubarUnsetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
236 menu
->SetInvokingWindow( (wxWindow
*) NULL
);
238 wxWindow
*top_frame
= win
;
239 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
240 top_frame
= top_frame
->GetParent();
243 // support for native hot keys
244 gtk_accel_group_detach( menu
->m_accel
, ACCEL_OBJ_CAST(top_frame
->m_widget
) );
247 wxMenuItemList::compatibility_iterator node
= menu
->GetMenuItems().GetFirst();
250 wxMenuItem
*menuitem
= node
->GetData();
251 if (menuitem
->IsSubMenu())
252 wxMenubarUnsetInvokingWindow( menuitem
->GetSubMenu(), win
);
253 node
= node
->GetNext();
257 static void wxMenubarSetInvokingWindow( wxMenu
*menu
, wxWindow
*win
)
259 menu
->SetInvokingWindow( win
);
261 wxWindow
*top_frame
= win
;
262 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
263 top_frame
= top_frame
->GetParent();
265 // support for native hot keys
266 ACCEL_OBJECT
*obj
= ACCEL_OBJ_CAST(top_frame
->m_widget
);
267 if ( !g_slist_find( ACCEL_OBJECTS(menu
->m_accel
), obj
) )
268 gtk_accel_group_attach( menu
->m_accel
, obj
);
270 wxMenuItemList::compatibility_iterator node
= menu
->GetMenuItems().GetFirst();
273 wxMenuItem
*menuitem
= node
->GetData();
274 if (menuitem
->IsSubMenu())
275 wxMenubarSetInvokingWindow( menuitem
->GetSubMenu(), win
);
276 node
= node
->GetNext();
280 void wxMenuBar::SetInvokingWindow( wxWindow
*win
)
282 m_invokingWindow
= win
;
283 wxWindow
*top_frame
= win
;
284 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
285 top_frame
= top_frame
->GetParent();
288 // support for native key accelerators indicated by underscroes
289 ACCEL_OBJECT
*obj
= ACCEL_OBJ_CAST(top_frame
->m_widget
);
290 if ( !g_slist_find( ACCEL_OBJECTS(m_accel
), obj
) )
291 gtk_accel_group_attach( m_accel
, obj
);
294 wxMenuList::compatibility_iterator node
= m_menus
.GetFirst();
297 wxMenu
*menu
= node
->GetData();
298 wxMenubarSetInvokingWindow( menu
, win
);
299 node
= node
->GetNext();
303 void wxMenuBar::UnsetInvokingWindow( wxWindow
*win
)
305 m_invokingWindow
= (wxWindow
*) NULL
;
306 wxWindow
*top_frame
= win
;
307 while (top_frame
->GetParent() && !(top_frame
->IsTopLevel()))
308 top_frame
= top_frame
->GetParent();
311 // support for native key accelerators indicated by underscroes
312 gtk_accel_group_detach( m_accel
, ACCEL_OBJ_CAST(top_frame
->m_widget
) );
315 wxMenuList::compatibility_iterator node
= m_menus
.GetFirst();
318 wxMenu
*menu
= node
->GetData();
319 wxMenubarUnsetInvokingWindow( menu
, win
);
320 node
= node
->GetNext();
324 bool wxMenuBar::Append( wxMenu
*menu
, const wxString
&title
)
326 if ( !wxMenuBarBase::Append( menu
, title
) )
329 return GtkAppend(menu
, title
);
332 bool wxMenuBar::GtkAppend(wxMenu
*menu
, const wxString
& title
, int pos
)
334 wxString
str( wxReplaceUnderscore( title
) );
336 // This doesn't have much effect right now.
337 menu
->SetTitle( str
);
339 // The "m_owner" is the "menu item"
341 menu
->m_owner
= gtk_menu_item_new_with_mnemonic( wxGTK_CONV( str
) );
343 menu
->m_owner
= gtk_menu_item_new_with_label( wxGTK_CONV( str
) );
344 GtkLabel
*label
= GTK_LABEL( GTK_BIN(menu
->m_owner
)->child
);
346 gtk_label_set_text( label
, wxGTK_CONV( str
) );
348 guint accel_key
= gtk_label_parse_uline (GTK_LABEL(label
), wxGTK_CONV( str
) );
349 if (accel_key
!= GDK_VoidSymbol
)
351 gtk_widget_add_accelerator (menu
->m_owner
,
353 m_accel
,//gtk_menu_ensure_uline_accel_group(GTK_MENU(m_menubar)),
360 gtk_widget_show( menu
->m_owner
);
362 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menu
->m_owner
), menu
->m_menu
);
365 gtk_menu_shell_append( GTK_MENU_SHELL(m_menubar
), menu
->m_owner
);
367 gtk_menu_shell_insert( GTK_MENU_SHELL(m_menubar
), menu
->m_owner
, pos
);
369 gtk_signal_connect( GTK_OBJECT(menu
->m_owner
), "activate",
370 GTK_SIGNAL_FUNC(gtk_menu_open_callback
),
373 // m_invokingWindow is set after wxFrame::SetMenuBar(). This call enables
374 // addings menu later on.
375 if (m_invokingWindow
)
377 wxMenubarSetInvokingWindow( menu
, m_invokingWindow
);
379 // OPTIMISE ME: we should probably cache this, or pass it
380 // directly, but for now this is a minimal
381 // change to validate the new dynamic sizing.
382 // see (and refactor :) similar code in Remove
385 wxFrame
*frame
= wxDynamicCast( m_invokingWindow
, wxFrame
);
388 frame
->UpdateMenuBarSize();
394 bool wxMenuBar::Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
)
396 if ( !wxMenuBarBase::Insert(pos
, menu
, title
) )
401 if ( !GtkAppend(menu
, title
, (int)pos
) )
407 wxMenu
*wxMenuBar::Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
)
409 // remove the old item and insert a new one
410 wxMenu
*menuOld
= Remove(pos
);
411 if ( menuOld
&& !Insert(pos
, menu
, title
) )
413 return (wxMenu
*) NULL
;
416 // either Insert() succeeded or Remove() failed and menuOld is NULL
420 wxMenu
*wxMenuBar::Remove(size_t pos
)
422 wxMenu
*menu
= wxMenuBarBase::Remove(pos
);
424 return (wxMenu
*) NULL
;
426 gtk_menu_item_remove_submenu( GTK_MENU_ITEM(menu
->m_owner
) );
427 gtk_container_remove(GTK_CONTAINER(m_menubar
), menu
->m_owner
);
429 gtk_widget_destroy( menu
->m_owner
);
430 menu
->m_owner
= NULL
;
432 if (m_invokingWindow
)
434 // OPTIMISE ME: see comment in GtkAppend
435 wxFrame
*frame
= wxDynamicCast( m_invokingWindow
, wxFrame
);
438 frame
->UpdateMenuBarSize();
444 static int FindMenuItemRecursive( const wxMenu
*menu
, const wxString
&menuString
, const wxString
&itemString
)
446 if (wxMenuItem::GetLabelFromText(menu
->GetTitle()) == wxMenuItem::GetLabelFromText(menuString
))
448 int res
= menu
->FindItem( itemString
);
449 if (res
!= wxNOT_FOUND
)
453 wxMenuItemList::compatibility_iterator node
= menu
->GetMenuItems().GetFirst();
456 wxMenuItem
*item
= node
->GetData();
457 if (item
->IsSubMenu())
458 return FindMenuItemRecursive(item
->GetSubMenu(), menuString
, itemString
);
460 node
= node
->GetNext();
466 int wxMenuBar::FindMenuItem( const wxString
&menuString
, const wxString
&itemString
) const
468 wxMenuList::compatibility_iterator node
= m_menus
.GetFirst();
471 wxMenu
*menu
= node
->GetData();
472 int res
= FindMenuItemRecursive( menu
, menuString
, itemString
);
475 node
= node
->GetNext();
481 // Find a wxMenuItem using its id. Recurses down into sub-menus
482 static wxMenuItem
* FindMenuItemByIdRecursive(const wxMenu
* menu
, int id
)
484 wxMenuItem
* result
= menu
->FindChildItem(id
);
486 wxMenuItemList::compatibility_iterator node
= menu
->GetMenuItems().GetFirst();
487 while ( node
&& result
== NULL
)
489 wxMenuItem
*item
= node
->GetData();
490 if (item
->IsSubMenu())
492 result
= FindMenuItemByIdRecursive( item
->GetSubMenu(), id
);
494 node
= node
->GetNext();
500 wxMenuItem
* wxMenuBar::FindItem( int id
, wxMenu
**menuForItem
) const
502 wxMenuItem
* result
= 0;
503 wxMenuList::compatibility_iterator node
= m_menus
.GetFirst();
504 while (node
&& result
== 0)
506 wxMenu
*menu
= node
->GetData();
507 result
= FindMenuItemByIdRecursive( menu
, id
);
508 node
= node
->GetNext();
513 *menuForItem
= result
? result
->GetMenu() : (wxMenu
*)NULL
;
519 void wxMenuBar::EnableTop( size_t pos
, bool flag
)
521 wxMenuList::compatibility_iterator node
= m_menus
.Item( pos
);
523 wxCHECK_RET( node
, wxT("menu not found") );
525 wxMenu
* menu
= node
->GetData();
528 gtk_widget_set_sensitive( menu
->m_owner
, flag
);
531 wxString
wxMenuBar::GetLabelTop( size_t pos
) const
533 wxMenuList::compatibility_iterator node
= m_menus
.Item( pos
);
535 wxCHECK_MSG( node
, wxT("invalid"), wxT("menu not found") );
537 wxMenu
* menu
= node
->GetData();
540 wxString
text( menu
->GetTitle() );
541 for ( const wxChar
*pc
= text
.c_str(); *pc
; pc
++ )
543 if ( *pc
== wxT('_') )
545 // '_' is the escape character for GTK+
549 // don't remove ampersands '&' since if we have them in the menu title
550 // it means that they were doubled to indicate "&" instead of accelerator
558 void wxMenuBar::SetLabelTop( size_t pos
, const wxString
& label
)
560 wxMenuList::compatibility_iterator node
= m_menus
.Item( pos
);
562 wxCHECK_RET( node
, wxT("menu not found") );
564 wxMenu
* menu
= node
->GetData();
566 wxString
str( wxReplaceUnderscore( label
) );
568 menu
->SetTitle( str
);
572 GtkLabel
*label
= GTK_LABEL( GTK_BIN(menu
->m_owner
)->child
);
575 gtk_label_set( label
, wxGTK_CONV( str
) );
577 /* reparse key accel */
578 (void)gtk_label_parse_uline (GTK_LABEL(label
), wxGTK_CONV( str
) );
579 gtk_accel_label_refetch( GTK_ACCEL_LABEL(label
) );
584 //-----------------------------------------------------------------------------
586 //-----------------------------------------------------------------------------
589 static void gtk_menu_clicked_callback( GtkWidget
*widget
, wxMenu
*menu
)
592 wxapp_install_idle_handler();
594 int id
= menu
->FindMenuIdByMenuItem(widget
);
596 /* should find it for normal (not popup) menu */
597 wxASSERT_MSG( (id
!= -1) || (menu
->GetInvokingWindow() != NULL
),
598 _T("menu item not found in gtk_menu_clicked_callback") );
600 if (!menu
->IsEnabled(id
))
603 wxMenuItem
* item
= menu
->FindChildItem( id
);
604 wxCHECK_RET( item
, wxT("error in menu item callback") );
606 if ( item
->GetId() == wxGTK_TITLE_ID
)
608 // ignore events from the menu title
612 if (item
->IsCheckable())
614 bool isReallyChecked
= item
->IsChecked(),
615 isInternallyChecked
= item
->wxMenuItemBase::IsChecked();
617 // ensure that the internal state is always consistent with what is
618 // shown on the screen
619 item
->wxMenuItemBase::Check(isReallyChecked
);
621 // we must not report the events for the radio button going up nor the
622 // events resulting from the calls to wxMenuItem::Check()
623 if ( (item
->GetKind() == wxITEM_RADIO
&& !isReallyChecked
) ||
624 (isInternallyChecked
== isReallyChecked
) )
631 // Is this menu on a menubar? (possibly nested)
632 wxFrame
* frame
= NULL
;
633 if(menu
->IsAttached())
634 frame
= menu
->GetMenuBar()->GetFrame();
636 // FIXME: why do we have to call wxFrame::GetEventHandler() directly here?
637 // normally wxMenu::SendEvent() should be enough, if it doesn't work
638 // in wxGTK then we have a bug in wxMenu::GetInvokingWindow() which
639 // should be fixed instead of working around it here...
642 // If it is attached then let the frame send the event.
643 // Don't call frame->ProcessCommand(id) because it toggles
644 // checkable items and we've already done that above.
645 wxCommandEvent
commandEvent(wxEVT_COMMAND_MENU_SELECTED
, id
);
646 commandEvent
.SetEventObject(frame
);
647 if (item
->IsCheckable())
648 commandEvent
.SetInt(item
->IsChecked());
649 commandEvent
.SetEventObject(menu
);
651 frame
->GetEventHandler()->ProcessEvent(commandEvent
);
655 // otherwise let the menu have it
656 menu
->SendEvent(id
, item
->IsCheckable() ? item
->IsChecked() : -1);
661 //-----------------------------------------------------------------------------
663 //-----------------------------------------------------------------------------
666 static void gtk_menu_hilight_callback( GtkWidget
*widget
, wxMenu
*menu
)
668 if (g_isIdle
) wxapp_install_idle_handler();
670 int id
= menu
->FindMenuIdByMenuItem(widget
);
672 wxASSERT( id
!= -1 ); // should find it!
674 if (!menu
->IsEnabled(id
))
677 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, id
);
678 event
.SetEventObject( menu
);
680 wxEvtHandler
* handler
= menu
->GetEventHandler();
681 if (handler
&& handler
->ProcessEvent(event
))
684 wxWindow
*win
= menu
->GetInvokingWindow();
685 if (win
) win
->GetEventHandler()->ProcessEvent( event
);
689 //-----------------------------------------------------------------------------
691 //-----------------------------------------------------------------------------
694 static void gtk_menu_nolight_callback( GtkWidget
*widget
, wxMenu
*menu
)
696 if (g_isIdle
) wxapp_install_idle_handler();
698 int id
= menu
->FindMenuIdByMenuItem(widget
);
700 wxASSERT( id
!= -1 ); // should find it!
702 if (!menu
->IsEnabled(id
))
705 wxMenuEvent
event( wxEVT_MENU_HIGHLIGHT
, -1 );
706 event
.SetEventObject( menu
);
708 wxEvtHandler
* handler
= menu
->GetEventHandler();
709 if (handler
&& handler
->ProcessEvent(event
))
712 wxWindow
*win
= menu
->GetInvokingWindow();
714 win
->GetEventHandler()->ProcessEvent( event
);
718 //-----------------------------------------------------------------------------
720 //-----------------------------------------------------------------------------
722 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
, wxObject
)
724 wxMenuItem
*wxMenuItemBase::New(wxMenu
*parentMenu
,
726 const wxString
& name
,
727 const wxString
& help
,
731 return new wxMenuItem(parentMenu
, id
, name
, help
, kind
, subMenu
);
734 wxMenuItem::wxMenuItem(wxMenu
*parentMenu
,
736 const wxString
& text
,
737 const wxString
& help
,
740 : wxMenuItemBase(parentMenu
, id
, text
, help
, kind
, subMenu
)
745 wxMenuItem::wxMenuItem(wxMenu
*parentMenu
,
747 const wxString
& text
,
748 const wxString
& help
,
751 : wxMenuItemBase(parentMenu
, id
, text
, help
,
752 isCheckable
? wxITEM_CHECK
: wxITEM_NORMAL
, subMenu
)
757 void wxMenuItem::Init(const wxString
& text
)
759 m_labelWidget
= (GtkWidget
*) NULL
;
760 m_menuItem
= (GtkWidget
*) NULL
;
765 wxMenuItem::~wxMenuItem()
767 // don't delete menu items, the menus take care of that
770 // return the menu item text without any menu accels
772 wxString
wxMenuItemBase::GetLabelFromText(const wxString
& text
)
776 for ( const wxChar
*pc
= text
.c_str(); *pc
; pc
++ )
778 if ( *pc
== wxT('\t'))
781 if ( *pc
== wxT('_') )
783 // GTK 1.2 escapes "xxx_xxx" to "xxx__xxx"
790 if ( *pc
== wxT('\\') )
792 // GTK 2.0 escapes "xxx/xxx" to "xxx\/xxx"
799 if ( (*pc
== wxT('&')) && (*(pc
+1) != wxT('&')) )
802 // "&" is doubled to indicate "&" instead of accelerator
809 // wxPrintf( wxT("GetLabelFromText(): text %s label %s\n"), text.c_str(), label.c_str() );
814 void wxMenuItem::SetText( const wxString
& str
)
816 // Some optimization to avoid flicker
817 wxString oldLabel
= m_text
;
818 oldLabel
= wxStripMenuCodes(oldLabel
);
819 oldLabel
.Replace(wxT("_"), wxT(""));
820 wxString label1
= wxStripMenuCodes(str
);
821 wxString oldhotkey
= GetHotKey(); // Store the old hotkey in Ctrl-foo format
822 wxCharBuffer oldbuf
= wxGTK_CONV( GetGtkHotKey(*this) ); // and as <control>foo
826 if (oldLabel
== label1
&&
827 oldhotkey
== GetHotKey()) // Make sure we can change a hotkey even if the label is unaltered
834 label
= (GtkLabel
*) m_labelWidget
;
836 label
= GTK_LABEL( GTK_BIN(m_menuItem
)->child
);
839 gtk_label_set_text_with_mnemonic( GTK_LABEL(label
), wxGTK_CONV(m_text
) );
842 gtk_label_set( label
, wxGTK_CONV( m_text
) );
845 (void)gtk_label_parse_uline (GTK_LABEL(label
), wxGTK_CONV(m_text
) );
846 gtk_accel_label_refetch( GTK_ACCEL_LABEL(label
) );
851 GdkModifierType accel_mods
;
852 gtk_accelerator_parse( (const char*) oldbuf
, &accel_key
, &accel_mods
);
855 gtk_widget_remove_accelerator( GTK_WIDGET(m_menuItem
),
856 m_parentMenu
->m_accel
,
861 wxCharBuffer buf
= wxGTK_CONV( GetGtkHotKey(*this) );
862 gtk_accelerator_parse( (const char*) buf
, &accel_key
, &accel_mods
);
865 gtk_widget_add_accelerator( GTK_WIDGET(m_menuItem
),
867 m_parentMenu
->m_accel
,
874 // it's valid for this function to be called even if m_menuItem == NULL
875 void wxMenuItem::DoSetText( const wxString
& str
)
877 // '\t' is the deliminator indicating a hot key
879 const wxChar
*pc
= str
;
880 while ( (*pc
!= wxT('\0')) && (*pc
!= wxT('\t')) )
882 if ((*pc
== wxT('&')) && (*(pc
+1) == wxT('&')))
884 // "&" is doubled to indicate "&" instead of accelerator
888 else if (*pc
== wxT('&'))
892 else if ( *pc
== wxT('_') ) // escape underscores
911 // wxPrintf( wxT("DoSetText(): str %s m_text %s hotkey %s\n"), str.c_str(), m_text.c_str(), m_hotKey.c_str() );
916 wxAcceleratorEntry
*wxMenuItem::GetAccel() const
921 return (wxAcceleratorEntry
*)NULL
;
924 // as wxGetAccelFromString() looks for TAB, insert a dummy one here
926 label
<< wxT('\t') << GetHotKey();
928 return wxGetAccelFromString(label
);
931 #endif // wxUSE_ACCEL
933 void wxMenuItem::Check( bool check
)
935 wxCHECK_RET( m_menuItem
, wxT("invalid menu item") );
937 if (check
== m_isChecked
)
940 wxMenuItemBase::Check( check
);
946 gtk_check_menu_item_set_state( (GtkCheckMenuItem
*)m_menuItem
, (gint
)check
);
950 wxFAIL_MSG( _T("can't check this item") );
954 void wxMenuItem::Enable( bool enable
)
956 wxCHECK_RET( m_menuItem
, wxT("invalid menu item") );
958 gtk_widget_set_sensitive( m_menuItem
, enable
);
959 wxMenuItemBase::Enable( enable
);
962 bool wxMenuItem::IsChecked() const
964 wxCHECK_MSG( m_menuItem
, FALSE
, wxT("invalid menu item") );
966 wxCHECK_MSG( IsCheckable(), FALSE
,
967 wxT("can't get state of uncheckable item!") );
969 return ((GtkCheckMenuItem
*)m_menuItem
)->active
!= 0;
972 //-----------------------------------------------------------------------------
974 //-----------------------------------------------------------------------------
976 IMPLEMENT_DYNAMIC_CLASS(wxMenu
,wxEvtHandler
)
980 m_accel
= gtk_accel_group_new();
981 m_menu
= gtk_menu_new();
982 // NB: keep reference to the menu so that it is not destroyed behind
983 // our back by GTK+ e.g. when it is removed from menubar:
984 gtk_widget_ref(m_menu
);
986 m_owner
= (GtkWidget
*) NULL
;
988 // Tearoffs are entries, just like separators. So if we want this
989 // menu to be a tear-off one, we just append a tearoff entry
991 if ( m_style
& wxMENU_TEAROFF
)
993 GtkWidget
*tearoff
= gtk_tearoff_menu_item_new();
995 gtk_menu_append(GTK_MENU(m_menu
), tearoff
);
1000 // append the title as the very first entry if we have it
1001 if ( !m_title
.empty() )
1003 Append(wxGTK_TITLE_ID
, m_title
);
1010 WX_CLEAR_LIST(wxMenuItemList
, m_items
);
1012 if ( GTK_IS_WIDGET( m_menu
))
1015 gtk_widget_unref( m_menu
);
1016 // if the menu is inserted in another menu at this time, there was
1017 // one more reference to it:
1019 gtk_widget_destroy( m_menu
);
1023 bool wxMenu::GtkAppend(wxMenuItem
*mitem
, int pos
)
1025 GtkWidget
*menuItem
;
1032 if ( mitem
->IsSeparator() )
1035 menuItem
= gtk_separator_menu_item_new();
1038 menuItem
= gtk_menu_item_new();
1041 else if (mitem
->GetBitmap().Ok())
1043 text
= mitem
->GetText();
1044 const wxBitmap
*bitmap
= &mitem
->GetBitmap();
1047 menuItem
= gtk_image_menu_item_new_with_mnemonic( wxGTK_CONV( text
) );
1050 if (bitmap
->HasPixbuf())
1052 image
= gtk_image_new_from_pixbuf(bitmap
->GetPixbuf());
1056 GdkPixmap
*gdk_pixmap
= bitmap
->GetPixmap();
1057 GdkBitmap
*gdk_bitmap
= bitmap
->GetMask() ?
1058 bitmap
->GetMask()->GetBitmap() :
1060 image
= gtk_image_new_from_pixmap( gdk_pixmap
, gdk_bitmap
);
1063 gtk_widget_show(image
);
1065 gtk_image_menu_item_set_image( GTK_IMAGE_MENU_ITEM(menuItem
), image
);
1068 GdkPixmap
*gdk_pixmap
= bitmap
->GetPixmap();
1069 GdkBitmap
*gdk_bitmap
= bitmap
->GetMask() ? bitmap
->GetMask()->GetBitmap() : (GdkBitmap
*) NULL
;
1071 menuItem
= gtk_pixmap_menu_item_new ();
1072 label
= GTK_LABEL(gtk_accel_label_new ( wxGTK_CONV( text
) ));
1073 gtk_misc_set_alignment (GTK_MISC (label
), 0.0, 0.5);
1074 gtk_container_add (GTK_CONTAINER (menuItem
), GTK_WIDGET(label
));
1076 gtk_accel_label_set_accel_widget (GTK_ACCEL_LABEL (label
), menuItem
);
1078 gtk_widget_show (GTK_WIDGET(label
));
1080 mitem
->SetLabelWidget(GTK_WIDGET(label
));
1082 GtkWidget
* pixmap
= gtk_pixmap_new( gdk_pixmap
, gdk_bitmap
);
1083 gtk_widget_show(pixmap
);
1084 gtk_pixmap_menu_item_set_pixmap(GTK_PIXMAP_MENU_ITEM( menuItem
), pixmap
);
1090 else // a normal item
1092 // text has "_" instead of "&" after mitem->SetText() so don't use it
1093 text
= mitem
->GetText() ;
1095 switch ( mitem
->GetKind() )
1100 menuItem
= gtk_check_menu_item_new_with_mnemonic( wxGTK_CONV( text
) );
1102 menuItem
= gtk_check_menu_item_new_with_label( wxGTK_CONV( text
) );
1103 label
= GTK_LABEL( GTK_BIN(menuItem
)->child
);
1105 gtk_label_set_text( label
, wxGTK_CONV( text
) );
1113 GSList
*group
= NULL
;
1114 if ( m_prevRadio
== NULL
)
1116 // start of a new radio group
1118 m_prevRadio
= menuItem
= gtk_radio_menu_item_new_with_mnemonic( group
, wxGTK_CONV( text
) );
1120 m_prevRadio
= menuItem
= gtk_radio_menu_item_new_with_label( group
, wxGTK_CONV( text
) );
1121 label
= GTK_LABEL( GTK_BIN(menuItem
)->child
);
1123 gtk_label_set_text( label
, wxGTK_CONV( text
) );
1126 else // continue the radio group
1129 group
= gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (m_prevRadio
));
1130 m_prevRadio
= menuItem
= gtk_radio_menu_item_new_with_mnemonic( group
, wxGTK_CONV( text
) );
1132 group
= gtk_radio_menu_item_group (GTK_RADIO_MENU_ITEM (m_prevRadio
));
1133 m_prevRadio
= menuItem
= gtk_radio_menu_item_new_with_label( group
, wxGTK_CONV( text
) );
1134 label
= GTK_LABEL( GTK_BIN(menuItem
)->child
);
1141 wxFAIL_MSG( _T("unexpected menu item kind") );
1147 menuItem
= gtk_menu_item_new_with_mnemonic( wxGTK_CONV( text
) );
1149 menuItem
= gtk_menu_item_new_with_label( wxGTK_CONV( text
) );
1150 label
= GTK_LABEL( GTK_BIN(menuItem
)->child
);
1160 GdkModifierType accel_mods
;
1161 wxCharBuffer buf
= wxGTK_CONV( GetGtkHotKey(*mitem
) );
1163 // wxPrintf( wxT("item: %s hotkey %s\n"), mitem->GetText().c_str(), GetGtkHotKey(*mitem).c_str() );
1164 gtk_accelerator_parse( (const char*) buf
, &accel_key
, &accel_mods
);
1167 gtk_widget_add_accelerator (GTK_WIDGET(menuItem
),
1176 gtk_menu_shell_append(GTK_MENU_SHELL(m_menu
), menuItem
);
1178 gtk_menu_shell_insert(GTK_MENU_SHELL(m_menu
), menuItem
, pos
);
1180 gtk_widget_show( menuItem
);
1182 if ( !mitem
->IsSeparator() )
1184 wxASSERT_MSG( menuItem
, wxT("invalid menuitem") );
1186 gtk_signal_connect( GTK_OBJECT(menuItem
), "select",
1187 GTK_SIGNAL_FUNC(gtk_menu_hilight_callback
),
1190 gtk_signal_connect( GTK_OBJECT(menuItem
), "deselect",
1191 GTK_SIGNAL_FUNC(gtk_menu_nolight_callback
),
1194 if ( mitem
->IsSubMenu() && mitem
->GetKind() != wxITEM_RADIO
&& mitem
->GetKind() != wxITEM_CHECK
)
1196 gtk_menu_item_set_submenu( GTK_MENU_ITEM(menuItem
), mitem
->GetSubMenu()->m_menu
);
1198 gtk_widget_show( mitem
->GetSubMenu()->m_menu
);
1200 // if adding a submenu to a menu already existing in the menu bar, we
1201 // must set invoking window to allow processing events from this
1203 if ( m_invokingWindow
)
1204 wxMenubarSetInvokingWindow(mitem
->GetSubMenu(), m_invokingWindow
);
1208 gtk_signal_connect( GTK_OBJECT(menuItem
), "activate",
1209 GTK_SIGNAL_FUNC(gtk_menu_clicked_callback
),
1213 guint accel_key
= gtk_label_parse_uline (GTK_LABEL(label
), wxGTK_CONV( text
) );
1214 if (accel_key
!= GDK_VoidSymbol
)
1216 gtk_widget_add_accelerator (menuItem
,
1218 gtk_menu_ensure_uline_accel_group(GTK_MENU(m_menu
)),
1226 mitem
->SetMenuItem(menuItem
);
1230 // This doesn't even exist!
1231 // gtk_widget_lock_accelerators(mitem->GetMenuItem());
1237 wxMenuItem
* wxMenu::DoAppend(wxMenuItem
*mitem
)
1239 if (!GtkAppend(mitem
))
1242 return wxMenuBase::DoAppend(mitem
);
1245 wxMenuItem
* wxMenu::DoInsert(size_t pos
, wxMenuItem
*item
)
1247 if ( !wxMenuBase::DoInsert(pos
, item
) )
1251 if ( !GtkAppend(item
, (int)pos
) )
1257 wxMenuItem
*wxMenu::DoRemove(wxMenuItem
*item
)
1259 if ( !wxMenuBase::DoRemove(item
) )
1260 return (wxMenuItem
*)NULL
;
1262 // TODO: this code doesn't delete the item factory item and this seems
1263 // impossible as of GTK 1.2.6.
1264 gtk_widget_destroy( item
->GetMenuItem() );
1269 int wxMenu::FindMenuIdByMenuItem( GtkWidget
*menuItem
) const
1271 wxMenuItemList::compatibility_iterator node
= m_items
.GetFirst();
1274 wxMenuItem
*item
= node
->GetData();
1275 if (item
->GetMenuItem() == menuItem
)
1276 return item
->GetId();
1277 node
= node
->GetNext();
1283 // ----------------------------------------------------------------------------
1285 // ----------------------------------------------------------------------------
1289 static wxString
GetGtkHotKey( const wxMenuItem
& item
)
1293 wxAcceleratorEntry
*accel
= item
.GetAccel();
1296 int flags
= accel
->GetFlags();
1297 if ( flags
& wxACCEL_ALT
)
1298 hotkey
+= wxT("<alt>");
1299 if ( flags
& wxACCEL_CTRL
)
1300 hotkey
+= wxT("<control>");
1301 if ( flags
& wxACCEL_SHIFT
)
1302 hotkey
+= wxT("<shift>");
1304 int code
= accel
->GetKeyCode();
1319 hotkey
+= wxString::Format(wxT("F%d"), code
- WXK_F1
+ 1);
1322 // TODO: we should use gdk_keyval_name() (a.k.a.
1323 // XKeysymToString) here as well as hardcoding the keysym
1324 // names this might be not portable
1325 case WXK_NUMPAD_INSERT
:
1326 hotkey
<< wxT("KP_Insert" );
1328 case WXK_NUMPAD_DELETE
:
1329 hotkey
<< wxT("KP_Delete" );
1332 hotkey
<< wxT("Insert" );
1335 hotkey
<< wxT("Delete" );
1338 hotkey
<< wxT("Up" );
1341 hotkey
<< wxT("Down" );
1345 hotkey
<< wxT("Prior" );
1349 hotkey
<< wxT("Next" );
1352 hotkey
<< wxT("Left" );
1355 hotkey
<< wxT("Right" );
1358 hotkey
<< wxT("Home" );
1361 hotkey
<< wxT("End" );
1364 hotkey
<< wxT("Return" );
1367 // if there are any other keys wxGetAccelFromString() may
1368 // return, we should process them here
1373 wxString name
= wxGTK_CONV_BACK( gdk_keyval_name((guint
)code
) );
1381 wxFAIL_MSG( wxT("unknown keyboard accel") );
1390 #endif // wxUSE_ACCEL
1393 //-----------------------------------------------------------------------------
1394 // substitute for missing GtkPixmapMenuItem
1395 //-----------------------------------------------------------------------------
1400 * Copyright (C) 1998, 1999, 2000 Free Software Foundation
1401 * All rights reserved.
1403 * This file is part of the Gnome Library.
1405 * The Gnome Library is free software; you can redistribute it and/or
1406 * modify it under the terms of the GNU Library General Public License as
1407 * published by the Free Software Foundation; either version 2 of the
1408 * License, or (at your option) any later version.
1410 * The Gnome Library is distributed in the hope that it will be useful,
1411 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1412 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1413 * Library General Public License for more details.
1415 * You should have received a copy of the GNU Library General Public
1416 * License along with the Gnome Library; see the file COPYING.LIB. If not,
1417 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
1418 * Boston, MA 02111-1307, USA.
1424 /* Author: Dietmar Maurer <dm@vlsivie.tuwien.ac.at> */
1426 #include <gtk/gtkaccellabel.h>
1427 #include <gtk/gtksignal.h>
1428 #include <gtk/gtkmenuitem.h>
1429 #include <gtk/gtkmenu.h>
1430 #include <gtk/gtkcontainer.h>
1435 static void gtk_pixmap_menu_item_class_init (GtkPixmapMenuItemClass
*klass
);
1436 static void gtk_pixmap_menu_item_init (GtkPixmapMenuItem
*menu_item
);
1437 static void gtk_pixmap_menu_item_draw (GtkWidget
*widget
,
1438 GdkRectangle
*area
);
1439 static gint
gtk_pixmap_menu_item_expose (GtkWidget
*widget
,
1440 GdkEventExpose
*event
);
1442 /* we must override the following functions */
1444 static void gtk_pixmap_menu_item_map (GtkWidget
*widget
);
1445 static void gtk_pixmap_menu_item_size_allocate (GtkWidget
*widget
,
1446 GtkAllocation
*allocation
);
1447 static void gtk_pixmap_menu_item_forall (GtkContainer
*container
,
1448 gboolean include_internals
,
1449 GtkCallback callback
,
1450 gpointer callback_data
);
1451 static void gtk_pixmap_menu_item_size_request (GtkWidget
*widget
,
1452 GtkRequisition
*requisition
);
1453 static void gtk_pixmap_menu_item_remove (GtkContainer
*container
,
1456 static void changed_have_pixmap_status (GtkPixmapMenuItem
*menu_item
);
1458 static GtkMenuItemClass
*parent_class
= NULL
;
1462 #define BORDER_SPACING 3
1463 #define PMAP_WIDTH 20
1466 gtk_pixmap_menu_item_get_type (void)
1468 static GtkType pixmap_menu_item_type
= 0;
1470 if (!pixmap_menu_item_type
)
1472 GtkTypeInfo pixmap_menu_item_info
=
1474 (char *)"GtkPixmapMenuItem",
1475 sizeof (GtkPixmapMenuItem
),
1476 sizeof (GtkPixmapMenuItemClass
),
1477 (GtkClassInitFunc
) gtk_pixmap_menu_item_class_init
,
1478 (GtkObjectInitFunc
) gtk_pixmap_menu_item_init
,
1479 /* reserved_1 */ NULL
,
1480 /* reserved_2 */ NULL
,
1481 (GtkClassInitFunc
) NULL
,
1484 pixmap_menu_item_type
= gtk_type_unique (gtk_menu_item_get_type (),
1485 &pixmap_menu_item_info
);
1488 return pixmap_menu_item_type
;
1494 * gtk_pixmap_menu_item_new
1496 * Creates a new pixmap menu item. Use gtk_pixmap_menu_item_set_pixmap()
1497 * to set the pixmap wich is displayed at the left side.
1500 * &GtkWidget pointer to new menu item
1504 gtk_pixmap_menu_item_new (void)
1506 return GTK_WIDGET (gtk_type_new (gtk_pixmap_menu_item_get_type ()));
1510 gtk_pixmap_menu_item_class_init (GtkPixmapMenuItemClass
*klass
)
1512 GtkObjectClass
*object_class
;
1513 GtkWidgetClass
*widget_class
;
1514 GtkMenuItemClass
*menu_item_class
;
1515 GtkContainerClass
*container_class
;
1517 object_class
= (GtkObjectClass
*) klass
;
1518 widget_class
= (GtkWidgetClass
*) klass
;
1519 menu_item_class
= (GtkMenuItemClass
*) klass
;
1520 container_class
= (GtkContainerClass
*) klass
;
1522 parent_class
= (GtkMenuItemClass
*) gtk_type_class (gtk_menu_item_get_type ());
1524 widget_class
->draw
= gtk_pixmap_menu_item_draw
;
1525 widget_class
->expose_event
= gtk_pixmap_menu_item_expose
;
1526 widget_class
->map
= gtk_pixmap_menu_item_map
;
1527 widget_class
->size_allocate
= gtk_pixmap_menu_item_size_allocate
;
1528 widget_class
->size_request
= gtk_pixmap_menu_item_size_request
;
1530 container_class
->forall
= gtk_pixmap_menu_item_forall
;
1531 container_class
->remove
= gtk_pixmap_menu_item_remove
;
1533 klass
->orig_toggle_size
= menu_item_class
->toggle_size
;
1534 klass
->have_pixmap_count
= 0;
1538 gtk_pixmap_menu_item_init (GtkPixmapMenuItem
*menu_item
)
1542 mi
= GTK_MENU_ITEM (menu_item
);
1544 menu_item
->pixmap
= NULL
;
1548 gtk_pixmap_menu_item_draw (GtkWidget
*widget
,
1551 g_return_if_fail (widget
!= NULL
);
1552 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (widget
));
1553 g_return_if_fail (area
!= NULL
);
1555 if (GTK_WIDGET_CLASS (parent_class
)->draw
)
1556 (* GTK_WIDGET_CLASS (parent_class
)->draw
) (widget
, area
);
1558 if (GTK_WIDGET_DRAWABLE (widget
) &&
1559 GTK_PIXMAP_MENU_ITEM(widget
)->pixmap
) {
1560 gtk_widget_draw(GTK_WIDGET(GTK_PIXMAP_MENU_ITEM(widget
)->pixmap
),NULL
);
1565 gtk_pixmap_menu_item_expose (GtkWidget
*widget
,
1566 GdkEventExpose
*event
)
1568 g_return_val_if_fail (widget
!= NULL
, FALSE
);
1569 g_return_val_if_fail (GTK_IS_PIXMAP_MENU_ITEM (widget
), FALSE
);
1570 g_return_val_if_fail (event
!= NULL
, FALSE
);
1572 if (GTK_WIDGET_CLASS (parent_class
)->expose_event
)
1573 (* GTK_WIDGET_CLASS (parent_class
)->expose_event
) (widget
, event
);
1575 if (GTK_WIDGET_DRAWABLE (widget
) &&
1576 GTK_PIXMAP_MENU_ITEM(widget
)->pixmap
) {
1577 gtk_widget_draw(GTK_WIDGET(GTK_PIXMAP_MENU_ITEM(widget
)->pixmap
),NULL
);
1584 * gtk_pixmap_menu_item_set_pixmap
1585 * @menu_item: Pointer to the pixmap menu item
1586 * @pixmap: Pointer to a pixmap widget
1588 * Set the pixmap of the menu item.
1593 gtk_pixmap_menu_item_set_pixmap (GtkPixmapMenuItem
*menu_item
,
1596 g_return_if_fail (menu_item
!= NULL
);
1597 g_return_if_fail (pixmap
!= NULL
);
1598 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (menu_item
));
1599 g_return_if_fail (GTK_IS_WIDGET (pixmap
));
1600 g_return_if_fail (menu_item
->pixmap
== NULL
);
1602 gtk_widget_set_parent (pixmap
, GTK_WIDGET (menu_item
));
1603 menu_item
->pixmap
= pixmap
;
1605 if (GTK_WIDGET_REALIZED (pixmap
->parent
) &&
1606 !GTK_WIDGET_REALIZED (pixmap
))
1607 gtk_widget_realize (pixmap
);
1609 if (GTK_WIDGET_VISIBLE (pixmap
->parent
)) {
1610 if (GTK_WIDGET_MAPPED (pixmap
->parent
) &&
1611 GTK_WIDGET_VISIBLE(pixmap
) &&
1612 !GTK_WIDGET_MAPPED (pixmap
))
1613 gtk_widget_map (pixmap
);
1616 changed_have_pixmap_status(menu_item
);
1618 if (GTK_WIDGET_VISIBLE (pixmap
) && GTK_WIDGET_VISIBLE (menu_item
))
1619 gtk_widget_queue_resize (pixmap
);
1623 gtk_pixmap_menu_item_map (GtkWidget
*widget
)
1625 GtkPixmapMenuItem
*menu_item
;
1627 g_return_if_fail (widget
!= NULL
);
1628 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (widget
));
1630 menu_item
= GTK_PIXMAP_MENU_ITEM(widget
);
1632 GTK_WIDGET_CLASS(parent_class
)->map(widget
);
1634 if (menu_item
->pixmap
&&
1635 GTK_WIDGET_VISIBLE (menu_item
->pixmap
) &&
1636 !GTK_WIDGET_MAPPED (menu_item
->pixmap
))
1637 gtk_widget_map (menu_item
->pixmap
);
1641 gtk_pixmap_menu_item_size_allocate (GtkWidget
*widget
,
1642 GtkAllocation
*allocation
)
1644 GtkPixmapMenuItem
*pmenu_item
;
1646 pmenu_item
= GTK_PIXMAP_MENU_ITEM(widget
);
1648 if (pmenu_item
->pixmap
&& GTK_WIDGET_VISIBLE(pmenu_item
))
1650 GtkAllocation child_allocation
;
1653 border_width
= GTK_CONTAINER (widget
)->border_width
;
1655 child_allocation
.width
= pmenu_item
->pixmap
->requisition
.width
;
1656 child_allocation
.height
= pmenu_item
->pixmap
->requisition
.height
;
1657 child_allocation
.x
= border_width
+ BORDER_SPACING
;
1658 child_allocation
.y
= (border_width
+ BORDER_SPACING
1659 + (((allocation
->height
- child_allocation
.height
) - child_allocation
.x
)
1660 / 2)); /* center pixmaps vertically */
1661 gtk_widget_size_allocate (pmenu_item
->pixmap
, &child_allocation
);
1664 if (GTK_WIDGET_CLASS (parent_class
)->size_allocate
)
1665 GTK_WIDGET_CLASS(parent_class
)->size_allocate (widget
, allocation
);
1669 gtk_pixmap_menu_item_forall (GtkContainer
*container
,
1670 gboolean include_internals
,
1671 GtkCallback callback
,
1672 gpointer callback_data
)
1674 GtkPixmapMenuItem
*menu_item
;
1676 g_return_if_fail (container
!= NULL
);
1677 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (container
));
1678 g_return_if_fail (callback
!= NULL
);
1680 menu_item
= GTK_PIXMAP_MENU_ITEM (container
);
1682 if (menu_item
->pixmap
)
1683 (* callback
) (menu_item
->pixmap
, callback_data
);
1685 GTK_CONTAINER_CLASS(parent_class
)->forall(container
,include_internals
,
1686 callback
,callback_data
);
1690 gtk_pixmap_menu_item_size_request (GtkWidget
*widget
,
1691 GtkRequisition
*requisition
)
1693 GtkPixmapMenuItem
*menu_item
;
1694 GtkRequisition req
= {0, 0};
1696 g_return_if_fail (widget
!= NULL
);
1697 g_return_if_fail (GTK_IS_MENU_ITEM (widget
));
1698 g_return_if_fail (requisition
!= NULL
);
1700 GTK_WIDGET_CLASS(parent_class
)->size_request(widget
,requisition
);
1702 menu_item
= GTK_PIXMAP_MENU_ITEM (widget
);
1704 if (menu_item
->pixmap
)
1705 gtk_widget_size_request(menu_item
->pixmap
, &req
);
1707 requisition
->height
= MAX(req
.height
+ GTK_CONTAINER(widget
)->border_width
+ BORDER_SPACING
, (unsigned int) requisition
->height
);
1708 requisition
->width
+= (req
.width
+ GTK_CONTAINER(widget
)->border_width
+ BORDER_SPACING
);
1712 gtk_pixmap_menu_item_remove (GtkContainer
*container
,
1716 gboolean widget_was_visible
;
1718 g_return_if_fail (container
!= NULL
);
1719 g_return_if_fail (GTK_IS_PIXMAP_MENU_ITEM (container
));
1720 g_return_if_fail (child
!= NULL
);
1721 g_return_if_fail (GTK_IS_WIDGET (child
));
1723 bin
= GTK_BIN (container
);
1724 g_return_if_fail ((bin
->child
== child
||
1725 (GTK_PIXMAP_MENU_ITEM(container
)->pixmap
== child
)));
1727 widget_was_visible
= GTK_WIDGET_VISIBLE (child
);
1729 gtk_widget_unparent (child
);
1730 if (bin
->child
== child
)
1733 GTK_PIXMAP_MENU_ITEM(container
)->pixmap
= NULL
;
1734 changed_have_pixmap_status(GTK_PIXMAP_MENU_ITEM(container
));
1737 if (widget_was_visible
)
1738 gtk_widget_queue_resize (GTK_WIDGET (container
));
1742 /* important to only call this if there was actually a _change_ in pixmap == NULL */
1744 changed_have_pixmap_status (GtkPixmapMenuItem
*menu_item
)
1746 if (menu_item
->pixmap
!= NULL
) {
1747 GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item
)->have_pixmap_count
+= 1;
1749 if (GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item
)->have_pixmap_count
== 1) {
1750 /* Install pixmap toggle size */
1751 GTK_MENU_ITEM_GET_CLASS(menu_item
)->toggle_size
= MAX(GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item
)->orig_toggle_size
, PMAP_WIDTH
);
1754 GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item
)->have_pixmap_count
-= 1;
1756 if (GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item
)->have_pixmap_count
== 0) {
1757 /* Install normal toggle size */
1758 GTK_MENU_ITEM_GET_CLASS(menu_item
)->toggle_size
= GTK_PIXMAP_MENU_ITEM_GET_CLASS(menu_item
)->orig_toggle_size
;
1762 /* Note that we actually need to do this for _all_ GtkPixmapMenuItem
1763 whenever the klass->toggle_size changes; but by doing it anytime
1764 this function is called, we get the same effect, just because of
1765 how the preferences option to show pixmaps works. Bogus, broken.
1767 if (GTK_WIDGET_VISIBLE(GTK_WIDGET(menu_item
)))
1768 gtk_widget_queue_resize(GTK_WIDGET(menu_item
));
1773 #endif // !__WXGTK20__