]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/menu.h
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"
26 WXDLLEXPORT_DATA(extern const char*) wxEmptyString
;
28 // ----------------------------------------------------------------------------
30 // ----------------------------------------------------------------------------
31 class WXDLLEXPORT wxMenu
: public wxEvtHandler
33 DECLARE_DYNAMIC_CLASS(wxMenu
)
37 wxMenu(const wxString
& title
= wxEmptyString
, const wxFunction func
= NULL
);
41 // append items to the menu
43 void AppendSeparator();
45 void Append(int id
, const wxString
& Label
, const wxString
& helpString
= wxEmptyString
,
46 bool checkable
= FALSE
);
48 void Append(int id
, const wxString
& Label
, wxMenu
*SubMenu
,
49 const wxString
& helpString
= wxEmptyString
);
50 // the most generic form (create wxMenuItem first and use it's functions)
51 void Append(wxMenuItem
*pItem
);
52 // insert a break in the menu
55 void Delete(int id
); /* If it's a submenu, menu is not destroyed. VZ: why? */
58 void Enable(int id
, bool Flag
);
59 bool Enabled(int id
) const;
60 inline bool IsEnabled(int id
) const { return Enabled(id
); };
61 void Check(int id
, bool Flag
);
62 bool Checked(int id
) const;
63 inline bool IsChecked(int id
) const { return IsChecked(id
); };
67 void SetTitle(const wxString
& label
);
68 const wxString
& GetTitle() const;
70 void SetLabel(int id
, const wxString
& label
);
71 wxString
GetLabel(int id
) const;
73 virtual void SetHelpString(int id
, const wxString
& helpString
);
74 virtual wxString
GetHelpString(int id
) const ;
77 // Finds the item id matching the given string, NOT_FOUND if not found.
78 virtual int FindItem(const wxString
& itemString
) const ;
79 // Find wxMenuItem by ID, and item's menu too if itemMenu is !NULL.
80 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**itemMenu
= NULL
) const;
82 void ProcessCommand(wxCommandEvent
& event
);
83 inline void Callback(const wxFunction func
) { m_callback
= func
; }
85 virtual void SetParent(wxEvtHandler
*parent
) { m_parent
= parent
; }
86 inline void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
87 inline wxEvtHandler
*GetEventHandler(void) { return m_eventHandler
; }
89 inline wxList
& GetItems() const { return (wxList
&) m_menuItems
; }
92 bool MSWCommand(WXUINT param
, WXWORD id
);
94 void SetInvokingWindow(wxWindow
*pWin
) { m_pInvokingWindow
= pWin
; }
95 wxWindow
*GetInvokingWindow() const { return m_pInvokingWindow
; }
97 // semi-private accessors
98 // get the window which contains this menu
99 wxWindow
*GetWindow() const;
100 // get the menu handle
101 WXHMENU
GetHMenu() const;
107 // This is used when m_hMenu is NULL because we don't want to
108 // delete it in ~wxMenu (it's been added to a parent menu).
109 // But we'll still need the handle for other purposes.
110 // Might be better to have a flag saying whether it's deleteable or not.
111 WXHMENU m_savehMenu
; // Used for Enable() on popup
113 wxFunction m_callback
;
117 wxMenu
* m_topLevelMenu
;
118 wxMenuBar
* m_menuBar
;
120 wxEvtHandler
* m_parent
;
121 wxEvtHandler
* m_eventHandler
;
122 wxWindow
*m_pInvokingWindow
;
125 // ----------------------------------------------------------------------------
126 // Menu Bar (a la Windows)
127 // ----------------------------------------------------------------------------
129 class WXDLLEXPORT wxMenuBar
: public wxEvtHandler
131 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
134 wxMenuBar(int n
, wxMenu
*menus
[], const wxString titles
[]);
137 void Append(wxMenu
*menu
, const wxString
& title
);
138 // Must only be used AFTER menu has been attached to frame,
139 // otherwise use individual menus to enable/disable items
140 void Enable(int Id
, bool Flag
);
141 bool Enabled(int Id
) const ;
142 inline bool IsEnabled(int Id
) const { return Enabled(Id
); };
143 void EnableTop(int pos
, bool Flag
);
144 void Check(int id
, bool Flag
);
145 bool Checked(int id
) const ;
146 inline bool IsChecked(int Id
) const { return Checked(Id
); };
147 void SetLabel(int id
, const wxString
& label
) ;
148 wxString
GetLabel(int id
) const ;
149 void SetLabelTop(int pos
, const wxString
& label
) ;
150 wxString
GetLabelTop(int pos
) const ;
151 virtual void Delete(wxMenu
*menu
, int index
= 0); /* Menu not destroyed */
152 virtual bool OnAppend(wxMenu
*menu
, const char *title
);
153 virtual bool OnDelete(wxMenu
*menu
, int index
);
155 virtual void SetHelpString(int Id
, const wxString
& helpString
);
156 virtual wxString
GetHelpString(int Id
) const ;
158 virtual int FindMenuItem(const wxString
& menuString
, const wxString
& itemString
) const ;
160 // Find wxMenuItem for item ID, and return item's
161 // menu too if itemMenu is non-NULL.
162 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**menuForItem
= NULL
) const ;
164 inline void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
165 inline wxEvtHandler
*GetEventHandler(void) { return m_eventHandler
; }
167 inline int GetMenuCount() const { return m_menuCount
; }
168 inline wxMenu
* GetMenu(int i
) const { return m_menus
[i
]; }
171 wxEvtHandler
* m_eventHandler
;
175 wxFrame
* m_menuBarFrame
;