]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: menuitem.h | |
3 | // Purpose: wxMenuItem class | |
4 | // Author: Robert Roebling | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (c) 1998 Robert Roebling | |
7 | // Licence: wxWindows license | |
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef __GTKMENUITEMH__ | |
11 | #define __GTKMENUITEMH__ | |
12 | ||
13 | #ifdef __GNUG__ | |
14 | #pragma interface | |
15 | #endif | |
16 | ||
17 | #include "wx/defs.h" | |
18 | #include "wx/string.h" | |
19 | ||
20 | // ---------------------------------------------------------------------------- | |
21 | // constants | |
22 | // ---------------------------------------------------------------------------- | |
23 | ||
24 | #define ID_SEPARATOR (-1) | |
25 | ||
26 | //----------------------------------------------------------------------------- | |
27 | // classes | |
28 | //----------------------------------------------------------------------------- | |
29 | ||
30 | class wxMenuItem; | |
31 | class wxMenu; | |
32 | ||
33 | //----------------------------------------------------------------------------- | |
34 | // wxMenuItem | |
35 | //----------------------------------------------------------------------------- | |
36 | ||
37 | class wxMenuItem : public wxObject | |
38 | { | |
39 | DECLARE_DYNAMIC_CLASS(wxMenuItem) | |
40 | ||
41 | public: | |
42 | wxMenuItem(); | |
43 | ||
44 | // accessors | |
45 | // id | |
46 | void SetId(int id) { m_id = id; } | |
47 | int GetId() const { return m_id; } | |
48 | bool IsSeparator() const { return m_id == ID_SEPARATOR; } | |
49 | ||
50 | // the item's text = name | |
51 | void SetName(const wxString& str); | |
52 | void SetText(const wxString& str) { SetName(str); } // compatibility | |
53 | const wxString& GetName() const { return m_text; } | |
54 | const wxString& GetText() const { return GetName(); } | |
55 | ||
56 | // what kind of menu item we are | |
57 | void SetCheckable(bool checkable) { m_isCheckMenu = checkable; } | |
58 | bool IsCheckable() const { return m_isCheckMenu; } | |
59 | void SetSubMenu(wxMenu *menu) { m_subMenu = menu; } | |
60 | wxMenu *GetSubMenu() const { return m_subMenu; } | |
61 | bool IsSubMenu() const { return m_subMenu != NULL; } | |
62 | ||
63 | // state | |
64 | void Enable( bool enable = TRUE ); | |
65 | bool IsEnabled() const { return m_isEnabled; } | |
66 | void Check( bool check = TRUE ); | |
67 | bool IsChecked() const; | |
68 | ||
69 | // help string (displayed in the status bar by default) | |
70 | void SetHelp(const wxString& str) { m_helpStr = str; } | |
71 | const wxString& GetHelp() const { return m_helpStr; } | |
72 | ||
73 | // implementation | |
74 | void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; } | |
75 | GtkWidget *GetMenuItem() const { return m_menuItem; } | |
76 | ||
77 | wxString GetHotKey() const { return m_hotKey; } | |
78 | ||
79 | void SetCheckedFlag(bool checked) { m_isChecked = checked; } | |
80 | bool GetCheckedFlag() const { return m_isChecked; } | |
81 | ||
82 | private: | |
83 | int m_id; | |
84 | wxString m_text; | |
85 | wxString m_hotKey; | |
86 | bool m_isCheckMenu; | |
87 | bool m_isChecked; | |
88 | bool m_isEnabled; | |
89 | wxMenu *m_subMenu; | |
90 | wxString m_helpStr; | |
91 | ||
92 | GtkWidget *m_menuItem; // GtkMenuItem | |
93 | }; | |
94 | ||
95 | ||
96 | #endif | |
97 | //__GTKMENUITEMH__ |