]>
Commit | Line | Data |
---|---|---|
23d1d521 | 1 | /////////////////////////////////////////////////////////////////////////////// |
925f7740 | 2 | // Name: wx/motif/menuitem.h |
23d1d521 JS |
3 | // Purpose: wxMenuItem class |
4 | // Author: Vadim Zeitlin | |
3b59cdbf | 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 | ||
9874b4ee VZ |
12 | #ifndef _WX_MOTIF_MENUITEM_H |
13 | #define _WX_MOTIF_MENUITEM_H | |
23d1d521 | 14 | |
5fdff4a5 JJ |
15 | #include "wx/bitmap.h" |
16 | ||
b5dbe15d | 17 | class WXDLLIMPEXP_FWD_CORE wxMenuBar; |
c71830c3 | 18 | |
23d1d521 JS |
19 | // ---------------------------------------------------------------------------- |
20 | // wxMenuItem: an item in the menu, optionally implements owner-drawn behaviour | |
21 | // ---------------------------------------------------------------------------- | |
23d1d521 | 22 | |
94c7b088 | 23 | class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase |
9874b4ee | 24 | { |
23d1d521 | 25 | public: |
9874b4ee | 26 | // ctor & dtor |
d3b9f782 | 27 | wxMenuItem(wxMenu *parentMenu = NULL, |
d65c269b VZ |
28 | int id = wxID_SEPARATOR, |
29 | const wxString& text = wxEmptyString, | |
30 | const wxString& help = wxEmptyString, | |
546bfbea | 31 | wxItemKind kind = wxITEM_NORMAL, |
d3b9f782 | 32 | wxMenu *subMenu = NULL); |
d3c7fc99 | 33 | virtual ~wxMenuItem(); |
925f7740 | 34 | |
9874b4ee | 35 | // accessors (some more are inherited from wxOwnerDrawn or are below) |
52af3158 | 36 | virtual void SetItemLabel(const wxString& label); |
96be256b MB |
37 | virtual void Enable(bool enable = true); |
38 | virtual void Check(bool check = true); | |
83df96d6 JS |
39 | // included SetBitmap and GetBitmap as copied from the GTK include file |
40 | // I'm not sure if this works but it silences the linker in the | |
41 | // menu sample. | |
42 | // JJ | |
5fdff4a5 JJ |
43 | virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; } |
44 | virtual const wxBitmap& GetBitmap() const { return m_bitmap; } | |
925f7740 | 45 | |
9874b4ee | 46 | // implementation from now on |
51c9a5db MB |
47 | void CreateItem (WXWidget menu, wxMenuBar * menuBar, wxMenu * topMenu, |
48 | size_t index); | |
9874b4ee | 49 | void DestroyItem(bool full); |
925f7740 | 50 | |
9874b4ee | 51 | WXWidget GetButtonWidget() const { return m_buttonWidget; } |
925f7740 | 52 | |
9874b4ee VZ |
53 | wxMenuBar* GetMenuBar() const { return m_menuBar; } |
54 | void SetMenuBar(wxMenuBar* menuBar) { m_menuBar = menuBar; } | |
925f7740 | 55 | |
9874b4ee VZ |
56 | wxMenu* GetTopMenu() const { return m_topMenu; } |
57 | void SetTopMenu(wxMenu* menu) { m_topMenu = menu; } | |
925f7740 | 58 | |
23d1d521 | 59 | private: |
9874b4ee VZ |
60 | WXWidget m_buttonWidget; |
61 | wxMenuBar* m_menuBar; | |
62 | wxMenu* m_topMenu; // Top-level menu e.g. popup-menu | |
5fdff4a5 | 63 | wxBitmap m_bitmap; // Bitmap for menuitem, if any |
925f7740 | 64 | |
9874b4ee | 65 | DECLARE_DYNAMIC_CLASS(wxMenuItem) |
23d1d521 JS |
66 | }; |
67 | ||
9874b4ee | 68 | #endif // _WX_MOTIF_MENUITEM_H |