]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/menu.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
19 #include "wx/object.h"
21 #include "wx/window.h"
22 #include "wx/menuitem.h"
24 //-----------------------------------------------------------------------------
26 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 #define ID_SEPARATOR (-1)
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
42 class wxMenuBar
: public wxWindow
44 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
49 wxMenuBar(long style
);
50 wxMenuBar(int n
, wxMenu
*menus
[], const wxString titles
[]);
53 // menubar construction
54 void Append( wxMenu
*menu
, const wxString
&title
);
57 // by menu and item names, returns wxNOT_FOUND if not found
58 virtual int FindMenuItem(const wxString
& menuString
,
59 const wxString
& itemString
) const;
60 // returns NULL if not found
61 wxMenuItem
* FindItem( int id
) const;
62 // returns NULL if not found, fills menuForItem if !NULL
63 wxMenuItem
*FindItemForId(int itemId
, wxMenu
**menuForItem
= NULL
) const;
66 void Check( int id
, bool check
);
67 bool IsChecked( int id
) const;
68 void Enable( int id
, bool enable
);
69 bool IsEnabled( int id
) const;
71 void SetLabel( int id
, const wxString
&label
);
72 wxString
GetLabel( int id
) const;
73 wxString
GetLabel() const { return wxWindow::GetLabel(); }
75 void EnableTop( int pos
, bool flag
);
76 void SetLabelTop( int pos
, const wxString
& label
);
77 wxString
GetLabelTop( int pos
) const;
79 virtual void SetHelpString( int id
, const wxString
& helpString
);
80 virtual wxString
GetHelpString( int id
) const;
82 int GetMenuCount() const { return m_menus
.Number(); }
83 wxMenu
*GetMenu( int n
) const { return (wxMenu
*)m_menus
.Nth(n
)->Data(); }
85 #ifdef WXWIN_COMPATIBILITY
86 // compatibility: these functions are deprecated
87 bool Enabled(int id
) const { return IsEnabled(id
); }
88 bool Checked(int id
) const { return IsChecked(id
); }
90 wxMenuItem
* FindMenuItemById( int id
) const { return FindItem(id
); }
91 #endif // WXWIN_COMPATIBILITY
93 // implementation only
94 wxList
& GetMenus() { return m_menus
; }
96 GtkAccelGroup
*m_accel
;
97 GtkItemFactory
*m_factory
;
102 //-----------------------------------------------------------------------------
104 //-----------------------------------------------------------------------------
106 class wxMenu
: public wxEvtHandler
108 DECLARE_DYNAMIC_CLASS(wxMenu
)
111 wxMenu( const wxString
& title
= wxEmptyString
,
112 const wxFunction func
= (wxFunction
) NULL
);
117 void SetTitle(const wxString
& label
);
118 const wxString
GetTitle() const;
120 void AppendSeparator();
121 void Append(int id
, const wxString
&item
,
122 const wxString
&helpStr
= "", bool checkable
= FALSE
);
123 void Append(int id
, const wxString
&item
,
124 wxMenu
*subMenu
, const wxString
&helpStr
= "" );
125 void Append(wxMenuItem
*pItem
);
128 // find item by name/id
129 int FindItem( const wxString itemString
) const;
130 wxMenuItem
*FindItem( int id
) const;
132 // get/set item's state
133 void Enable( int id
, bool enable
);
134 bool IsEnabled( int id
) const;
135 void Check( int id
, bool check
);
136 bool IsChecked( int id
) const;
138 void SetLabel( int id
, const wxString
&label
);
139 wxString
GetLabel( int id
) const;
142 virtual void SetHelpString(int id
, const wxString
& helpString
);
143 virtual wxString
GetHelpString(int id
) const ;
146 wxList
& GetItems() { return m_items
; }
148 void SetEventHandler(wxEvtHandler
*handler
) { m_eventHandler
= handler
; }
149 wxEvtHandler
*GetEventHandler() { return m_eventHandler
; }
151 void SetClientData( void* clientData
) { m_clientData
= clientData
; }
152 void* GetClientData() const { return m_clientData
; }
154 // Updates the UI for a menu and all submenus recursively.
155 // source is the object that has the update event handlers
156 // defined for it. If NULL, the menu or associated window
158 void UpdateUI(wxEvtHandler
* source
= (wxEvtHandler
*) NULL
);
160 wxMenuItem
*FindItemForId( int id
) const { return FindItem( id
); }
162 #ifdef WXWIN_COMPATIBILITY
163 wxFunction
GetCallback() const { return m_callback
; }
164 void Callback(const wxFunction func
) { m_callback
= func
; }
166 // compatibility: these functions are deprecated
167 bool Enabled(int id
) const { return IsEnabled(id
); }
168 bool Checked(int id
) const { return IsChecked(id
); }
169 #endif // WXWIN_COMPATIBILITY
172 int FindMenuIdByMenuItem( GtkWidget
*menuItem
) const;
173 void SetInvokingWindow( wxWindow
*win
);
174 wxWindow
*GetInvokingWindow();
176 // implementation GTK only
177 GtkWidget
*m_menu
; // GtkMenu
179 GtkAccelGroup
*m_accel
;
180 GtkItemFactory
*m_factory
;
186 wxWindow
*m_invokingWindow
;
187 wxFunction m_callback
;
188 wxEvtHandler
*m_eventHandler
;
192 #endif // __GTKMENUH__