1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_GTKMENU_H_
11 #define _WX_GTKMENU_H_
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);
25 // implement base class (pure) virtuals
26 virtual bool Append( wxMenu
*menu
, const wxString
&title
);
27 virtual bool Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
);
28 virtual wxMenu
*Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
);
29 virtual wxMenu
*Remove(size_t pos
);
31 virtual int FindMenuItem(const wxString
& menuString
,
32 const wxString
& itemString
) const;
33 virtual wxMenuItem
* FindItem( int id
, wxMenu
**menu
= NULL
) const;
35 virtual void EnableTop( size_t pos
, bool flag
);
36 virtual void SetMenuLabel( size_t pos
, const wxString
& label
);
37 virtual wxString
GetMenuLabel( size_t pos
) const;
39 void SetLayoutDirection(wxLayoutDirection dir
);
40 wxLayoutDirection
GetLayoutDirection() const;
42 // wxMenuBar is not a top level window but it still doesn't need a parent
44 virtual bool GTKNeedsParent() const { return false; }
46 void Attach(wxFrame
*frame
);
48 // implementation only from now on
49 void SetInvokingWindow( wxWindow
*win
);
50 void UnsetInvokingWindow( wxWindow
*win
);
51 GtkWidget
*m_menubar
; // Public for hildon support
54 // common part of Append and Insert
55 bool GtkAppend(wxMenu
*menu
, const wxString
& title
, int pos
=-1);
57 wxWindow
*m_invokingWindow
;
59 void Init(size_t n
, wxMenu
*menus
[], const wxString titles
[], long style
);
61 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
64 //-----------------------------------------------------------------------------
66 //-----------------------------------------------------------------------------
68 class WXDLLIMPEXP_CORE wxMenu
: public wxMenuBase
72 wxMenu(const wxString
& title
, long style
= 0)
73 : wxMenuBase(title
, style
) { Init(); }
75 wxMenu(long style
= 0) : wxMenuBase(style
) { Init(); }
79 void Attach(wxMenuBarBase
*menubar
);
81 void SetLayoutDirection(const wxLayoutDirection dir
);
82 wxLayoutDirection
GetLayoutDirection() const;
84 // TODO: virtual void SetTitle(const wxString& title);
86 // implementation GTK only
87 GtkWidget
*m_menu
; // GtkMenu
89 GtkAccelGroup
*m_accel
;
93 virtual wxMenuItem
* DoAppend(wxMenuItem
*item
);
94 virtual wxMenuItem
* DoInsert(size_t pos
, wxMenuItem
*item
);
95 virtual wxMenuItem
* DoRemove(wxMenuItem
*item
);
98 // common code for all constructors:
101 // common part of Append (if pos == -1) and Insert
102 bool GtkAppend(wxMenuItem
*item
, int pos
=-1);
104 GtkWidget
*m_prevRadio
;
106 DECLARE_DYNAMIC_CLASS(wxMenu
)