]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/menuitem.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenuItem implementation
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
21 #pragma implementation "menuitem.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
33 #include "wx/bitmap.h"
34 #include "wx/settings.h"
36 #include "wx/window.h"
39 #include "wx/string.h"
42 #include "wx/menuitem.h"
49 #include "wx/msw/private.h"
51 // ---------------------------------------------------------------------------
53 // ---------------------------------------------------------------------------
56 #define GetHMenuOf(menu) ((HMENU)menu->GetHMenu())
58 // conditional compilation
60 #define OWNER_DRAWN_ONLY( code ) if ( IsOwnerDrawn() ) code
61 #else // !wxUSE_OWNER_DRAWN
62 #define OWNER_DRAWN_ONLY( code )
63 #endif // wxUSE_OWNER_DRAWN/!wxUSE_OWNER_DRAWN
65 // ============================================================================
67 // ============================================================================
69 // ----------------------------------------------------------------------------
70 // dynamic classes implementation
71 // ----------------------------------------------------------------------------
74 IMPLEMENT_DYNAMIC_CLASS2(wxMenuItem
, wxMenuItemBase
, wxOwnerDrawn
)
75 #else //!USE_OWNER_DRAWN
76 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem
, wxMenuItemBase
)
77 #endif //USE_OWNER_DRAWN
79 // ----------------------------------------------------------------------------
81 // ----------------------------------------------------------------------------
86 wxMenuItem::wxMenuItem(wxMenu
*pParentMenu
,
89 const wxString
& strHelp
,
93 : wxOwnerDrawn(text
, bCheckable
)
96 wxASSERT_MSG( pParentMenu
!= NULL
, wxT("a menu item should have a parent") );
99 // set default menu colors
100 #define SYS_COLOR(c) (wxSystemSettings::GetSystemColour(wxSYS_COLOUR_##c))
102 SetTextColour(SYS_COLOR(MENUTEXT
));
103 SetBackgroundColour(SYS_COLOR(MENU
));
105 // we don't want normal items be owner-drawn
109 #endif // wxUSE_OWNER_DRAWN
111 m_parentMenu
= pParentMenu
;
112 m_subMenu
= pSubMenu
;
117 m_isCheckable
= bCheckable
;
121 wxMenuItem::~wxMenuItem()
128 // return the id for calling Win32 API functions
129 int wxMenuItem::GetRealId() const
131 return m_subMenu
? (int)m_subMenu
->GetHMenu() : GetId();
137 bool wxMenuItem::IsChecked() const
139 int flag
= ::GetMenuState(GetHMenuOf(m_parentMenu
), GetId(), MF_BYCOMMAND
);
141 return (flag
& MF_CHECKED
) != 0;
145 wxString
wxMenuItemBase::GetLabelFromText(const wxString
& text
)
147 return wxStripMenuCodes(text
);
155 wxAcceleratorEntry
*wxMenuItem::GetAccel() const
157 return wxGetAccelFromString(GetText());
160 #endif // wxUSE_ACCEL
165 void wxMenuItem::Enable(bool enable
)
167 if ( m_isEnabled
== enable
)
170 long rc
= EnableMenuItem(GetHMenuOf(m_parentMenu
),
173 (enable
? MF_ENABLED
: MF_GRAYED
));
176 wxLogLastError("EnableMenuItem");
179 wxMenuItemBase::Enable(enable
);
182 void wxMenuItem::Check(bool check
)
184 wxCHECK_RET( m_isCheckable
, wxT("only checkable items may be checked") );
186 if ( m_isChecked
== check
)
189 long rc
= CheckMenuItem(GetHMenuOf(m_parentMenu
),
192 (check
? MF_CHECKED
: MF_UNCHECKED
));
195 wxLogLastError("CheckMenuItem");
198 wxMenuItemBase::Check(check
);
201 void wxMenuItem::SetText(const wxString
& text
)
203 // don't do anything if label didn't change
204 if ( m_text
== text
)
207 wxMenuItemBase::SetText(text
);
208 OWNER_DRAWN_ONLY( wxOwnerDrawn::SetName(text
) );
210 HMENU hMenu
= GetHMenuOf(m_parentMenu
);
211 wxCHECK_RET( hMenu
, wxT("menuitem without menu") );
214 m_parentMenu
->UpdateAccel(this);
215 #endif // wxUSE_ACCEL
217 UINT id
= GetRealId();
218 UINT flagsOld
= ::GetMenuState(hMenu
, id
, MF_BYCOMMAND
);
219 if ( flagsOld
== 0xFFFFFFFF )
221 wxLogLastError("GetMenuState");
227 // high byte contains the number of items in a submenu for submenus
229 flagsOld
|= MF_POPUP
;
234 #if wxUSE_OWNER_DRAWN
235 if ( IsOwnerDrawn() )
237 flagsOld
|= MF_OWNERDRAW
;
238 data
= (LPCTSTR
)this;
243 flagsOld
|= MF_STRING
;
244 data
= (wxChar
*) text
.c_str();
247 if ( ::ModifyMenu(hMenu
, id
,
248 MF_BYCOMMAND
| flagsOld
,
249 id
, data
) == (int)0xFFFFFFFF )
251 wxLogLastError(wxT("ModifyMenu"));
256 void wxMenuItem::SetCheckable(bool checkable
)
258 wxMenuItemBase::SetCheckable(checkable
);
259 OWNER_DRAWN_ONLY( wxOwnerDrawn::SetCheckable(checkable
) );
262 // ----------------------------------------------------------------------------
264 // ----------------------------------------------------------------------------
266 wxMenuItem
*wxMenuItemBase::New(wxMenu
*parentMenu
,
268 const wxString
& name
,
269 const wxString
& help
,
273 return new wxMenuItem(parentMenu
, id
, name
, help
, isCheckable
, subMenu
);