]> git.saurik.com Git - wxWidgets.git/blame - include/wx/osx/menu.h
Use wxObjCID instead of "struct objc_object*" to fix clang build.
[wxWidgets.git] / include / wx / osx / menu.h
CommitLineData
6762286d 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/osx/menu.h
6762286d
SC
3// Purpose: wxMenu, wxMenuBar classes
4// Author: Stefan Csomor
5// Modified by:
6// Created: 1998-01-01
7// RCS-ID: $Id$
8// Copyright: (c) Stefan Csomor
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MENU_H_
13#define _WX_MENU_H_
14
15class WXDLLIMPEXP_FWD_CORE wxFrame;
16
17#include "wx/arrstr.h"
18
19// ----------------------------------------------------------------------------
20// Menu
21// ----------------------------------------------------------------------------
22
23class WXDLLIMPEXP_FWD_CORE wxMenuImpl ;
24
25class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
26{
27public:
28 // ctors & dtor
29 wxMenu(const wxString& title, long style = 0)
30 : wxMenuBase(title, style) { Init(); }
31
32 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
33
34 virtual ~wxMenu();
35
36 virtual void Attach(wxMenuBarBase *menubar) ;
37
38 virtual void Break();
39
40 virtual void SetTitle(const wxString& title);
41
42 bool ProcessCommand(wxCommandEvent& event);
43
6762286d
SC
44 // get the menu handle
45 WXHMENU GetHMenu() const ;
46
47 // implementation only from now on
48 // -------------------------------
49
50 bool HandleCommandUpdateStatus( wxMenuItem* menuItem, wxWindow* senderWindow = NULL);
51 bool HandleCommandProcess( wxMenuItem* menuItem, wxWindow* senderWindow = NULL);
52 void HandleMenuItemHighlighted( wxMenuItem* menuItem );
53 void HandleMenuOpened();
54 void HandleMenuClosed();
55
56 wxMenuImpl* GetPeer() { return m_peer; }
03647350 57
6762286d
SC
58 // make sure we can veto
59 void SetAllowRearrange( bool allow );
60 bool AllowRearrange() const { return m_allowRearrange; }
03647350 61
6762286d
SC
62 // if a menu is used purely for internal implementation reasons (eg wxChoice)
63 // we don't want native menu events being triggered
64 void SetNoEventsMode( bool noEvents );
65 bool GetNoEventsMode() const { return m_noEventsMode; }
66protected:
67 // hide special menu items like exit, preferences etc
03647350 68 // that are expected in the app menu
6762286d 69 void DoRearrange() ;
03647350 70
6762286d
SC
71 bool DoHandleMenuEvent( wxEvent& evt );
72 virtual wxMenuItem* DoAppend(wxMenuItem *item);
73 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
74 virtual wxMenuItem* DoRemove(wxMenuItem *item);
75
76private:
77 // common part of all ctors
78 void Init();
79
80 // common part of Append/Insert (behaves as Append is pos == (size_t)-1)
81 bool DoInsertOrAppend(wxMenuItem *item, size_t pos = (size_t)-1);
82
83 // terminate the current radio group, if any
84 void EndRadioGroup();
85
7f3f059a
VZ
86 // Common part of HandleMenu{Opened,Closed}().
87 void DoHandleMenuOpenedOrClosed(wxEventType evtType);
88
89
6762286d
SC
90 // if TRUE, insert a breal before appending the next item
91 bool m_doBreak;
92
93 // in this menu rearranging of menu items (esp hiding) is allowed
94 bool m_allowRearrange;
03647350 95
6762286d
SC
96 // don't trigger native events
97 bool m_noEventsMode;
03647350 98
6762286d
SC
99 // the position of the first item in the current radio group or -1
100 int m_startRadioGroup;
03647350 101
6762286d
SC
102 wxMenuImpl* m_peer;
103
104 DECLARE_DYNAMIC_CLASS(wxMenu)
105};
106
107#if wxOSX_USE_COCOA_OR_CARBON
108
109// the iphone only has popup-menus
110
111// ----------------------------------------------------------------------------
112// Menu Bar (a la Windows)
113// ----------------------------------------------------------------------------
114
115class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
116{
117public:
118 // ctors & dtor
119 // default constructor
120 wxMenuBar();
121 // unused under MSW
122 wxMenuBar(long style);
123 // menubar takes ownership of the menus arrays but copies the titles
124 wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0);
125 virtual ~wxMenuBar();
126
127 // menubar construction
128 virtual bool Append( wxMenu *menu, const wxString &title );
129 virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title);
130 virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title);
131 virtual wxMenu *Remove(size_t pos);
132
6762286d 133 virtual void EnableTop( size_t pos, bool flag );
e4a23857 134 virtual bool IsEnabledTop(size_t pos) const;
6762286d
SC
135 virtual void SetMenuLabel( size_t pos, const wxString& label );
136 virtual wxString GetMenuLabel( size_t pos ) const;
8e6efd1f 137 virtual bool Enable( bool enable = true );
6762286d
SC
138 // for virtual function hiding
139 virtual void Enable( int itemid, bool enable )
140 {
141 wxMenuBarBase::Enable( itemid, enable );
142 }
143
144 // implementation from now on
6762286d
SC
145 void Detach();
146
147 // returns TRUE if we're attached to a frame
148 bool IsAttached() const { return m_menuBarFrame != NULL; }
149 // get the frame we live in
150 wxFrame *GetFrame() const { return m_menuBarFrame; }
151 // attach to a frame
152 void Attach(wxFrame *frame);
153
6762286d
SC
154 // if the menubar is modified, the display is not updated automatically,
155 // call this function to update it (m_menuBarFrame should be !NULL)
8e6efd1f 156 void Refresh(bool eraseBackground = true, const wxRect *rect = NULL);
6762286d
SC
157
158 static void SetAutoWindowMenu( bool enable ) { s_macAutoWindowMenu = enable ; }
159 static bool GetAutoWindowMenu() { return s_macAutoWindowMenu ; }
160
161 void MacInstallMenuBar() ;
162 static wxMenuBar* MacGetInstalledMenuBar() { return s_macInstalledMenuBar ; }
163 static void MacSetCommonMenuBar(wxMenuBar* menubar) { s_macCommonMenuBar=menubar; }
164 static wxMenuBar* MacGetCommonMenuBar() { return s_macCommonMenuBar; }
165
166
167 static WXHMENU MacGetWindowMenuHMenu() { return s_macWindowMenuHandle ; }
168protected:
169 // common part of all ctors
170 void Init();
6762286d 171
6762286d
SC
172 static bool s_macAutoWindowMenu ;
173 static WXHMENU s_macWindowMenuHandle ;
174
175private:
176 static wxMenuBar* s_macInstalledMenuBar ;
177 static wxMenuBar* s_macCommonMenuBar ;
03647350 178
6762286d 179 wxMenu* m_rootMenu;
1ea5ef01 180 wxMenu* m_appleMenu;
6762286d
SC
181
182 DECLARE_DYNAMIC_CLASS(wxMenuBar)
183};
184
5c6eb3a8 185#endif
6762286d
SC
186
187#endif // _WX_MENU_H_