]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/menu.h
?jl
[wxWidgets.git] / include / wx / gtk1 / menu.h
CommitLineData
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
83885a39 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
c801d85f
KB
10#ifndef __GTKMENUH__
11#define __GTKMENUH__
12
13#ifdef __GNUG__
3dfac970 14 #pragma interface "menu.h"
c801d85f
KB
15#endif
16
c801d85f
KB
17//-----------------------------------------------------------------------------
18// wxMenuBar
19//-----------------------------------------------------------------------------
20
3dfac970 21class wxMenuBar : public wxMenuBarBase
c801d85f 22{
83885a39 23public:
c626a8b7
VZ
24 // ctors
25 wxMenuBar();
26 wxMenuBar(long style);
27 wxMenuBar(int n, wxMenu *menus[], const wxString titles[]);
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
1e133b7d
RR
48 GtkAccelGroup *m_accel;
49 GtkItemFactory *m_factory;
1e133b7d 50 GtkWidget *m_menubar;
ae53c98c 51 long m_style;
9c884972 52 wxWindow *m_invokingWindow;
3dfac970 53
3dfac970
VZ
54private:
55 DECLARE_DYNAMIC_CLASS(wxMenuBar)
c801d85f
KB
56};
57
58//-----------------------------------------------------------------------------
59// wxMenu
60//-----------------------------------------------------------------------------
61
717a57c2 62class wxMenu : public wxMenuBase
c801d85f 63{
83885a39 64public:
717a57c2
VZ
65 // ctors & dtor
66 wxMenu(const wxString& title, long style = 0)
67 : wxMenuBase(title, style) { Init(); }
83885a39 68
717a57c2 69 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
c626a8b7 70
717a57c2 71 virtual ~wxMenu();
c626a8b7 72
717a57c2
VZ
73 // implement base class virtuals
74 virtual bool DoAppend(wxMenuItem *item);
75 virtual bool DoInsert(size_t pos, wxMenuItem *item);
76 virtual wxMenuItem *DoRemove(wxMenuItem *item);
c626a8b7 77
717a57c2 78 // TODO: virtual void SetTitle(const wxString& title);
33961d59 79
717a57c2
VZ
80 wxMenu(const wxString& title, const wxFunction func)
81 : wxMenuBase(title)
82 {
83 Callback(func);
84 }
c626a8b7
VZ
85
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
RR
92 GtkAccelGroup *m_accel;
93 GtkItemFactory *m_factory;
c626a8b7 94
b908d224 95private:
717a57c2
VZ
96 // common code for all constructors:
97 void Init();
98
99 DECLARE_DYNAMIC_CLASS(wxMenu)
c801d85f
KB
100};
101
102#endif // __GTKMENUH__