]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
3dfac970 | 2 | // Name: wx/gtk/menu.h |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
58614078 | 5 | // Copyright: (c) 1998 Robert Roebling, Julian Smart |
65571936 | 6 | // Licence: wxWindows licence |
c801d85f KB |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
16487a6f PC |
9 | #ifndef _WX_GTKMENU_H_ |
10 | #define _WX_GTKMENU_H_ | |
c801d85f | 11 | |
c801d85f KB |
12 | //----------------------------------------------------------------------------- |
13 | // wxMenuBar | |
14 | //----------------------------------------------------------------------------- | |
15 | ||
20123d49 | 16 | class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase |
c801d85f | 17 | { |
83885a39 | 18 | public: |
c626a8b7 VZ |
19 | // ctors |
20 | wxMenuBar(); | |
21 | wxMenuBar(long style); | |
294ea16d | 22 | wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0); |
12a5cf13 | 23 | ~wxMenuBar(); |
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 ); |
e4a23857 | 36 | virtual bool IsEnabledTop(size_t pos) const; |
52af3158 JS |
37 | virtual void SetMenuLabel( size_t pos, const wxString& label ); |
38 | virtual wxString GetMenuLabel( size_t pos ) const; | |
b908d224 | 39 | |
978af864 VZ |
40 | void SetLayoutDirection(wxLayoutDirection dir); |
41 | wxLayoutDirection GetLayoutDirection() const; | |
42 | ||
6abf7b63 VZ |
43 | virtual void Attach(wxFrame *frame); |
44 | virtual void Detach(); | |
978af864 | 45 | |
16487a6f | 46 | private: |
f03ec224 | 47 | // common part of Append and Insert |
0f29501b | 48 | void GtkAppend(wxMenu* menu, const wxString& title, int pos = -1); |
f03ec224 | 49 | |
294ea16d VZ |
50 | void Init(size_t n, wxMenu *menus[], const wxString titles[], long style); |
51 | ||
bf487502 PC |
52 | // wxMenuBar is not a top level window but it still doesn't need a parent |
53 | // window | |
54 | virtual bool GTKNeedsParent() const { return false; } | |
55 | ||
f1a3ae7d PC |
56 | GtkWidget* m_menubar; |
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 | ||
7bc0ff86 | 81 | // Returns the title, with mnemonics translated to wx format |
96a3acb7 | 82 | wxString GetTitle() const; |
7bc0ff86 | 83 | |
69384772 VZ |
84 | // Sets the title, with mnemonics translated to gtk format |
85 | virtual void SetTitle(const wxString& title); | |
33961d59 | 86 | |
1e133b7d | 87 | // implementation GTK only |
034be888 RR |
88 | GtkWidget *m_menu; // GtkMenu |
89 | GtkWidget *m_owner; | |
034be888 | 90 | GtkAccelGroup *m_accel; |
3ed946f2 | 91 | bool m_popupShown; |
c626a8b7 | 92 | |
6f02a879 VZ |
93 | protected: |
94 | virtual wxMenuItem* DoAppend(wxMenuItem *item); | |
95 | virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item); | |
96 | virtual wxMenuItem* DoRemove(wxMenuItem *item); | |
97 | ||
b908d224 | 98 | private: |
717a57c2 VZ |
99 | // common code for all constructors: |
100 | void Init(); | |
101 | ||
49826dab | 102 | // common part of Append (if pos == -1) and Insert |
0f29501b | 103 | void GtkAppend(wxMenuItem* item, int pos = -1); |
32db328c | 104 | |
d65c269b | 105 | |
717a57c2 | 106 | DECLARE_DYNAMIC_CLASS(wxMenu) |
c801d85f KB |
107 | }; |
108 | ||
1b88201f | 109 | #endif |
16487a6f | 110 | // _WX_GTKMENU_H_ |