]> git.saurik.com Git - wxWidgets.git/blob - include/wx/stubs/menu.h
some minor changes in wxLogWindow
[wxWidgets.git] / include / wx / stubs / menu.h
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
22 class WXDLLEXPORT wxMenuItem;
23 class WXDLLEXPORT wxMenuBar;
24 class WXDLLEXPORT wxMenu;
25
26 WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
27
28 // ----------------------------------------------------------------------------
29 // Menu
30 // ----------------------------------------------------------------------------
31 class WXDLLEXPORT wxMenu: public wxEvtHandler
32 {
33 DECLARE_DYNAMIC_CLASS(wxMenu)
34
35 public:
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); /* If it's a submenu, menu is not destroyed. VZ: why? */
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 // item properties
66 // title
67 void SetTitle(const wxString& label);
68 const wxString& GetTitle() const;
69 // label
70 void SetLabel(int id, const wxString& label);
71 wxString GetLabel(int id) const;
72 // help string
73 virtual void SetHelpString(int id, const wxString& helpString);
74 virtual wxString GetHelpString(int id) const ;
75
76 // find item
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;
81
82 void ProcessCommand(wxCommandEvent& event);
83 inline void Callback(const wxFunction func) { m_callback = func; }
84
85 virtual void SetParent(wxEvtHandler *parent) { m_parent = parent; }
86 inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
87 inline wxEvtHandler *GetEventHandler() { return m_eventHandler; }
88
89 inline wxList& GetItems() const { return (wxList&) m_menuItems; }
90
91 public:
92 wxFunction m_callback;
93
94 int m_noItems;
95 wxString m_title;
96 wxMenu * m_topLevelMenu;
97 wxMenuBar * m_menuBar;
98 wxList m_menuItems;
99 wxEvtHandler * m_parent;
100 wxEvtHandler * m_eventHandler;
101 };
102
103 // ----------------------------------------------------------------------------
104 // Menu Bar (a la Windows)
105 // ----------------------------------------------------------------------------
106 class WXDLLEXPORT wxFrame;
107 class WXDLLEXPORT wxMenuBar: public wxEvtHandler
108 {
109 DECLARE_DYNAMIC_CLASS(wxMenuBar)
110
111 wxMenuBar();
112 wxMenuBar(int n, wxMenu *menus[], const wxString titles[]);
113 ~wxMenuBar();
114
115 void Append(wxMenu *menu, const wxString& title);
116 // Must only be used AFTER menu has been attached to frame,
117 // otherwise use individual menus to enable/disable items
118 void Enable(int Id, bool Flag);
119 bool Enabled(int Id) const ;
120 inline bool IsEnabled(int Id) const { return Enabled(Id); };
121 void EnableTop(int pos, bool Flag);
122 void Check(int id, bool Flag);
123 bool Checked(int id) const ;
124 inline bool IsChecked(int Id) const { return Checked(Id); };
125 void SetLabel(int id, const wxString& label) ;
126 wxString GetLabel(int id) const ;
127 void SetLabelTop(int pos, const wxString& label) ;
128 wxString GetLabelTop(int pos) const ;
129 virtual void Delete(wxMenu *menu, int index = 0); /* Menu not destroyed */
130 virtual bool OnAppend(wxMenu *menu, const char *title);
131 virtual bool OnDelete(wxMenu *menu, int index);
132
133 virtual void SetHelpString(int Id, const wxString& helpString);
134 virtual wxString GetHelpString(int Id) const ;
135
136 virtual int FindMenuItem(const wxString& menuString, const wxString& itemString) const ;
137
138 // Find wxMenuItem for item ID, and return item's
139 // menu too if itemMenu is non-NULL.
140 wxMenuItem *FindItemForId(int itemId, wxMenu **menuForItem = NULL) const ;
141
142 inline void SetEventHandler(wxEvtHandler *handler) { m_eventHandler = handler; }
143 inline wxEvtHandler *GetEventHandler() { return m_eventHandler; }
144
145 inline int GetMenuCount() const { return m_menuCount; }
146 inline wxMenu* GetMenu(int i) const { return m_menus[i]; }
147
148 public:
149 wxEvtHandler * m_eventHandler;
150 int m_menuCount;
151 wxMenu ** m_menus;
152 wxString * m_titles;
153 wxFrame * m_menuBarFrame;
154 /* TODO: data that represents the actual menubar when created.
155 */
156 };
157
158 #endif // _WX_MENU_H_