1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenuItem class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
20 #include "wx/ownerdrw.h"
21 #include "wx/bitmap.h"
26 // ----------------------------------------------------------------------------
27 // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
28 // ----------------------------------------------------------------------------
30 class WXDLLIMPEXP_CORE wxMenuItem
: public wxMenuItemBase
37 wxMenuItem(wxMenu
*parentMenu
= NULL
,
38 int id
= wxID_SEPARATOR
,
39 const wxString
& name
= wxEmptyString
,
40 const wxString
& help
= wxEmptyString
,
41 wxItemKind kind
= wxITEM_NORMAL
,
42 wxMenu
*subMenu
= NULL
);
43 virtual ~wxMenuItem();
45 // override base class virtuals
46 virtual void SetItemLabel(const wxString
& strName
);
48 virtual void Enable(bool bDoEnable
= true);
49 virtual void Check(bool bDoCheck
= true);
50 virtual bool IsChecked() const;
52 // unfortunately needed to resolve ambiguity between
53 // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable()
54 bool IsCheckable() const { return wxMenuItemBase::IsCheckable(); }
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
58 // menu handle depending on what we are
60 // notice that it also returns the id as an unsigned int, as required by
62 WXWPARAM
GetMSWId() const;
64 // mark item as belonging to the given radio group
65 void SetAsRadioGroupStart();
66 void SetRadioGroupStart(int start
);
67 void SetRadioGroupEnd(int end
);
69 #if WXWIN_COMPATIBILITY_2_8
70 // compatibility only, don't use in new code
72 wxMenuItem(wxMenu
*parentMenu
,
77 wxMenu
*subMenu
= NULL
)
83 void SetBitmaps(const wxBitmap
& bmpChecked
,
84 const wxBitmap
& bmpUnchecked
= wxNullBitmap
)
86 m_bmpChecked
= bmpChecked
;
87 m_bmpUnchecked
= bmpUnchecked
;
91 void SetBitmap(const wxBitmap
& bmp
, bool bChecked
= true)
100 void SetDisabledBitmap(const wxBitmap
& bmpDisabled
)
102 m_bmpDisabled
= bmpDisabled
;
106 const wxBitmap
& GetBitmap(bool bChecked
= true) const
107 { return (bChecked
? m_bmpChecked
: m_bmpUnchecked
); }
109 const wxBitmap
& GetDisabledBitmap() const
110 { return m_bmpDisabled
; }
112 int MeasureAccelWidth() const;
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
);
120 virtual void GetFontToUse(wxFont
& font
) const;
121 virtual void GetColourToUse(wxODStatus stat
, wxColour
& colText
, wxColour
& colBack
) const;
124 // helper function for draw std menu check mark
125 void DrawStdCheckMark(WXHDC hdc
, const tagRECT
* rc
, wxODStatus stat
);
127 #endif // wxUSE_OWNER_DRAWN
130 // common part of all ctors
133 // the positions of the first and last items of the radio group this item
134 // belongs to or -1: start is the radio group start and is valid for all
135 // but first radio group items (m_isRadioGroupStart == false), end is valid
136 // only for the first one
143 // does this item start a radio group?
144 bool m_isRadioGroupStart
;
146 #if wxUSE_OWNER_DRAWN
148 wxBitmap m_bmpChecked
, // bitmap to put near the item
149 m_bmpUnchecked
, // (checked is used also for 'uncheckable' items)
151 #endif // wxUSE_OWNER_DRAWN
153 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMenuItem
)