]>
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 | ||
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 VZ |
36 | virtual void EnableTop( size_t pos, bool flag ); |
37 | virtual void SetLabelTop( size_t pos, const wxString& label ); | |
38 | virtual wxString GetLabelTop( size_t pos ) const; | |
b908d224 | 39 | |
3dfac970 | 40 | // implementation only from now on |
5bd9e519 RR |
41 | void SetInvokingWindow( wxWindow *win ); |
42 | void UnsetInvokingWindow( wxWindow *win ); | |
c626a8b7 | 43 | |
f03ec224 | 44 | // common part of Append and Insert |
49826dab | 45 | bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1); |
f03ec224 | 46 | |
1e133b7d | 47 | GtkWidget *m_menubar; |
ae53c98c | 48 | long m_style; |
9c884972 | 49 | wxWindow *m_invokingWindow; |
3dfac970 | 50 | |
3dfac970 | 51 | private: |
294ea16d VZ |
52 | void Init(size_t n, wxMenu *menus[], const wxString titles[], long style); |
53 | ||
3dfac970 | 54 | DECLARE_DYNAMIC_CLASS(wxMenuBar) |
c801d85f KB |
55 | }; |
56 | ||
57 | //----------------------------------------------------------------------------- | |
58 | // wxMenu | |
59 | //----------------------------------------------------------------------------- | |
60 | ||
20123d49 | 61 | class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase |
c801d85f | 62 | { |
83885a39 | 63 | public: |
717a57c2 VZ |
64 | // ctors & dtor |
65 | wxMenu(const wxString& title, long style = 0) | |
66 | : wxMenuBase(title, style) { Init(); } | |
83885a39 | 67 | |
717a57c2 | 68 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } |
c626a8b7 | 69 | |
717a57c2 | 70 | virtual ~wxMenu(); |
c626a8b7 | 71 | |
717a57c2 | 72 | // TODO: virtual void SetTitle(const wxString& title); |
33961d59 | 73 | |
c626a8b7 VZ |
74 | // implementation |
75 | int FindMenuIdByMenuItem( GtkWidget *menuItem ) const; | |
c626a8b7 | 76 | |
1e133b7d | 77 | // implementation GTK only |
034be888 RR |
78 | GtkWidget *m_menu; // GtkMenu |
79 | GtkWidget *m_owner; | |
034be888 | 80 | GtkAccelGroup *m_accel; |
c626a8b7 | 81 | |
6f02a879 VZ |
82 | protected: |
83 | virtual wxMenuItem* DoAppend(wxMenuItem *item); | |
84 | virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item); | |
85 | virtual wxMenuItem* DoRemove(wxMenuItem *item); | |
86 | ||
b908d224 | 87 | private: |
717a57c2 VZ |
88 | // common code for all constructors: |
89 | void Init(); | |
90 | ||
49826dab RD |
91 | // common part of Append (if pos == -1) and Insert |
92 | bool GtkAppend(wxMenuItem *item, int pos=-1); | |
32db328c | 93 | |
6d971354 | 94 | GtkWidget *m_prevRadio; |
d65c269b | 95 | |
717a57c2 | 96 | DECLARE_DYNAMIC_CLASS(wxMenu) |
c801d85f KB |
97 | }; |
98 | ||
99 | #endif // __GTKMENUH__ |