]>
Commit | Line | Data |
---|---|---|
23d1d521 JS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: menuitem.h | |
3 | // Purpose: wxMenuItem class | |
6ca41e57 | 4 | // Author: Robert Roebling |
23d1d521 | 5 | // RCS-ID: $Id$ |
6ca41e57 | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
23d1d521 JS |
8 | /////////////////////////////////////////////////////////////////////////////// |
9 | ||
6ca41e57 RR |
10 | #ifndef __GTKMENUITEMH__ |
11 | #define __GTKMENUITEMH__ | |
23d1d521 | 12 | |
37d403aa JS |
13 | #include "wx/bitmap.h" |
14 | ||
6ca41e57 RR |
15 | //----------------------------------------------------------------------------- |
16 | // wxMenuItem | |
17 | //----------------------------------------------------------------------------- | |
23d1d521 | 18 | |
20123d49 | 19 | class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase |
6ca41e57 | 20 | { |
6ca41e57 | 21 | public: |
974e8d94 VZ |
22 | wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL, |
23 | int id = wxID_SEPARATOR, | |
24 | const wxString& text = wxEmptyString, | |
25 | const wxString& help = wxEmptyString, | |
546bfbea | 26 | wxItemKind kind = wxITEM_NORMAL, |
974e8d94 | 27 | wxMenu *subMenu = (wxMenu *)NULL); |
d1b15f03 | 28 | ~wxMenuItem(); |
c626a8b7 | 29 | |
974e8d94 | 30 | // implement base class virtuals |
354aa1e3 | 31 | virtual void SetText( const wxString& str ); |
974e8d94 VZ |
32 | virtual void Enable( bool enable = TRUE ); |
33 | virtual void Check( bool check = TRUE ); | |
34 | virtual bool IsChecked() const; | |
37d403aa JS |
35 | virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; } |
36 | virtual const wxBitmap& GetBitmap() const { return m_bitmap; } | |
c626a8b7 | 37 | |
717a57c2 VZ |
38 | #if wxUSE_ACCEL |
39 | virtual wxAcceleratorEntry *GetAccel() const; | |
40 | #endif // wxUSE_ACCEL | |
41 | ||
c626a8b7 VZ |
42 | // implementation |
43 | void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; } | |
44 | GtkWidget *GetMenuItem() const { return m_menuItem; } | |
37d403aa JS |
45 | GtkWidget *GetLabelWidget() const { return m_labelWidget; } |
46 | void SetLabelWidget(GtkWidget *labelWidget) { m_labelWidget = labelWidget; } | |
354aa1e3 | 47 | wxString GetFactoryPath() const; |
c626a8b7 | 48 | |
974e8d94 | 49 | wxString GetHotKey() const { return m_hotKey; } |
c626a8b7 | 50 | |
2368dcda VZ |
51 | // compatibility only, don't use in new code |
52 | wxMenuItem(wxMenu *parentMenu, | |
53 | int id, | |
54 | const wxString& text, | |
55 | const wxString& help, | |
56 | bool isCheckable, | |
57 | wxMenu *subMenu = (wxMenu *)NULL); | |
58 | ||
c626a8b7 | 59 | private: |
2368dcda | 60 | // common part of all ctors |
092f7536 | 61 | void Init(const wxString& text); |
2368dcda | 62 | |
974e8d94 VZ |
63 | // DoSetText() transforms the accel mnemonics in our label from MSW/wxWin |
64 | // style to GTK+ and is called from ctor and SetText() | |
65 | void DoSetText(const wxString& text); | |
66 | ||
67 | wxString m_hotKey; | |
37d403aa | 68 | wxBitmap m_bitmap; // Bitmap for menuitem, if any |
974e8d94 VZ |
69 | |
70 | GtkWidget *m_menuItem; // GtkMenuItem | |
37d403aa | 71 | GtkWidget* m_labelWidget; // Label widget |
c626a8b7 | 72 | |
974e8d94 | 73 | DECLARE_DYNAMIC_CLASS(wxMenuItem) |
23d1d521 JS |
74 | }; |
75 | ||
6ca41e57 | 76 | |
8bbe427f | 77 | #endif |
6ca41e57 | 78 | //__GTKMENUITEMH__ |