]>
Commit | Line | Data |
---|---|---|
ffecfa5a JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/palmos/menu.h | |
3 | // Purpose: wxMenu, wxMenuBar classes | |
e1d63b79 | 4 | // Author: William Osborne - minimal working wxPalmOS port |
ffecfa5a JS |
5 | // Modified by: |
6 | // Created: 10/13/04 | |
e1d63b79 | 7 | // RCS-ID: $Id$ |
ffecfa5a JS |
8 | // Copyright: (c) William Osborne |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_MENU_H_ | |
13 | #define _WX_MENU_H_ | |
14 | ||
15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) | |
16 | #pragma interface "menu.h" | |
17 | #endif | |
18 | ||
19 | #if wxUSE_ACCEL | |
20 | #include "wx/accel.h" | |
21 | #include "wx/dynarray.h" | |
22 | ||
23 | WX_DEFINE_EXPORTED_ARRAY_PTR(wxAcceleratorEntry *, wxAcceleratorArray); | |
24 | #endif // wxUSE_ACCEL | |
25 | ||
26 | class WXDLLEXPORT wxFrame; | |
27 | ||
28 | #if defined(__WXWINCE__) && wxUSE_TOOLBAR | |
29 | class WXDLLEXPORT wxToolBar; | |
30 | #endif | |
31 | ||
32 | #include "wx/arrstr.h" | |
33 | ||
34 | // ---------------------------------------------------------------------------- | |
35 | // Menu | |
36 | // ---------------------------------------------------------------------------- | |
37 | ||
38 | class WXDLLEXPORT wxMenu : public wxMenuBase | |
39 | { | |
40 | public: | |
41 | // ctors & dtor | |
42 | wxMenu(const wxString& title, long style = 0) | |
43 | : wxMenuBase(title, style) { Init(); } | |
44 | ||
45 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } | |
46 | ||
47 | virtual ~wxMenu(); | |
48 | ||
49 | // implement base class virtuals | |
50 | virtual wxMenuItem* DoAppend(wxMenuItem *item); | |
51 | virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item); | |
52 | virtual wxMenuItem* DoRemove(wxMenuItem *item); | |
53 | ||
54 | virtual void Break(); | |
55 | ||
56 | virtual void SetTitle(const wxString& title); | |
57 | ||
58 | // deprecated functions | |
59 | #if wxUSE_MENU_CALLBACK | |
60 | wxMenu(const wxString& title, const wxFunction func) | |
61 | : wxMenuBase(title) | |
62 | { | |
63 | Init(); | |
64 | ||
65 | Callback(func); | |
66 | } | |
67 | #endif // wxUSE_MENU_CALLBACK | |
68 | ||
69 | // implementation only from now on | |
70 | // ------------------------------- | |
71 | ||
72 | virtual void Attach(wxMenuBarBase *menubar); | |
73 | ||
74 | bool PalmCommand(WXUINT param, WXWORD id); | |
75 | ||
76 | // semi-private accessors | |
77 | // get the window which contains this menu | |
78 | wxWindow *GetWindow() const; | |
79 | // get the menu handle | |
80 | WXHMENU GetHMenu() const { return m_hMenu; } | |
81 | ||
82 | #if wxUSE_ACCEL | |
83 | // called by wxMenuBar to build its accel table from the accels of all menus | |
84 | bool HasAccels() const { return !m_accels.IsEmpty(); } | |
85 | size_t GetAccelCount() const { return m_accels.GetCount(); } | |
86 | size_t CopyAccels(wxAcceleratorEntry *accels) const; | |
87 | ||
88 | // called by wxMenuItem when its accels changes | |
89 | void UpdateAccel(wxMenuItem *item); | |
90 | ||
91 | // helper used by wxMenu itself (returns the index in m_accels) | |
92 | int FindAccel(int id) const; | |
93 | #endif // wxUSE_ACCEL | |
94 | ||
95 | private: | |
96 | // common part of all ctors | |
97 | void Init(); | |
98 | ||
99 | // common part of Append/Insert (behaves as Append is pos == (size_t)-1) | |
100 | bool DoInsertOrAppend(wxMenuItem *item, size_t pos = (size_t)-1); | |
101 | ||
102 | // terminate the current radio group, if any | |
103 | void EndRadioGroup(); | |
104 | ||
4055ed82 | 105 | // if true, insert a break before appending the next item |
ffecfa5a JS |
106 | bool m_doBreak; |
107 | ||
108 | // the position of the first item in the current radio group or -1 | |
109 | int m_startRadioGroup; | |
110 | ||
111 | // the menu handle of this menu | |
112 | WXHMENU m_hMenu; | |
113 | ||
114 | #if wxUSE_ACCEL | |
115 | // the accelerators for our menu items | |
116 | wxAcceleratorArray m_accels; | |
117 | #endif // wxUSE_ACCEL | |
118 | ||
119 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxMenu) | |
120 | }; | |
121 | ||
122 | // ---------------------------------------------------------------------------- | |
123 | // Menu Bar (a la Windows) | |
124 | // ---------------------------------------------------------------------------- | |
125 | ||
126 | class WXDLLEXPORT wxMenuInfo : public wxObject | |
127 | { | |
128 | public : | |
129 | wxMenuInfo() { m_menu = NULL ; } | |
130 | virtual ~wxMenuInfo() { } | |
131 | ||
4055ed82 | 132 | void Create( wxMenu *menu , const wxString &title ) |
ffecfa5a JS |
133 | { m_menu = menu ; m_title = title ; } |
134 | wxMenu* GetMenu() const { return m_menu ; } | |
135 | wxString GetTitle() const { return m_title ; } | |
136 | private : | |
137 | wxMenu *m_menu ; | |
138 | wxString m_title ; | |
139 | ||
140 | DECLARE_DYNAMIC_CLASS(wxMenuInfo) ; | |
141 | } ; | |
142 | ||
143 | WX_DECLARE_EXPORTED_LIST(wxMenuInfo, wxMenuInfoList ); | |
144 | ||
145 | class WXDLLEXPORT wxMenuBar : public wxMenuBarBase | |
146 | { | |
147 | public: | |
4055ed82 | 148 | // ctors & dtor |
ffecfa5a JS |
149 | // default constructor |
150 | wxMenuBar(); | |
151 | ||
152 | wxMenuBar(long style); | |
153 | // menubar takes ownership of the menus arrays but copies the titles | |
154 | wxMenuBar(int n, wxMenu *menus[], const wxString titles[]); | |
155 | virtual ~wxMenuBar(); | |
156 | ||
157 | // menubar construction | |
158 | bool Append( wxMenuInfo *info ) { return Append( info->GetMenu() , info->GetTitle() ) ; } | |
159 | const wxMenuInfoList& GetMenuInfos() const ; | |
160 | ||
161 | virtual bool Append( wxMenu *menu, const wxString &title ); | |
162 | virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title); | |
163 | virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title); | |
164 | virtual wxMenu *Remove(size_t pos); | |
165 | ||
166 | virtual void EnableTop( size_t pos, bool flag ); | |
167 | virtual void SetLabelTop( size_t pos, const wxString& label ); | |
168 | virtual wxString GetLabelTop( size_t pos ) const; | |
169 | ||
170 | // implementation from now on | |
171 | WXHMENU Create(); | |
172 | virtual void Detach(); | |
173 | virtual void Attach(wxFrame *frame); | |
174 | ||
175 | void LoadMenu(); | |
176 | int ProcessCommand(int ItemID); | |
177 | ||
ffecfa5a JS |
178 | #if wxUSE_ACCEL |
179 | // get the accel table for all the menus | |
180 | const wxAcceleratorTable& GetAccelTable() const { return m_accelTable; } | |
181 | ||
182 | // update the accel table (must be called after adding/deletign a menu) | |
183 | void RebuildAccelTable(); | |
184 | #endif // wxUSE_ACCEL | |
185 | ||
186 | // get the menu handle | |
187 | WXHMENU GetHMenu() const { return m_hMenu; } | |
188 | ||
189 | // if the menubar is modified, the display is not updated automatically, | |
190 | // call this function to update it (m_menuBarFrame should be !NULL) | |
191 | void Refresh(); | |
192 | ||
193 | // To avoid compile warning | |
194 | void Refresh( bool eraseBackground, | |
195 | const wxRect *rect = (const wxRect *) NULL ) { wxWindow::Refresh(eraseBackground, rect); } | |
196 | ||
197 | protected: | |
198 | // common part of all ctors | |
199 | void Init(); | |
200 | ||
201 | wxArrayString m_titles ; | |
202 | wxMenuInfoList m_menuInfos; | |
203 | ||
204 | WXHMENU m_hMenu; | |
205 | ||
206 | // Return the Palm position for a wxMenu which is sometimes different from | |
207 | // the wxWidgets position. | |
208 | int PalmPositionForWxMenu(wxMenu *menu, int wxpos); | |
209 | #if wxUSE_ACCEL | |
210 | // the accelerator table for all accelerators in all our menus | |
211 | wxAcceleratorTable m_accelTable; | |
212 | #endif // wxUSE_ACCEL | |
213 | ||
214 | #if defined(__WXWINCE__) && wxUSE_TOOLBAR | |
215 | wxToolBar* m_toolBar; | |
216 | #endif | |
ffecfa5a JS |
217 | |
218 | private: | |
219 | DECLARE_DYNAMIC_CLASS_NO_COPY(wxMenuBar) | |
220 | }; | |
221 | ||
222 | #endif // _WX_MENU_H_ |