1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxMenu, wxMenuBar classes
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin (wxMenuItem is now in separate file)
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "menu.h"
21 #include "wx/dynarray.h"
23 class WXDLLEXPORT wxMenuItem
;
24 class WXDLLEXPORT wxMenuBar
;
25 class WXDLLEXPORT wxMenu
;
26 class WXDLLEXPORT wxFrame
;
28 WXDLLEXPORT_DATA(extern const wxChar
*) wxEmptyString
;
30 // ----------------------------------------------------------------------------
32 // ----------------------------------------------------------------------------
34 class WXDLLEXPORT wxMenu
: public wxEvtHandler
36 DECLARE_DYNAMIC_CLASS(wxMenu
)
40 wxMenu(const wxString
& title
= wxEmptyString
, const wxFunction func
= NULL
);
44 // append a separator to the menu
45 void AppendSeparator();
46 // append a normal item to the menu
47 void Append(int id
, const wxString
& label
,
48 const wxString
& helpString
= wxEmptyString
,
49 bool checkable
= FALSE
);
51 void Append(int id
, const wxString
& label
,
53 const wxString
& helpString
= wxEmptyString
);
54 // append anything (create wxMenuItem first)
55 void Append(wxMenuItem
*pItem
);
57 // insert a break in the menu
61 // If it's a submenu, menu is not destroyed.
62 // VZ: why? shouldn't it return "wxMenu *" then?
66 void SetClientData(void* clientData
) { m_clientData
= clientData
; }
67 void* GetClientData() const { return m_clientData
; }
70 // enable/disable item
71 void Enable(int id
, bool enable
);
73 bool IsEnabled(int id
) const;
75 // check/uncheck item - only for checkable items, of course
76 void Check(int id
, bool check
);
78 bool IsChecked(int id
) const;
82 void SetTitle(const wxString
& label
);
83 const wxString
GetTitle() const;
85 void SetLabel(int id
, const wxString
& label
);
86 wxString
GetLabel(int id
) const;
88 virtual void SetHelpString(int id
, const wxString
& helpString
);
89 virtual wxString
GetHelpString(int id
) const;
91 // get the list of items
92 wxList
& GetItems() const { return (wxList
&)m_menuItems
; }
95 // returns id of the item matching the given string or wxNOT_FOUND
96 virtual int FindItem(const wxString
& itemString
) const;
97 // returns NULL if not found
98 wxMenuItem
* FindItem(int id
) const { return FindItemForId(id
); }
99 // find wxMenuItem by ID, and item's menu too if itemMenu is !NULL
100 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**itemMenu
= NULL
) const;
102 // Updates the UI for a menu and all submenus recursively. source is the
103 // object that has the update event handlers defined for it. If NULL, the
104 // menu or associated window will be used.
105 void UpdateUI(wxEvtHandler
* source
= (wxEvtHandler
*)NULL
);
107 bool ProcessCommand(wxCommandEvent
& event
);
109 virtual void SetParent(wxEvtHandler
*parent
) { m_parent
= parent
; }
110 void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
111 wxEvtHandler
*GetEventHandler() const { return m_eventHandler
; }
114 bool MSWCommand(WXUINT param
, WXWORD id
);
116 void SetInvokingWindow(wxWindow
*pWin
) { m_pInvokingWindow
= pWin
; }
117 wxWindow
*GetInvokingWindow() const { return m_pInvokingWindow
; }
119 // semi-private accessors
120 // get the window which contains this menu
121 wxWindow
*GetWindow() const;
122 // get the menu handle
123 WXHMENU
GetHMenu() const;
125 // only for wxMenuBar
126 void Attach(wxMenuBar
*menubar
);
130 size_t GetAccelCount() const { return m_accelKeyCodes
.GetCount(); }
131 size_t CopyAccels(wxAcceleratorEntry
*accels
) const;
132 #endif // wxUSE_ACCEL
134 #ifdef WXWIN_COMPATIBILITY
135 void Callback(const wxFunction func
) { m_callback
= func
; }
137 // compatibility: these functions are deprecated
138 bool Enabled(int id
) const { return IsEnabled(id
); }
139 bool Checked(int id
) const { return IsChecked(id
); }
142 wxFunction m_callback
;
143 #endif // WXWIN_COMPATIBILITY
148 // This is used when m_hMenu is NULL because we don't want to
149 // delete it in ~wxMenu (it's been added to a parent menu).
150 // But we'll still need the handle for other purposes.
151 // Might be better to have a flag saying whether it's deleteable or not.
152 WXHMENU m_savehMenu
; // Used for Enable() on popup
157 wxMenu
* m_topLevelMenu
;
158 wxMenuBar
* m_menuBar
;
160 wxEvtHandler
* m_parent
;
161 wxEvtHandler
* m_eventHandler
;
162 wxWindow
*m_pInvokingWindow
;
166 // the accelerators data
167 wxArrayInt m_accelKeyCodes
, m_accelFlags
, m_accelIds
;
168 #endif // wxUSE_ACCEL
171 // ----------------------------------------------------------------------------
172 // Menu Bar (a la Windows)
173 // ----------------------------------------------------------------------------
175 class WXDLLEXPORT wxMenuBar
: public wxEvtHandler
177 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
181 // default constructor
184 wxMenuBar(long style
);
185 // menubar takes ownership of the menus arrays but copies the titles
186 wxMenuBar(int n
, wxMenu
*menus
[], const wxString titles
[]);
187 virtual ~wxMenuBar();
189 // menubar construction
191 void Append(wxMenu
*menu
, const wxString
& title
);
192 virtual void Delete(wxMenu
*menu
, int index
= 0); /* Menu not destroyed */
195 // NB: must only be used AFTER menu has been attached to frame,
196 // otherwise use individual menus to enable/disable items
198 void Enable(int id
, bool enable
);
199 // TRUE if item enabled
200 bool IsEnabled(int id
) const;
202 void EnableTop(int pos
, bool enable
);
204 // works only with checkable items
205 void Check(int id
, bool check
);
207 bool IsChecked(int id
) const;
209 void SetLabel(int id
, const wxString
& label
) ;
210 wxString
GetLabel(int id
) const ;
212 virtual void SetHelpString(int id
, const wxString
& helpString
);
213 virtual wxString
GetHelpString(int id
) const ;
215 void SetLabelTop(int pos
, const wxString
& label
) ;
216 wxString
GetLabelTop(int pos
) const ;
218 // notifications: return FALSE to prevent the menu from being
220 virtual bool OnAppend(wxMenu
*menu
, const wxChar
*title
);
221 virtual bool OnDelete(wxMenu
*menu
, int index
);
224 // by menu and item names, returns wxNOT_FOUND if not found
225 virtual int FindMenuItem(const wxString
& menuString
,
226 const wxString
& itemString
) const;
227 // returns NULL if not found
228 wxMenuItem
* FindItem(int id
) const { return FindItemForId(id
); }
229 // returns NULL if not found, fills menuForItem if !NULL
230 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**menuForItem
= NULL
) const;
233 int GetMenuCount() const { return m_menuCount
; }
234 wxMenu
*GetMenu(int i
) const { return m_menus
[i
]; }
236 void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
237 wxEvtHandler
*GetEventHandler() { return m_eventHandler
; }
239 #ifdef WXWIN_COMPATIBILITY
240 // compatibility: these functions are deprecated
241 bool Enabled(int id
) const { return IsEnabled(id
); }
242 bool Checked(int id
) const { return IsChecked(id
); }
243 #endif // WXWIN_COMPATIBILITY
246 // returns TRUE if we're attached to a frame
247 bool IsAttached() const { return m_menuBarFrame
!= NULL
; }
248 // get the frame we live in
249 wxFrame
*GetFrame() const { return m_menuBarFrame
; }
251 void Attach(wxFrame
*frame
);
254 // get the accel table for the menus
255 const wxAcceleratorTable
& GetAccelTable() const { return m_accelTable
; }
256 #endif // wxUSE_ACCEL
258 // get the menu handle
259 WXHMENU
GetHMenu() const { return m_hMenu
; }
262 // common part of all ctors
265 // if the menubar is modified, the display is not updated automatically,
266 // call this function to update it (m_menuBarFrame should be !NULL)
269 wxEvtHandler
*m_eventHandler
;
273 wxFrame
*m_menuBarFrame
;
277 // the accelerator table for all accelerators in all our menus
278 wxAcceleratorTable m_accelTable
;
279 #endif // wxUSE_ACCEL
282 #endif // _WX_MENU_H_