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 WX_DEFINE_EXPORTED_ARRAY(wxAcceleratorEntry
*, wxAcceleratorArray
);
26 class WXDLLEXPORT wxFrame
;
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
32 class WXDLLEXPORT wxMenu
: public wxMenuBase
36 wxMenu(const wxString
& title
, long style
= 0)
37 : wxMenuBase(title
, style
) { Init(); }
39 wxMenu(long style
= 0) : wxMenuBase(style
) { Init(); }
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
);
50 virtual void SetTitle(const wxString
& title
);
52 // deprecated functions
53 #if wxUSE_MENU_CALLBACK
54 wxMenu(const wxString
& title
, const wxFunction func
)
61 #endif // wxUSE_MENU_CALLBACK
63 // implementation only from now on
64 // -------------------------------
66 bool MSWCommand(WXUINT param
, WXWORD id
);
68 // semi-private accessors
69 // get the window which contains this menu
70 wxWindow
*GetWindow() const;
71 // get the menu handle
72 WXHMENU
GetHMenu() const { return m_hMenu
; }
75 // called by wxMenuBar to build its accel table from the accels of all menus
76 bool HasAccels() const { return !m_accels
.IsEmpty(); }
77 size_t GetAccelCount() const { return m_accels
.GetCount(); }
78 size_t CopyAccels(wxAcceleratorEntry
*accels
) const;
80 // called by wxMenuItem when its accels changes
81 void UpdateAccel(wxMenuItem
*item
);
83 // helper used by wxMenu itself (returns the index in m_accels)
84 int FindAccel(int id
) const;
88 // common part of all ctors
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);
94 // if TRUE, insert a breal before appending the next item
97 // the menu handle of this menu
101 // the accelerators for our menu items
102 wxAcceleratorArray m_accels
;
103 #endif // wxUSE_ACCEL
105 DECLARE_DYNAMIC_CLASS(wxMenu
)
108 // ----------------------------------------------------------------------------
109 // Menu Bar (a la Windows)
110 // ----------------------------------------------------------------------------
112 class WXDLLEXPORT wxMenuBar
: public wxMenuBarBase
116 // default constructor
119 wxMenuBar(long style
);
120 // menubar takes ownership of the menus arrays but copies the titles
121 wxMenuBar(int n
, wxMenu
*menus
[], const wxString titles
[]);
122 virtual ~wxMenuBar();
124 // menubar construction
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
);
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;
134 // compatibility: these functions are deprecated
135 #if WXWIN_COMPATIBILITY
136 void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
137 wxEvtHandler
*GetEventHandler() { return m_eventHandler
; }
139 bool Enabled(int id
) const { return IsEnabled(id
); }
140 bool Checked(int id
) const { return IsChecked(id
); }
141 #endif // WXWIN_COMPATIBILITY
143 // implementation from now on
145 virtual void Detach();
146 virtual void Attach(wxFrame
*frame
);
149 // get the accel table for all the menus
150 const wxAcceleratorTable
& GetAccelTable() const { return m_accelTable
; }
152 // update the accel table (must be called after adding/deletign a menu)
153 void RebuildAccelTable();
154 #endif // wxUSE_ACCEL
156 // get the menu handle
157 WXHMENU
GetHMenu() const { return m_hMenu
; }
159 // if the menubar is modified, the display is not updated automatically,
160 // call this function to update it (m_menuBarFrame should be !NULL)
164 // common part of all ctors
167 #if WXWIN_COMPATIBILITY
168 wxEvtHandler
*m_eventHandler
;
169 #endif // WXWIN_COMPATIBILITY
171 wxArrayString m_titles
;
176 // the accelerator table for all accelerators in all our menus
177 wxAcceleratorTable m_accelTable
;
178 #endif // wxUSE_ACCEL
181 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
184 #endif // _WX_MENU_H_