1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk1/menu.h
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
13 //-----------------------------------------------------------------------------
15 //-----------------------------------------------------------------------------
17 class WXDLLIMPEXP_CORE wxMenuBar
: public wxMenuBarBase
22 wxMenuBar(long style
);
23 wxMenuBar(size_t n
, wxMenu
*menus
[], const wxString titles
[], long style
= 0);
26 // implement base class (pure) virtuals
27 virtual bool Append( wxMenu
*menu
, const wxString
&title
);
28 virtual bool Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
);
29 virtual wxMenu
*Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
);
30 virtual wxMenu
*Remove(size_t pos
);
32 virtual int FindMenuItem(const wxString
& menuString
,
33 const wxString
& itemString
) const;
34 virtual wxMenuItem
* FindItem( int id
, wxMenu
**menu
= NULL
) const;
36 virtual void EnableTop( size_t pos
, bool flag
);
37 virtual void SetMenuLabel( size_t pos
, const wxString
& label
);
38 virtual wxString
GetMenuLabel( size_t pos
) const;
40 // common part of Append and Insert
41 bool GtkAppend(wxMenu
*menu
, const wxString
& title
, int pos
=-1);
43 virtual void Attach(wxFrame
*frame
);
44 virtual void Detach();
46 GtkAccelGroup
*m_accel
;
51 void Init(size_t n
, wxMenu
*menus
[], const wxString titles
[], long style
);
53 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
56 //-----------------------------------------------------------------------------
58 //-----------------------------------------------------------------------------
60 class WXDLLIMPEXP_CORE wxMenu
: public wxMenuBase
64 wxMenu(const wxString
& title
, long style
= 0)
65 : wxMenuBase(title
, style
) { Init(); }
67 wxMenu(long style
= 0) : wxMenuBase(style
) { Init(); }
71 // implement base class virtuals
72 virtual wxMenuItem
* DoAppend(wxMenuItem
*item
);
73 virtual wxMenuItem
* DoInsert(size_t pos
, wxMenuItem
*item
);
74 virtual wxMenuItem
* DoRemove(wxMenuItem
*item
);
76 // TODO: virtual void SetTitle(const wxString& title);
79 int FindMenuIdByMenuItem( GtkWidget
*menuItem
) const;
81 // implementation GTK only
82 GtkWidget
*m_menu
; // GtkMenu
84 GtkAccelGroup
*m_accel
;
87 // common code for all constructors:
90 // common part of Append (if pos == -1) and Insert
91 bool GtkAppend(wxMenuItem
*item
, int pos
=-1);
93 GtkWidget
*m_prevRadio
;
95 DECLARE_DYNAMIC_CLASS(wxMenu
)