]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
8ef94bfc | 2 | // Name: wx/gtk1/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 | ||
c801d85f KB |
10 | #ifndef __GTKMENUH__ |
11 | #define __GTKMENUH__ | |
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); |
3dfac970 | 24 | virtual ~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 ); |
52af3158 JS |
37 | virtual void SetMenuLabel( size_t pos, const wxString& label ); |
38 | virtual wxString GetMenuLabel( size_t pos ) const; | |
b908d224 | 39 | |
f03ec224 | 40 | // common part of Append and Insert |
49826dab | 41 | bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1); |
f03ec224 | 42 | |
61f09f56 VZ |
43 | virtual void Attach(wxFrame *frame); |
44 | virtual void Detach(); | |
45 | ||
1e133b7d | 46 | GtkAccelGroup *m_accel; |
1e133b7d | 47 | GtkWidget *m_menubar; |
ae53c98c | 48 | long m_style; |
3dfac970 | 49 | |
3dfac970 | 50 | private: |
294ea16d VZ |
51 | void Init(size_t n, wxMenu *menus[], const wxString titles[], long style); |
52 | ||
3dfac970 | 53 | DECLARE_DYNAMIC_CLASS(wxMenuBar) |
c801d85f KB |
54 | }; |
55 | ||
56 | //----------------------------------------------------------------------------- | |
57 | // wxMenu | |
58 | //----------------------------------------------------------------------------- | |
59 | ||
20123d49 | 60 | class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase |
c801d85f | 61 | { |
83885a39 | 62 | public: |
717a57c2 VZ |
63 | // ctors & dtor |
64 | wxMenu(const wxString& title, long style = 0) | |
65 | : wxMenuBase(title, style) { Init(); } | |
83885a39 | 66 | |
717a57c2 | 67 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } |
c626a8b7 | 68 | |
717a57c2 | 69 | virtual ~wxMenu(); |
c626a8b7 | 70 | |
717a57c2 | 71 | // implement base class virtuals |
9add9367 RD |
72 | virtual wxMenuItem* DoAppend(wxMenuItem *item); |
73 | virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item); | |
74 | virtual wxMenuItem* DoRemove(wxMenuItem *item); | |
c626a8b7 | 75 | |
7bc0ff86 | 76 | // Returns the title, with mnemonics translated to wx format |
96a3acb7 | 77 | wxString GetTitle() const; |
7bc0ff86 | 78 | |
717a57c2 | 79 | // TODO: virtual void SetTitle(const wxString& title); |
33961d59 | 80 | |
c626a8b7 VZ |
81 | // implementation |
82 | int FindMenuIdByMenuItem( GtkWidget *menuItem ) const; | |
c626a8b7 | 83 | |
1e133b7d | 84 | // implementation GTK only |
034be888 RR |
85 | GtkWidget *m_menu; // GtkMenu |
86 | GtkWidget *m_owner; | |
034be888 | 87 | GtkAccelGroup *m_accel; |
c626a8b7 | 88 | |
b908d224 | 89 | private: |
717a57c2 VZ |
90 | // common code for all constructors: |
91 | void Init(); | |
92 | ||
49826dab RD |
93 | // common part of Append (if pos == -1) and Insert |
94 | bool GtkAppend(wxMenuItem *item, int pos=-1); | |
32db328c | 95 | |
1b88201f | 96 | GtkWidget *m_prevRadio; |
d65c269b | 97 | |
717a57c2 | 98 | DECLARE_DYNAMIC_CLASS(wxMenu) |
c801d85f KB |
99 | }; |
100 | ||
1b88201f WS |
101 | #endif |
102 | // __GTKMENUH__ |