]> git.saurik.com Git - wxWidgets.git/blame - include/wx/mac/menu.h
Removed Vadim's surplus code in clipboard.
[wxWidgets.git] / include / wx / mac / menu.h
CommitLineData
0dbd6262
SC
1/////////////////////////////////////////////////////////////////////////////
2// Name: menu.h
3// Purpose: wxMenu, wxMenuBar classes
4// Author: AUTHOR
5// Modified by:
6// Created: ??/??/98
7// RCS-ID: $Id$
8// Copyright: (c) AUTHOR
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_MENU_H_
13#define _WX_MENU_H_
14
15#ifdef __GNUG__
16#pragma interface "menu.h"
17#endif
18
19#include "wx/defs.h"
20#include "wx/event.h"
21
22class WXDLLEXPORT wxMenuItem;
23class WXDLLEXPORT wxMenuBar;
24class WXDLLEXPORT wxMenu;
25
26WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
27
28// ----------------------------------------------------------------------------
29// Menu
30// ----------------------------------------------------------------------------
31class WXDLLEXPORT wxMenu: public wxEvtHandler
32{
33 DECLARE_DYNAMIC_CLASS(wxMenu)
34
35public:
36 // ctor & dtor
37 wxMenu(const wxString& title = wxEmptyString, const wxFunction func = NULL);
38 ~wxMenu();
39
40 // construct menu
41 // append items to the menu
42 // separator line
43 void AppendSeparator();
44 // normal item
45 void Append(int id, const wxString& Label, const wxString& helpString = wxEmptyString,
46 bool checkable = FALSE);
47 // a submenu
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
53 void Break();
54 // delete an item
55 void Delete(int id);
56
57 // menu item control
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); };
64
65 // Client data
66 inline void SetClientData(void* clientData) { m_clientData = clientData; }
67 inline void* GetClientData() const { return m_clientData; }
68
69 // item properties
70 // title
71 void SetTitle(const wxString& label);
72 const wxString GetTitle() const;
73 // label
74 void SetLabel(int id, const wxString& label);
75 wxString GetLabel(int id) const;
76 // help string
77 virtual void SetHelpString(int id, const wxString& helpString);
78 virtual wxString GetHelpString(int id) const ;
79
80 // find item
81 // Finds the item id matching the given string, -1 if not found.
82 virtual int FindItem(const wxString& itemString) const ;
83 // Find wxMenuItem by ID, and item's menu too if itemMenu is !NULL.
84 wxMenuItem *FindItemForId(int itemId, wxMenu **itemMenu = NULL) const;
85
86 void ProcessCommand(wxCommandEvent& event);
87 inline void Callback(const wxFunction func) { m_callback = func; }
88
89 virtual void SetParent(wxEvtHandler *parent) { m_parent = parent; }
90 inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
91 inline wxEvtHandler *GetEventHandler() { return m_eventHandler; }
92
93 inline wxList& GetItems() const { return (wxList&) m_menuItems; }
94
519cb848
SC
95 void SetInvokingWindow(wxWindow *pWin) { m_pInvokingWindow = pWin; }
96 wxWindow * GetInvokingWindow() const { return m_pInvokingWindow; }
97
98 bool MacMenuSelect(wxEvtHandler* handler, long when , int macMenuId, int macMenuItemNum) ;
0dbd6262
SC
99public:
100 wxFunction m_callback;
101
102 int m_noItems;
103 wxString m_title;
104 wxMenuBar * m_menuBar;
105 wxList m_menuItems;
106 wxEvtHandler * m_parent;
107 wxEvtHandler * m_eventHandler;
519cb848 108 wxWindow* m_pInvokingWindow;
0dbd6262 109 void* m_clientData;
519cb848
SC
110
111 MenuHandle m_macMenuHandle;
112 short m_macMenuId;
113 bool m_macMenuEnabled ;
114
115 // void MacSetTitle(const wxString& title);
116 int MacGetIndexFromId( int id ) ;
117 int MacGetIndexFromItem( wxMenuItem *pItem ) ;
118 void MacEnableMenu( bool bDoEnable ) ;
119
120 static short s_macNextMenuId ;
121
122protected:
0dbd6262
SC
123};
124
125// ----------------------------------------------------------------------------
126// Menu Bar (a la Windows)
127// ----------------------------------------------------------------------------
128class WXDLLEXPORT wxFrame;
129class WXDLLEXPORT wxMenuBar: public wxEvtHandler
130{
131 DECLARE_DYNAMIC_CLASS(wxMenuBar)
132
133 wxMenuBar();
134 wxMenuBar(int n, wxMenu *menus[], const wxString titles[]);
135 ~wxMenuBar();
136
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);
154
155 virtual void SetHelpString(int Id, const wxString& helpString);
156 virtual wxString GetHelpString(int Id) const ;
157
158 virtual int FindMenuItem(const wxString& menuString, const wxString& itemString) const ;
159
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 ;
163
164 inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
165 inline wxEvtHandler *GetEventHandler() { return m_eventHandler; }
166
167 inline int GetMenuCount() const { return m_menuCount; }
168 inline wxMenu* GetMenu(int i) const { return m_menus[i]; }
169
519cb848
SC
170 void MacInstallMenuBar() ;
171 void MacMenuSelect(wxEvtHandler* handler, long when , int macMenuId, int macMenuItemNum) ;
172
0dbd6262
SC
173 public:
174 wxEvtHandler * m_eventHandler;
175 int m_menuCount;
176 wxMenu ** m_menus;
177 wxString * m_titles;
178 wxFrame * m_menuBarFrame;
519cb848
SC
179
180 static wxMenuBar* s_macInstalledMenuBar ;
0dbd6262
SC
181};
182
183#endif // _WX_MENU_H_