]>
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); |
12a5cf13 | 24 | ~wxMenuBar(); |
c626a8b7 | 25 | |
3dfac970 VZ |
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); | |
c626a8b7 | 31 | |
c626a8b7 VZ |
32 | virtual int FindMenuItem(const wxString& menuString, |
33 | const wxString& itemString) const; | |
3dfac970 | 34 | virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const; |
c626a8b7 | 35 | |
3dfac970 | 36 | virtual void EnableTop( size_t pos, bool flag ); |
e4a23857 | 37 | virtual bool IsEnabledTop(size_t pos) const; |
52af3158 JS |
38 | virtual void SetMenuLabel( size_t pos, const wxString& label ); |
39 | virtual wxString GetMenuLabel( size_t pos ) const; | |
b908d224 | 40 | |
978af864 VZ |
41 | void SetLayoutDirection(wxLayoutDirection dir); |
42 | wxLayoutDirection GetLayoutDirection() const; | |
43 | ||
6abf7b63 VZ |
44 | virtual void Attach(wxFrame *frame); |
45 | virtual void Detach(); | |
978af864 | 46 | |
16487a6f | 47 | private: |
f03ec224 | 48 | // common part of Append and Insert |
0f29501b | 49 | void GtkAppend(wxMenu* menu, const wxString& title, int pos = -1); |
f03ec224 | 50 | |
294ea16d VZ |
51 | void Init(size_t n, wxMenu *menus[], const wxString titles[], long style); |
52 | ||
bf487502 PC |
53 | // wxMenuBar is not a top level window but it still doesn't need a parent |
54 | // window | |
55 | virtual bool GTKNeedsParent() const { return false; } | |
56 | ||
f1a3ae7d PC |
57 | GtkWidget* m_menubar; |
58 | ||
3dfac970 | 59 | DECLARE_DYNAMIC_CLASS(wxMenuBar) |
c801d85f KB |
60 | }; |
61 | ||
62 | //----------------------------------------------------------------------------- | |
63 | // wxMenu | |
64 | //----------------------------------------------------------------------------- | |
65 | ||
20123d49 | 66 | class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase |
c801d85f | 67 | { |
83885a39 | 68 | public: |
717a57c2 VZ |
69 | // ctors & dtor |
70 | wxMenu(const wxString& title, long style = 0) | |
71 | : wxMenuBase(title, style) { Init(); } | |
83885a39 | 72 | |
717a57c2 | 73 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } |
c626a8b7 | 74 | |
717a57c2 | 75 | virtual ~wxMenu(); |
c626a8b7 | 76 | |
978af864 | 77 | void Attach(wxMenuBarBase *menubar); |
1b88201f | 78 | |
978af864 VZ |
79 | void SetLayoutDirection(const wxLayoutDirection dir); |
80 | wxLayoutDirection GetLayoutDirection() const; | |
81 | ||
7bc0ff86 | 82 | // Returns the title, with mnemonics translated to wx format |
96a3acb7 | 83 | wxString GetTitle() const; |
7bc0ff86 | 84 | |
717a57c2 | 85 | // TODO: 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_ |