]> git.saurik.com Git - wxWidgets.git/blame - src/msw/menuitem.cpp
Applied patch #421073 (making setup options work)
[wxWidgets.git] / src / msw / menuitem.cpp
CommitLineData
2bda0e17
KB
1///////////////////////////////////////////////////////////////////////////////
2// Name: menuitem.cpp
3// Purpose: wxMenuItem implementation
4// Author: Vadim Zeitlin
c2dcfdef 5// Modified by:
2bda0e17
KB
6// Created: 11.11.97
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9// Licence: wxWindows license
10///////////////////////////////////////////////////////////////////////////////
11
c2dcfdef
VZ
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
a3b46648 20#ifdef __GNUG__
c2dcfdef 21 #pragma implementation "menuitem.h"
a3b46648 22#endif
2bda0e17
KB
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
c2dcfdef 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
c2dcfdef
VZ
32 #include "wx/font.h"
33 #include "wx/bitmap.h"
34 #include "wx/settings.h"
35 #include "wx/font.h"
4e938f5b 36 #include "wx/window.h"
0c589ad0
BM
37 #include "wx/accel.h"
38 #include "wx/menu.h"
39 #include "wx/string.h"
2bda0e17
KB
40#endif
41
2bda0e17 42#include "wx/menuitem.h"
6776a0b2 43#include "wx/log.h"
2bda0e17 44
717a57c2
VZ
45#if wxUSE_ACCEL
46 #include "wx/accel.h"
47#endif // wxUSE_ACCEL
48
42e69d6b 49#include "wx/msw/private.h"
ce3ed50d 50
c2dcfdef 51// ---------------------------------------------------------------------------
974e8d94 52// macro
c2dcfdef
VZ
53// ---------------------------------------------------------------------------
54
974e8d94 55// hide the ugly cast
c2dcfdef
VZ
56#define GetHMenuOf(menu) ((HMENU)menu->GetHMenu())
57
974e8d94
VZ
58// conditional compilation
59#if wxUSE_OWNER_DRAWN
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
64
2bda0e17
KB
65// ============================================================================
66// implementation
67// ============================================================================
68
69// ----------------------------------------------------------------------------
70// dynamic classes implementation
71// ----------------------------------------------------------------------------
72
974e8d94
VZ
73 #if wxUSE_OWNER_DRAWN
74 IMPLEMENT_DYNAMIC_CLASS2(wxMenuItem, wxMenuItemBase, wxOwnerDrawn)
75 #else //!USE_OWNER_DRAWN
76 IMPLEMENT_DYNAMIC_CLASS(wxMenuItem, wxMenuItemBase)
77 #endif //USE_OWNER_DRAWN
2bda0e17
KB
78
79// ----------------------------------------------------------------------------
80// wxMenuItem
81// ----------------------------------------------------------------------------
82
83// ctor & dtor
84// -----------
85
974e8d94
VZ
86wxMenuItem::wxMenuItem(wxMenu *pParentMenu,
87 int id,
88 const wxString& text,
89 const wxString& strHelp,
2bda0e17 90 bool bCheckable,
90002c49 91 wxMenu *pSubMenu)
47d67540 92#if wxUSE_OWNER_DRAWN
90002c49 93 : wxOwnerDrawn(text, bCheckable)
974e8d94 94#endif // owner drawn
2bda0e17 95{
223d09f6 96 wxASSERT_MSG( pParentMenu != NULL, wxT("a menu item should have a parent") );
2bda0e17 97
47d67540 98#if wxUSE_OWNER_DRAWN
2bda0e17
KB
99 // set default menu colors
100 #define SYS_COLOR(c) (wxSystemSettings::GetSystemColour(wxSYS_COLOUR_##c))
c2dcfdef 101
2bda0e17
KB
102 SetTextColour(SYS_COLOR(MENUTEXT));
103 SetBackgroundColour(SYS_COLOR(MENU));
104
105 // we don't want normal items be owner-drawn
106 ResetOwnerDrawn();
107
108 #undef SYS_COLOR
974e8d94
VZ
109#endif // wxUSE_OWNER_DRAWN
110
111 m_parentMenu = pParentMenu;
112 m_subMenu = pSubMenu;
113 m_isEnabled = TRUE;
114 m_isChecked = FALSE;
115 m_id = id;
116 m_text = text;
117 m_isCheckable = bCheckable;
118 m_help = strHelp;
2bda0e17
KB
119}
120
c2dcfdef 121wxMenuItem::~wxMenuItem()
2bda0e17
KB
122{
123}
124
125// misc
126// ----
127
c2dcfdef
VZ
128// return the id for calling Win32 API functions
129int wxMenuItem::GetRealId() const
130{
974e8d94 131 return m_subMenu ? (int)m_subMenu->GetHMenu() : GetId();
c2dcfdef
VZ
132}
133
3dfac970
VZ
134// get item state
135// --------------
136
a8cfd0cb 137bool wxMenuItem::IsChecked() const
3dfac970 138{
a8cfd0cb 139 int flag = ::GetMenuState(GetHMenuOf(m_parentMenu), GetId(), MF_BYCOMMAND);
3dfac970 140
4aee367e 141 return (flag & MF_CHECKED) != 0;
3dfac970
VZ
142}
143
3b59cdbf
VZ
144/* static */
145wxString wxMenuItemBase::GetLabelFromText(const wxString& text)
717a57c2 146{
4a3563c5 147 return wxStripMenuCodes(text);
717a57c2
VZ
148}
149
150// accelerators
151// ------------
152
153#if wxUSE_ACCEL
154
155wxAcceleratorEntry *wxMenuItem::GetAccel() const
156{
157 return wxGetAccelFromString(GetText());
158}
159
160#endif // wxUSE_ACCEL
161
2bda0e17
KB
162// change item state
163// -----------------
164
717a57c2 165void wxMenuItem::Enable(bool enable)
2bda0e17 166{
717a57c2
VZ
167 if ( m_isEnabled == enable )
168 return;
169
170 long rc = EnableMenuItem(GetHMenuOf(m_parentMenu),
171 GetRealId(),
172 MF_BYCOMMAND |
173 (enable ? MF_ENABLED : MF_GRAYED));
c2dcfdef 174
717a57c2 175 if ( rc == -1 ) {
f6bcfd97 176 wxLogLastError(wxT("EnableMenuItem"));
c2dcfdef 177 }
717a57c2
VZ
178
179 wxMenuItemBase::Enable(enable);
2bda0e17
KB
180}
181
717a57c2 182void wxMenuItem::Check(bool check)
2bda0e17 183{
974e8d94 184 wxCHECK_RET( m_isCheckable, wxT("only checkable items may be checked") );
c2dcfdef 185
717a57c2
VZ
186 if ( m_isChecked == check )
187 return;
c2dcfdef 188
717a57c2
VZ
189 long rc = CheckMenuItem(GetHMenuOf(m_parentMenu),
190 GetRealId(),
191 MF_BYCOMMAND |
192 (check ? MF_CHECKED : MF_UNCHECKED));
c2dcfdef 193
717a57c2 194 if ( rc == -1 ) {
f6bcfd97 195 wxLogLastError(wxT("CheckMenuItem"));
c2dcfdef 196 }
717a57c2
VZ
197
198 wxMenuItemBase::Check(check);
c2dcfdef
VZ
199}
200
974e8d94 201void wxMenuItem::SetText(const wxString& text)
c2dcfdef
VZ
202{
203 // don't do anything if label didn't change
974e8d94 204 if ( m_text == text )
c2dcfdef
VZ
205 return;
206
974e8d94
VZ
207 wxMenuItemBase::SetText(text);
208 OWNER_DRAWN_ONLY( wxOwnerDrawn::SetName(text) );
c2dcfdef 209
974e8d94 210 HMENU hMenu = GetHMenuOf(m_parentMenu);
717a57c2
VZ
211 wxCHECK_RET( hMenu, wxT("menuitem without menu") );
212
213#if wxUSE_ACCEL
214 m_parentMenu->UpdateAccel(this);
215#endif // wxUSE_ACCEL
2bda0e17 216
c2dcfdef
VZ
217 UINT id = GetRealId();
218 UINT flagsOld = ::GetMenuState(hMenu, id, MF_BYCOMMAND);
219 if ( flagsOld == 0xFFFFFFFF )
220 {
f6bcfd97 221 wxLogLastError(wxT("GetMenuState"));
c2dcfdef
VZ
222 }
223 else
224 {
225 if ( IsSubMenu() )
226 {
227 // high byte contains the number of items in a submenu for submenus
228 flagsOld &= 0xFF;
229 flagsOld |= MF_POPUP;
230 }
231
837e5743 232 LPCTSTR data;
974e8d94 233
c2dcfdef
VZ
234#if wxUSE_OWNER_DRAWN
235 if ( IsOwnerDrawn() )
236 {
237 flagsOld |= MF_OWNERDRAW;
837e5743 238 data = (LPCTSTR)this;
c2dcfdef
VZ
239 }
240 else
241#endif //owner drawn
242 {
243 flagsOld |= MF_STRING;
f5166ed4 244 data = (wxChar*) text.c_str();
c2dcfdef
VZ
245 }
246
247 if ( ::ModifyMenu(hMenu, id,
248 MF_BYCOMMAND | flagsOld,
a17e237f 249 id, data) == (int)0xFFFFFFFF )
c2dcfdef 250 {
223d09f6 251 wxLogLastError(wxT("ModifyMenu"));
c2dcfdef
VZ
252 }
253 }
254}
2bda0e17 255
974e8d94
VZ
256void wxMenuItem::SetCheckable(bool checkable)
257{
258 wxMenuItemBase::SetCheckable(checkable);
259 OWNER_DRAWN_ONLY( wxOwnerDrawn::SetCheckable(checkable) );
260}
261
262// ----------------------------------------------------------------------------
263// wxMenuItemBase
264// ----------------------------------------------------------------------------
265
266wxMenuItem *wxMenuItemBase::New(wxMenu *parentMenu,
267 int id,
268 const wxString& name,
269 const wxString& help,
270 bool isCheckable,
271 wxMenu *subMenu)
272{
273 return new wxMenuItem(parentMenu, id, name, help, isCheckable, subMenu);
274}