]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/menu.h
added and documented wxApp::OnExceptionInMainLoop()
[wxWidgets.git] / include / wx / gtk / 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
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 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
f03ec224
VZ
48 // common part of Append and Insert
49 bool GtkAppend(wxMenu *menu, const wxString& title);
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
VZ
58private:
59 DECLARE_DYNAMIC_CLASS(wxMenuBar)
c801d85f
KB
60};
61
62//-----------------------------------------------------------------------------
63// wxMenu
64//-----------------------------------------------------------------------------
65
717a57c2 66class wxMenu : public wxMenuBase
c801d85f 67{
83885a39 68public:
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
717a57c2 77 // implement base class virtuals
9add9367
RD
78 virtual wxMenuItem* DoAppend(wxMenuItem *item);
79 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
80 virtual wxMenuItem* DoRemove(wxMenuItem *item);
c626a8b7 81
717a57c2 82 // TODO: virtual void SetTitle(const wxString& title);
33961d59 83
c626a8b7
VZ
84 // implementation
85 int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
c626a8b7 86
1e133b7d 87 // implementation GTK only
034be888
RR
88 GtkWidget *m_menu; // GtkMenu
89 GtkWidget *m_owner;
034be888 90 GtkAccelGroup *m_accel;
c626a8b7 91
b908d224 92private:
717a57c2
VZ
93 // common code for all constructors:
94 void Init();
95
32db328c
VZ
96 // common part of Append and Insert
97 bool GtkAppend(wxMenuItem *item);
98
6d971354 99 GtkWidget *m_prevRadio;
d65c269b 100
717a57c2 101 DECLARE_DYNAMIC_CLASS(wxMenu)
c801d85f
KB
102};
103
104#endif // __GTKMENUH__