]>
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 | ||
12028905 | 13 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
3dfac970 | 14 | #pragma interface "menu.h" |
c801d85f KB |
15 | #endif |
16 | ||
c801d85f KB |
17 | //----------------------------------------------------------------------------- |
18 | // wxMenuBar | |
19 | //----------------------------------------------------------------------------- | |
20 | ||
3dfac970 | 21 | class wxMenuBar : public wxMenuBarBase |
c801d85f | 22 | { |
83885a39 | 23 | public: |
c626a8b7 VZ |
24 | // ctors |
25 | wxMenuBar(); | |
26 | wxMenuBar(long style); | |
294ea16d | 27 | wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0); |
3dfac970 | 28 | virtual ~wxMenuBar(); |
c626a8b7 | 29 | |
3dfac970 VZ |
30 | // implement base class (pure) virtuals |
31 | virtual bool Append( wxMenu *menu, const wxString &title ); | |
32 | virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title); | |
33 | virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title); | |
34 | virtual wxMenu *Remove(size_t pos); | |
c626a8b7 | 35 | |
c626a8b7 VZ |
36 | virtual int FindMenuItem(const wxString& menuString, |
37 | const wxString& itemString) const; | |
3dfac970 | 38 | virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const; |
c626a8b7 | 39 | |
3dfac970 VZ |
40 | virtual void EnableTop( size_t pos, bool flag ); |
41 | virtual void SetLabelTop( size_t pos, const wxString& label ); | |
42 | virtual wxString GetLabelTop( size_t pos ) const; | |
b908d224 | 43 | |
3dfac970 | 44 | // implementation only from now on |
5bd9e519 RR |
45 | void SetInvokingWindow( wxWindow *win ); |
46 | void UnsetInvokingWindow( wxWindow *win ); | |
c626a8b7 | 47 | |
f03ec224 | 48 | // common part of Append and Insert |
49826dab | 49 | bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1); |
f03ec224 | 50 | |
6d971354 | 51 | #ifndef __WXGTK20__ |
1e133b7d | 52 | GtkAccelGroup *m_accel; |
6d971354 | 53 | #endif |
1e133b7d | 54 | GtkWidget *m_menubar; |
ae53c98c | 55 | long m_style; |
9c884972 | 56 | wxWindow *m_invokingWindow; |
3dfac970 | 57 | |
3dfac970 | 58 | private: |
294ea16d VZ |
59 | void Init(size_t n, wxMenu *menus[], const wxString titles[], long style); |
60 | ||
3dfac970 | 61 | DECLARE_DYNAMIC_CLASS(wxMenuBar) |
c801d85f KB |
62 | }; |
63 | ||
64 | //----------------------------------------------------------------------------- | |
65 | // wxMenu | |
66 | //----------------------------------------------------------------------------- | |
67 | ||
717a57c2 | 68 | class wxMenu : public wxMenuBase |
c801d85f | 69 | { |
83885a39 | 70 | public: |
717a57c2 VZ |
71 | // ctors & dtor |
72 | wxMenu(const wxString& title, long style = 0) | |
73 | : wxMenuBase(title, style) { Init(); } | |
83885a39 | 74 | |
717a57c2 | 75 | wxMenu(long style = 0) : wxMenuBase(style) { Init(); } |
c626a8b7 | 76 | |
717a57c2 | 77 | virtual ~wxMenu(); |
c626a8b7 | 78 | |
717a57c2 | 79 | // implement base class virtuals |
9add9367 RD |
80 | virtual wxMenuItem* DoAppend(wxMenuItem *item); |
81 | virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item); | |
82 | virtual wxMenuItem* DoRemove(wxMenuItem *item); | |
c626a8b7 | 83 | |
717a57c2 | 84 | // TODO: virtual void SetTitle(const wxString& title); |
33961d59 | 85 | |
c626a8b7 VZ |
86 | // implementation |
87 | int FindMenuIdByMenuItem( GtkWidget *menuItem ) const; | |
c626a8b7 | 88 | |
1e133b7d | 89 | // implementation GTK only |
034be888 RR |
90 | GtkWidget *m_menu; // GtkMenu |
91 | GtkWidget *m_owner; | |
034be888 | 92 | GtkAccelGroup *m_accel; |
c626a8b7 | 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 | |
6d971354 | 101 | GtkWidget *m_prevRadio; |
d65c269b | 102 | |
717a57c2 | 103 | DECLARE_DYNAMIC_CLASS(wxMenu) |
c801d85f KB |
104 | }; |
105 | ||
106 | #endif // __GTKMENUH__ |