]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
3dfac970 | 2 | // Name: wx/gtk/menu.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 RR |
5 | // Id: $Id$ |
6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart | |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
16487a6f PC |
10 | #ifndef _WX_GTKMENU_H_ |
11 | #define _WX_GTKMENU_H_ | |
c801d85f | 12 | |
c801d85f KB |
13 | //----------------------------------------------------------------------------- |
14 | // wxMenuBar | |
15 | //----------------------------------------------------------------------------- | |
16 | ||
20123d49 | 17 | class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase |
c801d85f | 18 | { |
83885a39 | 19 | public: |
c626a8b7 VZ |
20 | // ctors |
21 | wxMenuBar(); | |
22 | wxMenuBar(long style); | |
294ea16d | 23 | wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0); |
c626a8b7 | 24 | |
3dfac970 VZ |
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); | |
c626a8b7 | 30 | |
c626a8b7 VZ |
31 | virtual int FindMenuItem(const wxString& menuString, |
32 | const wxString& itemString) const; | |
3dfac970 | 33 | virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const; |
c626a8b7 | 34 | |
3dfac970 | 35 | virtual void EnableTop( size_t pos, bool flag ); |
52af3158 JS |
36 | virtual void SetMenuLabel( size_t pos, const wxString& label ); |
37 | virtual wxString GetMenuLabel( size_t pos ) const; | |
b908d224 | 38 | |
978af864 VZ |
39 | void SetLayoutDirection(wxLayoutDirection dir); |
40 | wxLayoutDirection GetLayoutDirection() const; | |
41 | ||
e8375af8 VZ |
42 | // wxMenuBar is not a top level window but it still doesn't need a parent |
43 | // window | |
44 | virtual bool GTKNeedsParent() const { return false; } | |
45 | ||
6abf7b63 VZ |
46 | virtual void Attach(wxFrame *frame); |
47 | virtual void Detach(); | |
978af864 | 48 | |
3dfac970 | 49 | // implementation only from now on |
426d19f1 | 50 | GtkWidget *m_menubar; // Public for hildon support |
c626a8b7 | 51 | |
16487a6f | 52 | private: |
f03ec224 | 53 | // common part of Append and Insert |
49826dab | 54 | bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1); |
f03ec224 | 55 | |
294ea16d VZ |
56 | void Init(size_t n, wxMenu *menus[], const wxString titles[], long style); |
57 | ||
3dfac970 | 58 | DECLARE_DYNAMIC_CLASS(wxMenuBar) |
c801d85f KB |
59 | }; |
60 | ||
61 | //----------------------------------------------------------------------------- | |
62 | // wxMenu | |
63 | //----------------------------------------------------------------------------- | |
64 | ||
20123d49 | 65 | class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase |
c801d85f | 66 | { |
83885a39 | 67 | public: |
717a57c2 VZ |
68 | // ctors & dtor |
69 | wxMenu(const wxString& title, long style = 0) | |
70 | : wxMenuBase(title, style) { Init(); } | |
83885a39 | 71 | |
717a57c2 | 72 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } |
c626a8b7 | 73 | |
717a57c2 | 74 | virtual ~wxMenu(); |
c626a8b7 | 75 | |
978af864 | 76 | void Attach(wxMenuBarBase *menubar); |
1b88201f | 77 | |
978af864 VZ |
78 | void SetLayoutDirection(const wxLayoutDirection dir); |
79 | wxLayoutDirection GetLayoutDirection() const; | |
80 | ||
717a57c2 | 81 | // TODO: virtual void SetTitle(const wxString& title); |
33961d59 | 82 | |
1e133b7d | 83 | // implementation GTK only |
034be888 RR |
84 | GtkWidget *m_menu; // GtkMenu |
85 | GtkWidget *m_owner; | |
034be888 | 86 | GtkAccelGroup *m_accel; |
3ed946f2 | 87 | bool m_popupShown; |
c626a8b7 | 88 | |
6f02a879 VZ |
89 | protected: |
90 | virtual wxMenuItem* DoAppend(wxMenuItem *item); | |
91 | virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item); | |
92 | virtual wxMenuItem* DoRemove(wxMenuItem *item); | |
93 | ||
b908d224 | 94 | private: |
717a57c2 VZ |
95 | // common code for all constructors: |
96 | void Init(); | |
97 | ||
49826dab RD |
98 | // common part of Append (if pos == -1) and Insert |
99 | bool GtkAppend(wxMenuItem *item, int pos=-1); | |
32db328c | 100 | |
1b88201f | 101 | GtkWidget *m_prevRadio; |
d65c269b | 102 | |
717a57c2 | 103 | DECLARE_DYNAMIC_CLASS(wxMenu) |
c801d85f KB |
104 | }; |
105 | ||
1b88201f | 106 | #endif |
16487a6f | 107 | // _WX_GTKMENU_H_ |