1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenuItem implementation
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
13 // headers & declarations
14 // ============================================================================
16 #include "wx/wxprec.h"
20 #include "wx/menuitem.h"
22 #include "wx/mac/uma.h"
23 // ============================================================================
25 // ============================================================================
27 // ----------------------------------------------------------------------------
28 // dynamic classes implementation
29 // ----------------------------------------------------------------------------
31 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
, wxObject
)
33 // ----------------------------------------------------------------------------
35 // ----------------------------------------------------------------------------
41 wxMenuItem::wxMenuItem(wxMenu
*pParentMenu
,
44 const wxString
& strHelp
,
47 :wxMenuItemBase(pParentMenu
, id
, text
, strHelp
, kind
, pSubMenu
)
49 wxASSERT_MSG( id
!= 0 || pSubMenu
!= NULL
, wxT("A MenuItem ID of Zero does not work under Mac") ) ;
51 // In other languages there is no difference in naming the Exit/Quit menu item between MacOS and Windows guidelines
52 // therefore these item must not be translated
53 if ( wxStripMenuCodes(m_text
).Upper() == wxT("EXIT") )
55 m_text
=wxT("Quit\tCtrl+Q") ;
58 m_radioGroup
.start
= -1;
59 m_isRadioGroupStart
= false;
62 wxMenuItem::~wxMenuItem()
69 void wxMenuItem::SetBitmap(const wxBitmap
& bitmap
)
75 void wxMenuItem::UpdateItemBitmap()
80 MenuHandle mhandle
= MAC_WXHMENU(m_parentMenu
->GetHMenu()) ;
81 MenuItemIndex index
= m_parentMenu
->MacGetIndexFromItem( this ) ;
82 if( mhandle
== NULL
|| index
== 0)
88 ControlButtonContentInfo info
;
89 wxMacCreateBitmapButton( &info
, m_bitmap
) ;
90 if ( info
.contentType
!= kControlNoContent
)
92 if ( info
.contentType
== kControlContentIconRef
)
93 SetMenuItemIconHandle( mhandle
, index
,
94 kMenuIconRefType
, (Handle
) info
.u
.iconRef
) ;
96 wxMacReleaseBitmapButton( &info
) ;
101 void wxMenuItem::UpdateItemStatus()
107 if ( UMAGetSystemVersion() >= 0x1000 && GetId() == wxApp::s_macPreferencesMenuItemId
)
110 DisableMenuCommand( NULL
, kHICommandPreferences
) ;
112 EnableMenuCommand( NULL
, kHICommandPreferences
) ;
114 if ( UMAGetSystemVersion() >= 0x1000 && GetId() == wxApp::s_macExitMenuItemId
)
117 DisableMenuCommand( NULL
, kHICommandQuit
) ;
119 EnableMenuCommand( NULL
, kHICommandQuit
) ;
123 MenuHandle mhandle
= MAC_WXHMENU(m_parentMenu
->GetHMenu()) ;
124 MenuItemIndex index
= m_parentMenu
->MacGetIndexFromItem( this ) ;
125 if( mhandle
== NULL
|| index
== 0)
128 UMAEnableMenuItem( mhandle
, index
, m_isEnabled
) ;
129 if ( IsCheckable() && IsChecked() )
130 ::SetItemMark( mhandle
, index
, 0x12 ) ; // checkmark
132 ::SetItemMark( mhandle
, index
, 0 ) ; // no mark
134 UMASetMenuItemText( mhandle
, index
, m_text
, wxFont::GetDefaultEncoding() ) ;
135 wxAcceleratorEntry
*entry
= wxGetAccelFromString( m_text
) ;
136 UMASetMenuItemShortcut( mhandle
, index
, entry
) ;
141 void wxMenuItem::UpdateItemText()
146 MenuHandle mhandle
= MAC_WXHMENU(m_parentMenu
->GetHMenu()) ;
147 MenuItemIndex index
= m_parentMenu
->MacGetIndexFromItem( this ) ;
148 if( mhandle
== NULL
|| index
== 0)
151 UMASetMenuItemText( mhandle
, index
, m_text
, wxFont::GetDefaultEncoding() ) ;
152 wxAcceleratorEntry
*entry
= wxGetAccelFromString( m_text
) ;
153 UMASetMenuItemShortcut( mhandle
, index
, entry
) ;
158 void wxMenuItem::Enable(bool bDoEnable
)
160 if (( m_isEnabled
!= bDoEnable
162 // avoid changing menuitem state when menu is disabled
163 // eg. BeginAppModalStateForWindow() will disable menus and ignore this change
164 // which in turn causes m_isEnabled to become out of sync with real menuitem state
165 && !(m_parentMenu
&& !IsMenuItemEnabled(MAC_WXHMENU(m_parentMenu
->GetHMenu()), 0)) )
166 // always update builtin menuitems
167 || ( GetId() == wxApp::s_macPreferencesMenuItemId
168 || GetId() == wxApp::s_macExitMenuItemId
169 || GetId() == wxApp::s_macAboutMenuItemId
173 wxMenuItemBase::Enable( bDoEnable
) ;
177 void wxMenuItem::UncheckRadio()
181 wxMenuItemBase::Check( false ) ;
186 void wxMenuItem::Check(bool bDoCheck
)
188 wxCHECK_RET( IsCheckable(), wxT("only checkable items may be checked") );
190 if ( m_isChecked
!= bDoCheck
)
192 if ( GetKind() == wxITEM_RADIO
)
196 wxMenuItemBase::Check( bDoCheck
) ;
199 // get the index of this item in the menu
200 const wxMenuItemList
& items
= m_parentMenu
->GetMenuItems();
201 int pos
= items
.IndexOf(this);
202 wxCHECK_RET( pos
!= wxNOT_FOUND
,
203 _T("menuitem not found in the menu items list?") );
205 // get the radio group range
209 if ( m_isRadioGroupStart
)
211 // we already have all information we need
213 end
= m_radioGroup
.end
;
215 else // next radio group item
217 // get the radio group end from the start item
218 start
= m_radioGroup
.start
;
219 end
= items
.Item(start
)->GetData()->m_radioGroup
.end
;
222 // also uncheck all the other items in this radio group
223 wxMenuItemList::compatibility_iterator node
= items
.Item(start
);
224 for ( int n
= start
; n
<= end
&& node
; n
++ )
228 ((wxMenuItem
*)node
->GetData())->UncheckRadio();
230 node
= node
->GetNext();
236 wxMenuItemBase::Check( bDoCheck
) ;
242 void wxMenuItem::SetText(const wxString
& text
)
244 // don't do anything if label didn't change
245 if ( m_text
== text
)
248 wxMenuItemBase::SetText(text
);
256 void wxMenuItem::SetAsRadioGroupStart()
258 m_isRadioGroupStart
= true;
261 void wxMenuItem::SetRadioGroupStart(int start
)
263 wxASSERT_MSG( !m_isRadioGroupStart
,
264 _T("should only be called for the next radio items") );
266 m_radioGroup
.start
= start
;
269 void wxMenuItem::SetRadioGroupEnd(int end
)
271 wxASSERT_MSG( m_isRadioGroupStart
,
272 _T("should only be called for the first radio item") );
274 m_radioGroup
.end
= end
;
277 // ----------------------------------------------------------------------------
279 // ----------------------------------------------------------------------------
282 wxString
wxMenuItemBase::GetLabelFromText(const wxString
& text
)
284 return wxStripMenuCodes(text
);
287 wxMenuItem
*wxMenuItemBase::New(wxMenu
*parentMenu
,
289 const wxString
& name
,
290 const wxString
& help
,
294 return new wxMenuItem(parentMenu
, id
, name
, help
, kind
, subMenu
);