1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/menuitem.h
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/bitmap.h"
22 // ----------------------------------------------------------------------------
23 // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour
24 // ----------------------------------------------------------------------------
26 class WXDLLIMPEXP_FWD_CORE wxMenuItemImpl
;
28 class WXDLLIMPEXP_CORE wxMenuItem
: public wxMenuItemBase
32 wxMenuItem(wxMenu
*parentMenu
= NULL
,
33 int id
= wxID_SEPARATOR
,
34 const wxString
& name
= wxEmptyString
,
35 const wxString
& help
= wxEmptyString
,
36 wxItemKind kind
= wxITEM_NORMAL
,
37 wxMenu
*subMenu
= NULL
);
38 virtual ~wxMenuItem();
40 // override base class virtuals
41 virtual void SetItemLabel(const wxString
& strName
);
43 virtual void Enable(bool bDoEnable
= true);
44 virtual void Check(bool bDoCheck
= true);
46 virtual void SetBitmap(const wxBitmap
& bitmap
) ;
47 virtual const wxBitmap
& GetBitmap() const { return m_bitmap
; }
50 // Implementation only from now on.
52 // update the os specific representation
53 void UpdateItemBitmap() ;
54 void UpdateItemText() ;
55 void UpdateItemStatus() ;
57 // mark item as belonging to the given radio group
58 void SetAsRadioGroupStart(bool start
= true);
59 void SetRadioGroupStart(int start
);
60 void SetRadioGroupEnd(int end
);
62 // return true if this is the starting item of a radio group
63 bool IsRadioGroupStart() const;
65 // get the start of the radio group this item belongs to: should not be
66 // called for the starting radio group item itself because it doesn't have
68 int GetRadioGroupStart() const;
70 // get the end of the radio group this item belongs to: should be only
71 // called for the starting radio group item, i.e. if IsRadioGroupStart() is
73 int GetRadioGroupEnd() const;
75 wxMenuItemImpl
* GetPeer() { return m_peer
; }
79 // the positions of the first and last items of the radio group this item
80 // belongs to or -1: start is the radio group start and is valid for all
81 // but first radio group items (m_isRadioGroupStart == FALSE), end is valid
82 // only for the first one
89 // does this item start a radio group?
90 bool m_isRadioGroupStart
;
92 wxBitmap m_bitmap
; // Bitmap for menuitem, if any
94 wxMenuItemImpl
* m_peer
;
96 DECLARE_DYNAMIC_CLASS(wxMenuItem
)