]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/menuitem.h
Application of the most recent wxWebView patch, the only changes were so tab to space...
[wxWidgets.git] / include / wx / msw / menuitem.h
CommitLineData
23d1d521 1///////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/msw/menuitem.h
23d1d521
JS
3// Purpose: wxMenuItem class
4// Author: Vadim Zeitlin
c626a8b7 5// Modified by:
23d1d521
JS
6// Created: 11.11.97
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
65571936 9// Licence: wxWindows licence
23d1d521
JS
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _MENUITEM_H
13#define _MENUITEM_H
14
23d1d521
JS
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
47d67540 19#if wxUSE_OWNER_DRAWN
98fbab9e
VZ
20 #include "wx/ownerdrw.h"
21 #include "wx/bitmap.h"
9d043a92
VZ
22
23 struct tagRECT;
23d1d521
JS
24#endif
25
23d1d521
JS
26// ----------------------------------------------------------------------------
27// wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
28// ----------------------------------------------------------------------------
974e8d94 29
53a2db12 30class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
47d67540 31#if wxUSE_OWNER_DRAWN
974e8d94 32 , public wxOwnerDrawn
23d1d521
JS
33#endif
34{
23d1d521 35public:
974e8d94 36 // ctor & dtor
d3b9f782 37 wxMenuItem(wxMenu *parentMenu = NULL,
974e8d94
VZ
38 int id = wxID_SEPARATOR,
39 const wxString& name = wxEmptyString,
40 const wxString& help = wxEmptyString,
546bfbea 41 wxItemKind kind = wxITEM_NORMAL,
d3b9f782 42 wxMenu *subMenu = NULL);
974e8d94
VZ
43 virtual ~wxMenuItem();
44
45 // override base class virtuals
52af3158 46 virtual void SetItemLabel(const wxString& strName);
974e8d94 47
598ddd96
WS
48 virtual void Enable(bool bDoEnable = true);
49 virtual void Check(bool bDoCheck = true);
a8cfd0cb 50 virtual bool IsChecked() const;
974e8d94
VZ
51
52 // unfortunately needed to resolve ambiguity between
53 // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable()
54 bool IsCheckable() const { return wxMenuItemBase::IsCheckable(); }
55
56 // the id for a popup menu is really its menu handle (as required by
57 // ::AppendMenu() API), so this function will return either the id or the
660e7fda
VZ
58 // menu handle depending on what we are
59 //
60 // notice that it also returns the id as an unsigned int, as required by
61 // Win32 API
dca0f651 62 WXWPARAM GetMSWId() const;
974e8d94 63
0472ece7 64 // mark item as belonging to the given radio group
be15b995
VZ
65 void SetAsRadioGroupStart();
66 void SetRadioGroupStart(int start);
67 void SetRadioGroupEnd(int end);
0472ece7 68
efebabb7 69#if WXWIN_COMPATIBILITY_2_8
2368dcda 70 // compatibility only, don't use in new code
efebabb7 71 wxDEPRECATED(
2368dcda
VZ
72 wxMenuItem(wxMenu *parentMenu,
73 int id,
74 const wxString& text,
75 const wxString& help,
76 bool isCheckable,
efebabb7
PC
77 wxMenu *subMenu = NULL)
78 );
79#endif
2368dcda 80
98fbab9e
VZ
81#if wxUSE_OWNER_DRAWN
82
83 void SetBitmaps(const wxBitmap& bmpChecked,
84 const wxBitmap& bmpUnchecked = wxNullBitmap)
85 {
86 m_bmpChecked = bmpChecked;
87 m_bmpUnchecked = bmpUnchecked;
88 SetOwnerDrawn(true);
89 }
90
91 void SetBitmap(const wxBitmap& bmp, bool bChecked = true)
92 {
93 if ( bChecked )
94 m_bmpChecked = bmp;
95 else
96 m_bmpUnchecked = bmp;
97 SetOwnerDrawn(true);
98 }
99
100 void SetDisabledBitmap(const wxBitmap& bmpDisabled)
101 {
102 m_bmpDisabled = bmpDisabled;
103 SetOwnerDrawn(true);
104 }
105
106 const wxBitmap& GetBitmap(bool bChecked = true) const
107 { return (bChecked ? m_bmpChecked : m_bmpUnchecked); }
108
109 const wxBitmap& GetDisabledBitmap() const
110 { return m_bmpDisabled; }
111
9c32ed26 112 int MeasureAccelWidth() const;
98fbab9e
VZ
113
114 // override wxOwnerDrawn base class virtuals
115 virtual wxString GetName() const;
116 virtual bool OnMeasureItem(size_t *pwidth, size_t *pheight);
117 virtual bool OnDrawItem(wxDC& dc, const wxRect& rc, wxODAction act, wxODStatus stat);
118
119protected:
120 virtual void GetFontToUse(wxFont& font) const;
aa4919ed 121 virtual void GetColourToUse(wxODStatus stat, wxColour& colText, wxColour& colBack) const;
98fbab9e 122
ee009313
VZ
123private:
124 // helper function for draw std menu check mark
9d043a92 125 void DrawStdCheckMark(WXHDC hdc, const tagRECT* rc, wxODStatus stat);
ee009313 126
98fbab9e
VZ
127#endif // wxUSE_OWNER_DRAWN
128
23d1d521 129private:
2368dcda
VZ
130 // common part of all ctors
131 void Init();
132
0472ece7 133 // the positions of the first and last items of the radio group this item
be15b995 134 // belongs to or -1: start is the radio group start and is valid for all
598ddd96 135 // but first radio group items (m_isRadioGroupStart == false), end is valid
be15b995
VZ
136 // only for the first one
137 union
138 {
139 int start;
140 int end;
141 } m_radioGroup;
142
143 // does this item start a radio group?
144 bool m_isRadioGroupStart;
0472ece7 145
98fbab9e
VZ
146#if wxUSE_OWNER_DRAWN
147 // item bitmaps
148 wxBitmap m_bmpChecked, // bitmap to put near the item
149 m_bmpUnchecked, // (checked is used also for 'uncheckable' items)
150 m_bmpDisabled;
98fbab9e
VZ
151#endif // wxUSE_OWNER_DRAWN
152
fc7a2a60 153 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMenuItem)
23d1d521
JS
154};
155
156#endif //_MENUITEM_H