1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/menuitem.cpp
3 // Purpose: wxMenuItem implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
33 #include "wx/bitmap.h"
34 #include "wx/settings.h"
36 #include "wx/window.h"
38 #include "wx/string.h"
42 #include "wx/menuitem.h"
48 #include "wx/msw/private.h"
51 // Implemented in menu.cpp
52 UINT
GetMenuState(HMENU hMenu
, UINT id
, UINT flags
) ;
55 // ---------------------------------------------------------------------------
57 // ---------------------------------------------------------------------------
60 #define GetHMenuOf(menu) ((HMENU)menu->GetHMenu())
62 // conditional compilation
64 #define OWNER_DRAWN_ONLY( code ) if ( IsOwnerDrawn() ) code
65 #else // !wxUSE_OWNER_DRAWN
66 #define OWNER_DRAWN_ONLY( code )
67 #endif // wxUSE_OWNER_DRAWN/!wxUSE_OWNER_DRAWN
69 // ============================================================================
71 // ============================================================================
73 // ----------------------------------------------------------------------------
74 // dynamic classes implementation
75 // ----------------------------------------------------------------------------
77 #if wxUSE_EXTENDED_RTTI
79 bool wxMenuItemStreamingCallback( const wxObject
*object
, wxWriter
* , wxPersister
* , wxxVariantArray
& )
81 const wxMenuItem
* mitem
= dynamic_cast<const wxMenuItem
*>(object
) ;
82 if ( mitem
->GetMenu() && !mitem
->GetMenu()->GetTitle().IsEmpty() )
84 // we don't stream out the first two items for menus with a title, they will be reconstructed
85 if ( mitem
->GetMenu()->FindItemByPosition(0) == mitem
|| mitem
->GetMenu()->FindItemByPosition(1) == mitem
)
91 wxBEGIN_ENUM( wxItemKind
)
92 wxENUM_MEMBER( wxITEM_SEPARATOR
)
93 wxENUM_MEMBER( wxITEM_NORMAL
)
94 wxENUM_MEMBER( wxITEM_CHECK
)
95 wxENUM_MEMBER( wxITEM_RADIO
)
96 wxEND_ENUM( wxItemKind
)
98 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxMenuItem
, wxObject
,"wx/menuitem.h",wxMenuItemStreamingCallback
)
100 wxBEGIN_PROPERTIES_TABLE(wxMenuItem
)
101 wxPROPERTY( Parent
,wxMenu
*, SetMenu
, GetMenu
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
102 wxPROPERTY( Id
,int, SetId
, GetId
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
103 wxPROPERTY( Text
, wxString
, SetText
, GetText
, wxString(), 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
104 wxPROPERTY( Help
, wxString
, SetHelp
, GetHelp
, wxString(), 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
105 wxREADONLY_PROPERTY( Kind
, wxItemKind
, GetKind
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
106 wxPROPERTY( SubMenu
,wxMenu
*, SetSubMenu
, GetSubMenu
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
107 wxPROPERTY( Enabled
, bool , Enable
, IsEnabled
, wxxVariant((bool)true) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
108 wxPROPERTY( Checked
, bool , Check
, IsChecked
, wxxVariant((bool)false) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
109 wxPROPERTY( Checkable
, bool , SetCheckable
, IsCheckable
, wxxVariant((bool)false) , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
110 wxEND_PROPERTIES_TABLE()
112 wxBEGIN_HANDLERS_TABLE(wxMenuItem
)
113 wxEND_HANDLERS_TABLE()
115 wxDIRECT_CONSTRUCTOR_6( wxMenuItem
, wxMenu
* , Parent
, int , Id
, wxString
, Text
, wxString
, Help
, wxItemKind
, Kind
, wxMenu
* , SubMenu
)
117 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
, wxObject
)
120 // ----------------------------------------------------------------------------
122 // ----------------------------------------------------------------------------
127 wxMenuItem::wxMenuItem(wxMenu
*pParentMenu
,
129 const wxString
& text
,
130 const wxString
& strHelp
,
133 : wxMenuItemBase(pParentMenu
, id
, text
, strHelp
, kind
, pSubMenu
)
134 #if wxUSE_OWNER_DRAWN
135 , wxOwnerDrawn(text
, kind
== wxITEM_CHECK
, true)
136 #endif // owner drawn
141 wxMenuItem::wxMenuItem(wxMenu
*parentMenu
,
143 const wxString
& text
,
144 const wxString
& help
,
147 : wxMenuItemBase(parentMenu
, id
, text
, help
,
148 isCheckable
? wxITEM_CHECK
: wxITEM_NORMAL
, subMenu
)
149 #if wxUSE_OWNER_DRAWN
150 , wxOwnerDrawn(text
, isCheckable
, true)
151 #endif // owner drawn
156 void wxMenuItem::Init()
158 m_radioGroup
.start
= -1;
159 m_isRadioGroupStart
= false;
161 #if wxUSE_OWNER_DRAWN
163 // when the color is not valid, wxOwnerDraw takes the default ones.
164 // If we set the colors here and they are changed by the user during
165 // the execution, then the colors are not updated until the application
166 // is restarted and our menus look bad
167 SetTextColour(wxNullColour
);
168 SetBackgroundColour(wxNullColour
);
170 // setting default colors switched ownerdraw on: switch it off again
173 // switch ownerdraw back on if using a non default margin
174 if ( GetId() != wxID_SEPARATOR
)
175 SetMarginWidth(GetMarginWidth());
177 // tell the owner drawing code to show the accel string as well
178 SetAccelString(m_text
.AfterFirst(_T('\t')));
179 #endif // wxUSE_OWNER_DRAWN
182 wxMenuItem::~wxMenuItem()
189 // return the id for calling Win32 API functions
190 int wxMenuItem::GetRealId() const
192 return m_subMenu
? (int)m_subMenu
->GetHMenu() : GetId();
198 bool wxMenuItem::IsChecked() const
200 // fix that RTTI is always getting the correct state (separators cannot be checked, but the call below
202 if ( GetId() == wxID_SEPARATOR
)
205 int flag
= ::GetMenuState(GetHMenuOf(m_parentMenu
), GetId(), MF_BYCOMMAND
);
207 return (flag
& MF_CHECKED
) != 0;
211 wxString
wxMenuItemBase::GetLabelFromText(const wxString
& text
)
213 return wxStripMenuCodes(text
);
219 void wxMenuItem::SetAsRadioGroupStart()
221 m_isRadioGroupStart
= true;
224 void wxMenuItem::SetRadioGroupStart(int start
)
226 wxASSERT_MSG( !m_isRadioGroupStart
,
227 _T("should only be called for the next radio items") );
229 m_radioGroup
.start
= start
;
232 void wxMenuItem::SetRadioGroupEnd(int end
)
234 wxASSERT_MSG( m_isRadioGroupStart
,
235 _T("should only be called for the first radio item") );
237 m_radioGroup
.end
= end
;
243 void wxMenuItem::Enable(bool enable
)
245 if ( m_isEnabled
== enable
)
248 long rc
= EnableMenuItem(GetHMenuOf(m_parentMenu
),
251 (enable
? MF_ENABLED
: MF_GRAYED
));
254 wxLogLastError(wxT("EnableMenuItem"));
257 wxMenuItemBase::Enable(enable
);
260 void wxMenuItem::Check(bool check
)
262 wxCHECK_RET( IsCheckable(), wxT("only checkable items may be checked") );
264 if ( m_isChecked
== check
)
267 int flags
= check
? MF_CHECKED
: MF_UNCHECKED
;
268 HMENU hmenu
= GetHMenuOf(m_parentMenu
);
270 if ( GetKind() == wxITEM_RADIO
)
272 // it doesn't make sense to uncheck a radio item - what would this do?
276 // get the index of this item in the menu
277 const wxMenuItemList
& items
= m_parentMenu
->GetMenuItems();
278 int pos
= items
.IndexOf(this);
279 wxCHECK_RET( pos
!= wxNOT_FOUND
,
280 _T("menuitem not found in the menu items list?") );
282 // get the radio group range
286 if ( m_isRadioGroupStart
)
288 // we already have all information we need
290 end
= m_radioGroup
.end
;
292 else // next radio group item
294 // get the radio group end from the start item
295 start
= m_radioGroup
.start
;
296 end
= items
.Item(start
)->GetData()->m_radioGroup
.end
;
300 // calling CheckMenuRadioItem() with such parameters hangs my system
301 // (NT4 SP6) and I suspect this could happen to the others as well - so
303 wxCHECK_RET( start
!= -1 && end
!= -1,
304 _T("invalid ::CheckMenuRadioItem() parameter(s)") );
306 if ( !::CheckMenuRadioItem(hmenu
,
307 start
, // the first radio group item
309 pos
, // the one to check
312 wxLogLastError(_T("CheckMenuRadioItem"));
316 // also uncheck all the other items in this radio group
317 wxMenuItemList::compatibility_iterator node
= items
.Item(start
);
318 for ( int n
= start
; n
<= end
&& node
; n
++ )
322 node
->GetData()->m_isChecked
= false;
325 node
= node
->GetNext();
330 if ( ::CheckMenuItem(hmenu
,
332 MF_BYCOMMAND
| flags
) == (DWORD
)-1 )
334 wxFAIL_MSG( _T("CheckMenuItem() failed, item not in the menu?") );
338 wxMenuItemBase::Check(check
);
341 void wxMenuItem::SetText(const wxString
& text
)
343 // don't do anything if label didn't change
344 if ( m_text
== text
)
347 wxMenuItemBase::SetText(text
);
348 OWNER_DRAWN_ONLY( wxOwnerDrawn::SetName(text
) );
349 #if wxUSE_OWNER_DRAWN
350 // tell the owner drawing code to to show the accel string as well
351 SetAccelString(text
.AfterFirst(_T('\t')));
354 HMENU hMenu
= GetHMenuOf(m_parentMenu
);
355 wxCHECK_RET( hMenu
, wxT("menuitem without menu") );
358 m_parentMenu
->UpdateAccel(this);
359 #endif // wxUSE_ACCEL
361 UINT id
= GetRealId();
362 UINT flagsOld
= ::GetMenuState(hMenu
, id
, MF_BYCOMMAND
);
363 if ( flagsOld
== 0xFFFFFFFF )
365 // It's not an error, it means that the menu item doesn't exist
366 //wxLogLastError(wxT("GetMenuState"));
372 // high byte contains the number of items in a submenu for submenus
374 flagsOld
|= MF_POPUP
;
379 #if wxUSE_OWNER_DRAWN
380 if ( IsOwnerDrawn() )
382 flagsOld
|= MF_OWNERDRAW
;
383 data
= (LPCTSTR
)this;
388 flagsOld
|= MF_STRING
;
389 data
= (wxChar
*) text
.c_str();
393 // FIXME: complete this, applying the old
395 // However, the WinCE doc for SetMenuItemInfo
396 // says that you can't use it to set the menu
397 // item state; only data, id and type.
400 info
.cbSize
= sizeof(info
);
401 info
.fMask
= MIIM_TYPE
;
402 info
.fType
= MFT_STRING
;
403 info
.cch
= text
.length();
404 info
.dwTypeData
= (LPTSTR
) data
;
405 if ( !::SetMenuItemInfo(hMenu
, id
, FALSE
, & info
) )
407 wxLogLastError(wxT("SetMenuItemInfo"));
410 if ( ::ModifyMenu(hMenu
, id
,
411 MF_BYCOMMAND
| flagsOld
,
412 id
, data
) == (int)0xFFFFFFFF )
414 wxLogLastError(wxT("ModifyMenu"));
420 void wxMenuItem::SetCheckable(bool checkable
)
422 wxMenuItemBase::SetCheckable(checkable
);
423 OWNER_DRAWN_ONLY( wxOwnerDrawn::SetCheckable(checkable
) );
426 // ----------------------------------------------------------------------------
428 // ----------------------------------------------------------------------------
430 wxMenuItem
*wxMenuItemBase::New(wxMenu
*parentMenu
,
432 const wxString
& name
,
433 const wxString
& help
,
437 return new wxMenuItem(parentMenu
, id
, name
, help
, kind
, subMenu
);
440 #endif // wxUSE_MENUS