]>
Commit | Line | Data |
---|---|---|
2bda0e17 KB |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: menu.h | |
3 | // Purpose: wxMenu, wxMenuBar classes | |
4 | // Author: Julian Smart | |
5 | // Modified by: Vadim Zeitlin (wxMenuItem is now in separate file) | |
6 | // Created: 01/02/97 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
a3622daa | 9 | // Licence: wxWindows license |
2bda0e17 KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
bbcdf8bc JS |
12 | #ifndef _WX_MENU_H_ |
13 | #define _WX_MENU_H_ | |
2bda0e17 KB |
14 | |
15 | #ifdef __GNUG__ | |
c626a8b7 | 16 | #pragma interface "menu.h" |
2bda0e17 KB |
17 | #endif |
18 | ||
3f3cec48 | 19 | #if wxUSE_ACCEL |
974e8d94 | 20 | #include "wx/accel.h" |
717a57c2 VZ |
21 | #include "wx/dynarray.h" |
22 | ||
23 | WX_DEFINE_EXPORTED_ARRAY(wxAcceleratorEntry *, wxAcceleratorArray); | |
3f3cec48 | 24 | #endif // wxUSE_ACCEL |
2bda0e17 | 25 | |
c626a8b7 | 26 | class WXDLLEXPORT wxFrame; |
2bda0e17 | 27 | |
2bda0e17 KB |
28 | // ---------------------------------------------------------------------------- |
29 | // Menu | |
30 | // ---------------------------------------------------------------------------- | |
c626a8b7 | 31 | |
717a57c2 | 32 | class WXDLLEXPORT wxMenu : public wxMenuBase |
2bda0e17 | 33 | { |
2bda0e17 | 34 | public: |
b908d224 | 35 | // ctors & dtor |
717a57c2 VZ |
36 | wxMenu(const wxString& title, long style = 0) |
37 | : wxMenuBase(title, style) { Init(); } | |
33961d59 | 38 | |
717a57c2 | 39 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } |
b908d224 | 40 | |
c626a8b7 VZ |
41 | virtual ~wxMenu(); |
42 | ||
717a57c2 VZ |
43 | // implement base class virtuals |
44 | virtual bool DoAppend(wxMenuItem *item); | |
45 | virtual bool DoInsert(size_t pos, wxMenuItem *item); | |
46 | virtual wxMenuItem *DoRemove(wxMenuItem *item); | |
47 | ||
48 | virtual void Break(); | |
49 | ||
50 | virtual void SetTitle(const wxString& title); | |
c626a8b7 | 51 | |
cc160ba6 VZ |
52 | // deprecated functions |
53 | #if wxUSE_MENU_CALLBACK | |
717a57c2 VZ |
54 | wxMenu(const wxString& title, const wxFunction func) |
55 | : wxMenuBase(title) | |
56 | { | |
4a539480 VZ |
57 | Init(); |
58 | ||
717a57c2 VZ |
59 | Callback(func); |
60 | } | |
cc160ba6 VZ |
61 | #endif // wxUSE_MENU_CALLBACK |
62 | ||
717a57c2 VZ |
63 | // implementation only from now on |
64 | // ------------------------------- | |
c626a8b7 | 65 | |
717a57c2 | 66 | bool MSWCommand(WXUINT param, WXWORD id); |
c626a8b7 VZ |
67 | |
68 | // semi-private accessors | |
69 | // get the window which contains this menu | |
70 | wxWindow *GetWindow() const; | |
71 | // get the menu handle | |
717a57c2 | 72 | WXHMENU GetHMenu() const { return m_hMenu; } |
2bda0e17 | 73 | |
d427503c | 74 | #if wxUSE_ACCEL |
717a57c2 VZ |
75 | // called by wxMenuBar to build its accel table from the accels of all menus |
76 | bool HasAccels() const { return !m_accels.IsEmpty(); } | |
974e8d94 | 77 | size_t GetAccelCount() const { return m_accels.GetCount(); } |
42e69d6b VZ |
78 | size_t CopyAccels(wxAcceleratorEntry *accels) const; |
79 | ||
717a57c2 VZ |
80 | // called by wxMenuItem when its accels changes |
81 | void UpdateAccel(wxMenuItem *item); | |
42e69d6b | 82 | |
717a57c2 VZ |
83 | // helper used by wxMenu itself (returns the index in m_accels) |
84 | int FindAccel(int id) const; | |
85 | #endif // wxUSE_ACCEL | |
42e69d6b | 86 | |
2bda0e17 | 87 | private: |
b908d224 | 88 | // common part of all ctors |
717a57c2 VZ |
89 | void Init(); |
90 | ||
91 | // common part of Append/Insert (behaves as Append is pos == (size_t)-1) | |
92 | bool DoInsertOrAppend(wxMenuItem *item, size_t pos = (size_t)-1); | |
93 | ||
94 | // if TRUE, insert a breal before appending the next item | |
95 | bool m_doBreak; | |
96 | ||
97 | // the menu handle of this menu | |
98 | WXHMENU m_hMenu; | |
42e69d6b | 99 | |
d427503c | 100 | #if wxUSE_ACCEL |
974e8d94 VZ |
101 | // the accelerators for our menu items |
102 | wxAcceleratorArray m_accels; | |
d427503c | 103 | #endif // wxUSE_ACCEL |
717a57c2 VZ |
104 | |
105 | DECLARE_DYNAMIC_CLASS(wxMenu) | |
2bda0e17 KB |
106 | }; |
107 | ||
108 | // ---------------------------------------------------------------------------- | |
109 | // Menu Bar (a la Windows) | |
110 | // ---------------------------------------------------------------------------- | |
c626a8b7 | 111 | |
a8cfd0cb | 112 | class WXDLLEXPORT wxMenuBar : public wxMenuBarBase |
2bda0e17 | 113 | { |
c626a8b7 VZ |
114 | public: |
115 | // ctors & dtor | |
c2dcfdef | 116 | // default constructor |
c626a8b7 | 117 | wxMenuBar(); |
c2dcfdef | 118 | // unused under MSW |
c626a8b7 | 119 | wxMenuBar(long style); |
c2dcfdef | 120 | // menubar takes ownership of the menus arrays but copies the titles |
c626a8b7 VZ |
121 | wxMenuBar(int n, wxMenu *menus[], const wxString titles[]); |
122 | virtual ~wxMenuBar(); | |
123 | ||
124 | // menubar construction | |
a8cfd0cb VZ |
125 | virtual bool Append( wxMenu *menu, const wxString &title ); |
126 | virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title); | |
127 | virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title); | |
128 | virtual wxMenu *Remove(size_t pos); | |
c626a8b7 | 129 | |
a8cfd0cb VZ |
130 | virtual void EnableTop( size_t pos, bool flag ); |
131 | virtual void SetLabelTop( size_t pos, const wxString& label ); | |
132 | virtual wxString GetLabelTop( size_t pos ) const; | |
c626a8b7 | 133 | |
a8cfd0cb | 134 | // compatibility: these functions are deprecated |
600ea9da | 135 | #if WXWIN_COMPATIBILITY |
c626a8b7 VZ |
136 | void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; } |
137 | wxEvtHandler *GetEventHandler() { return m_eventHandler; } | |
138 | ||
c626a8b7 VZ |
139 | bool Enabled(int id) const { return IsEnabled(id); } |
140 | bool Checked(int id) const { return IsChecked(id); } | |
141 | #endif // WXWIN_COMPATIBILITY | |
2bda0e17 | 142 | |
a8cfd0cb VZ |
143 | // implementation from now on |
144 | WXHMENU Create(); | |
1e6feb95 VZ |
145 | virtual void Detach(); |
146 | virtual void Attach(wxFrame *frame); | |
c2dcfdef | 147 | |
d427503c | 148 | #if wxUSE_ACCEL |
717a57c2 | 149 | // get the accel table for all the menus |
42e69d6b | 150 | const wxAcceleratorTable& GetAccelTable() const { return m_accelTable; } |
717a57c2 VZ |
151 | |
152 | // update the accel table (must be called after adding/deletign a menu) | |
153 | void RebuildAccelTable(); | |
d427503c VZ |
154 | #endif // wxUSE_ACCEL |
155 | ||
c2dcfdef VZ |
156 | // get the menu handle |
157 | WXHMENU GetHMenu() const { return m_hMenu; } | |
158 | ||
c2dcfdef VZ |
159 | // if the menubar is modified, the display is not updated automatically, |
160 | // call this function to update it (m_menuBarFrame should be !NULL) | |
161 | void Refresh(); | |
162 | ||
fbb90f7f PA |
163 | protected: |
164 | // common part of all ctors | |
165 | void Init(); | |
166 | ||
600ea9da | 167 | #if WXWIN_COMPATIBILITY |
c2dcfdef | 168 | wxEvtHandler *m_eventHandler; |
a8cfd0cb VZ |
169 | #endif // WXWIN_COMPATIBILITY |
170 | ||
171 | wxArrayString m_titles; | |
172 | ||
c2dcfdef | 173 | WXHMENU m_hMenu; |
42e69d6b | 174 | |
d427503c | 175 | #if wxUSE_ACCEL |
42e69d6b VZ |
176 | // the accelerator table for all accelerators in all our menus |
177 | wxAcceleratorTable m_accelTable; | |
d427503c | 178 | #endif // wxUSE_ACCEL |
a8cfd0cb VZ |
179 | |
180 | private: | |
181 | DECLARE_DYNAMIC_CLASS(wxMenuBar) | |
2bda0e17 KB |
182 | }; |
183 | ||
bbcdf8bc | 184 | #endif // _WX_MENU_H_ |