]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: menuitem.h | |
3 | // Purpose: wxMenuItem class | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
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 | ||
12 | #ifndef _MENUITEM_H | |
13 | #define _MENUITEM_H | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "menuitem.h" | |
17 | #endif | |
18 | ||
19 | // ---------------------------------------------------------------------------- | |
20 | // headers | |
21 | // ---------------------------------------------------------------------------- | |
22 | ||
23 | #include "wx/setup.h" | |
24 | ||
25 | // an exception to the general rule that a normal header doesn't include other | |
26 | // headers - only because ownerdrw.h is not always included and I don't want | |
27 | // to write #ifdef's everywhere... | |
28 | #if wxUSE_OWNER_DRAWN | |
29 | #include "wx/ownerdrw.h" | |
30 | #endif | |
31 | ||
0dbd6262 SC |
32 | // ---------------------------------------------------------------------------- |
33 | // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour | |
34 | // ---------------------------------------------------------------------------- | |
519cb848 | 35 | class WXDLLEXPORT wxMenuItem: public wxMenuItemBase |
0dbd6262 SC |
36 | #if wxUSE_OWNER_DRAWN |
37 | , public wxOwnerDrawn | |
38 | #endif | |
39 | { | |
0dbd6262 | 40 | public: |
519cb848 SC |
41 | // ctor & dtor |
42 | wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL, | |
43 | int id = wxID_SEPARATOR, | |
44 | const wxString& name = wxEmptyString, | |
45 | const wxString& help = wxEmptyString, | |
46 | bool isCheckable = FALSE, | |
47 | wxMenu *subMenu = (wxMenu *)NULL); | |
48 | virtual ~wxMenuItem(); | |
49 | ||
50 | // override base class virtuals | |
51 | virtual void SetText(const wxString& strName); | |
52 | virtual wxString GetLabel() const; | |
53 | virtual void SetCheckable(bool checkable); | |
54 | ||
55 | virtual void Enable(bool bDoEnable = TRUE); | |
56 | virtual void Check(bool bDoCheck = TRUE); | |
57 | virtual bool IsChecked() const; | |
58 | ||
59 | #if wxUSE_ACCEL | |
60 | virtual wxAcceleratorEntry *GetAccel() const; | |
61 | #endif // wxUSE_ACCEL | |
62 | ||
63 | // unfortunately needed to resolve ambiguity between | |
64 | // wxMenuItemBase::IsCheckable() and wxOwnerDrawn::IsCheckable() | |
65 | bool IsCheckable() const { return wxMenuItemBase::IsCheckable(); } | |
66 | ||
67 | // the id for a popup menu is really its menu handle (as required by | |
68 | // ::AppendMenu() API), so this function will return either the id or the | |
69 | // menu handle depending on what we're | |
70 | int GetRealId() const; | |
0dbd6262 | 71 | |
f58f5163 | 72 | static int MacBuildMenuString(StringPtr outMacItemText, SInt16 *outMacShortcutChar , UInt8 *outMacModifiers , const char *inItemName , bool useShortcuts ) ; |
05adb9d2 | 73 | |
0dbd6262 | 74 | private: |
519cb848 | 75 | DECLARE_DYNAMIC_CLASS(wxMenuItem) |
0dbd6262 SC |
76 | }; |
77 | ||
78 | #endif //_MENUITEM_H |