]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/menu.h
return true if we did anything in NotifyExpired()
[wxWidgets.git] / include / wx / msw / menu.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
0472ece7 2// Name: wx/msw/menu.h
2bda0e17
KB
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$
371a5b4e 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_MENU_H_
13#define _WX_MENU_H_
2bda0e17 14
3f3cec48 15#if wxUSE_ACCEL
974e8d94 16 #include "wx/accel.h"
717a57c2
VZ
17 #include "wx/dynarray.h"
18
d5d29b8a 19 WX_DEFINE_EXPORTED_ARRAY_PTR(wxAcceleratorEntry *, wxAcceleratorArray);
3f3cec48 20#endif // wxUSE_ACCEL
2bda0e17 21
b5dbe15d 22class WXDLLIMPEXP_FWD_CORE wxFrame;
2bda0e17 23
39d2f9a7 24#if defined(__WXWINCE__) && wxUSE_TOOLBAR
b5dbe15d 25class WXDLLIMPEXP_FWD_CORE wxToolBar;
39d2f9a7
JS
26#endif
27
b3900fb5
RR
28
29// Not using a combined wxToolBar/wxMenuBar? then use
30// a commandbar in WinCE .NET to implement the
31// menubar, since there is no ::SetMenu function.
32#if defined(__WXWINCE__)
33# if ((_WIN32_WCE >= 400) && !defined(__POCKETPC__) && !defined(__SMARTPHONE__)) || \
34 defined(__HANDHELDPC__)
35# define WINCE_WITH_COMMANDBAR
36# else
37# define WINCE_WITHOUT_COMMANDBAR
38# endif
39#endif
40
41
a381fd1c
MB
42#include "wx/arrstr.h"
43
2bda0e17
KB
44// ----------------------------------------------------------------------------
45// Menu
46// ----------------------------------------------------------------------------
c626a8b7 47
53a2db12 48class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
2bda0e17 49{
2bda0e17 50public:
b908d224 51 // ctors & dtor
717a57c2
VZ
52 wxMenu(const wxString& title, long style = 0)
53 : wxMenuBase(title, style) { Init(); }
33961d59 54
717a57c2 55 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
b908d224 56
c626a8b7
VZ
57 virtual ~wxMenu();
58
717a57c2
VZ
59 virtual void Break();
60
61 virtual void SetTitle(const wxString& title);
c626a8b7 62
717a57c2
VZ
63 // implementation only from now on
64 // -------------------------------
c626a8b7 65
0472ece7
VZ
66 virtual void Attach(wxMenuBarBase *menubar);
67
717a57c2 68 bool MSWCommand(WXUINT param, WXWORD id);
c626a8b7
VZ
69
70 // semi-private accessors
71 // get the window which contains this menu
72 wxWindow *GetWindow() const;
73 // get the menu handle
717a57c2 74 WXHMENU GetHMenu() const { return m_hMenu; }
2bda0e17 75
d427503c 76#if wxUSE_ACCEL
717a57c2
VZ
77 // called by wxMenuBar to build its accel table from the accels of all menus
78 bool HasAccels() const { return !m_accels.IsEmpty(); }
974e8d94 79 size_t GetAccelCount() const { return m_accels.GetCount(); }
42e69d6b
VZ
80 size_t CopyAccels(wxAcceleratorEntry *accels) const;
81
717a57c2
VZ
82 // called by wxMenuItem when its accels changes
83 void UpdateAccel(wxMenuItem *item);
42e69d6b 84
717a57c2
VZ
85 // helper used by wxMenu itself (returns the index in m_accels)
86 int FindAccel(int id) const;
87#endif // wxUSE_ACCEL
42e69d6b 88
6f02a879
VZ
89protected:
90 virtual wxMenuItem* DoAppend(wxMenuItem *item);
91 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
92 virtual wxMenuItem* DoRemove(wxMenuItem *item);
93
2bda0e17 94private:
b908d224 95 // common part of all ctors
717a57c2
VZ
96 void Init();
97
98 // common part of Append/Insert (behaves as Append is pos == (size_t)-1)
99 bool DoInsertOrAppend(wxMenuItem *item, size_t pos = (size_t)-1);
100
0472ece7
VZ
101 // terminate the current radio group, if any
102 void EndRadioGroup();
103
598ddd96 104 // if true, insert a breal before appending the next item
717a57c2
VZ
105 bool m_doBreak;
106
0472ece7
VZ
107 // the position of the first item in the current radio group or -1
108 int m_startRadioGroup;
109
717a57c2
VZ
110 // the menu handle of this menu
111 WXHMENU m_hMenu;
42e69d6b 112
d427503c 113#if wxUSE_ACCEL
974e8d94
VZ
114 // the accelerators for our menu items
115 wxAcceleratorArray m_accels;
d427503c 116#endif // wxUSE_ACCEL
717a57c2 117
fc7a2a60 118 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMenu)
2bda0e17
KB
119};
120
121// ----------------------------------------------------------------------------
122// Menu Bar (a la Windows)
123// ----------------------------------------------------------------------------
c626a8b7 124
53a2db12 125class WXDLLIMPEXP_CORE wxMenuInfo : public wxObject
6c7a1f82
SC
126{
127public :
3839f37e 128 wxMenuInfo() { m_menu = NULL; }
6c7a1f82
SC
129 virtual ~wxMenuInfo() { }
130
598ddd96 131 void Create( wxMenu *menu , const wxString &title )
3839f37e
VZ
132 { m_menu = menu; m_title = title; }
133 wxMenu* GetMenu() const { return m_menu; }
134 wxString GetTitle() const { return m_title; }
6c7a1f82 135private :
3839f37e
VZ
136 wxMenu *m_menu;
137 wxString m_title;
6c7a1f82 138
3839f37e
VZ
139 DECLARE_DYNAMIC_CLASS(wxMenuInfo)
140};
6c7a1f82
SC
141
142WX_DECLARE_EXPORTED_LIST(wxMenuInfo, wxMenuInfoList );
143
53a2db12 144class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
2bda0e17 145{
c626a8b7 146public:
598ddd96 147 // ctors & dtor
c2dcfdef 148 // default constructor
c626a8b7 149 wxMenuBar();
c2dcfdef 150 // unused under MSW
c626a8b7 151 wxMenuBar(long style);
c2dcfdef 152 // menubar takes ownership of the menus arrays but copies the titles
294ea16d 153 wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0);
c626a8b7
VZ
154 virtual ~wxMenuBar();
155
156 // menubar construction
3839f37e
VZ
157 bool Append( wxMenuInfo *info ) { return Append( info->GetMenu() , info->GetTitle() ); }
158 const wxMenuInfoList& GetMenuInfos() const;
6c7a1f82 159
a8cfd0cb
VZ
160 virtual bool Append( wxMenu *menu, const wxString &title );
161 virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title);
162 virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title);
163 virtual wxMenu *Remove(size_t pos);
c626a8b7 164
a8cfd0cb 165 virtual void EnableTop( size_t pos, bool flag );
52af3158
JS
166 virtual void SetMenuLabel( size_t pos, const wxString& label );
167 virtual wxString GetMenuLabel( size_t pos ) const;
c626a8b7 168
a8cfd0cb
VZ
169 // implementation from now on
170 WXHMENU Create();
1e6feb95
VZ
171 virtual void Detach();
172 virtual void Attach(wxFrame *frame);
c2dcfdef 173
b3900fb5 174#if defined(__WXWINCE__) && wxUSE_TOOLBAR
39d2f9a7
JS
175 // Under WinCE, a menubar is owned by the frame's toolbar
176 void SetToolBar(wxToolBar* toolBar) { m_toolBar = toolBar; }
177 wxToolBar* GetToolBar() const { return m_toolBar; }
178#endif
179
b3900fb5 180#ifdef WINCE_WITH_COMMANDBAR
45f27284 181 WXHWND GetCommandBar() const { return m_commandBar; }
a9928e9d 182 bool AddAdornments(long style);
45f27284
JS
183#endif
184
d427503c 185#if wxUSE_ACCEL
3103e8a9 186 // update the accel table (must be called after adding/deleting a menu)
717a57c2 187 void RebuildAccelTable();
d427503c
VZ
188#endif // wxUSE_ACCEL
189
c2dcfdef
VZ
190 // get the menu handle
191 WXHMENU GetHMenu() const { return m_hMenu; }
192
c2dcfdef
VZ
193 // if the menubar is modified, the display is not updated automatically,
194 // call this function to update it (m_menuBarFrame should be !NULL)
195 void Refresh();
196
b85b77ae 197 // To avoid compile warning
39428534 198 void Refresh( bool eraseBackground,
b85b77ae
JS
199 const wxRect *rect = (const wxRect *) NULL ) { wxWindow::Refresh(eraseBackground, rect); }
200
fbb90f7f
PA
201protected:
202 // common part of all ctors
203 void Init();
204
3839f37e 205 wxArrayString m_titles;
6c7a1f82 206 wxMenuInfoList m_menuInfos;
a8cfd0cb 207
c2dcfdef 208 WXHMENU m_hMenu;
42e69d6b 209
b2c5f143 210 // Return the MSW position for a wxMenu which is sometimes different from
77ffb593 211 // the wxWidgets position.
b2c5f143 212 int MSWPositionForWxMenu(wxMenu *menu, int wxpos);
a8cfd0cb 213
39d2f9a7
JS
214#if defined(__WXWINCE__) && wxUSE_TOOLBAR
215 wxToolBar* m_toolBar;
216#endif
b3900fb5
RR
217
218#ifdef WINCE_WITH_COMMANDBAR
a96b4743 219 WXHWND m_commandBar;
a9928e9d 220 bool m_adornmentsAdded;
a96b4743 221#endif
39d2f9a7 222
a8cfd0cb 223private:
fc7a2a60 224 DECLARE_DYNAMIC_CLASS_NO_COPY(wxMenuBar)
2bda0e17
KB
225};
226
bbcdf8bc 227#endif // _WX_MENU_H_