]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk1/menu.h
wxMessageBox off the main thread lost result code.
[wxWidgets.git] / include / wx / gtk1 / menu.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
8ef94bfc 2// Name: wx/gtk1/menu.h
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
58614078 5// Copyright: (c) 1998 Robert Roebling, Julian Smart
65571936 6// Licence: wxWindows licence
c801d85f
KB
7/////////////////////////////////////////////////////////////////////////////
8
c801d85f
KB
9#ifndef __GTKMENUH__
10#define __GTKMENUH__
11
c801d85f
KB
12//-----------------------------------------------------------------------------
13// wxMenuBar
14//-----------------------------------------------------------------------------
15
20123d49 16class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
c801d85f 17{
83885a39 18public:
c626a8b7
VZ
19 // ctors
20 wxMenuBar();
21 wxMenuBar(long style);
294ea16d 22 wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0);
3dfac970 23 virtual ~wxMenuBar();
c626a8b7 24
3dfac970
VZ
25 // implement base class (pure) virtuals
26 virtual bool Append( wxMenu *menu, const wxString &title );
27 virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title);
28 virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title);
29 virtual wxMenu *Remove(size_t pos);
c626a8b7 30
c626a8b7
VZ
31 virtual int FindMenuItem(const wxString& menuString,
32 const wxString& itemString) const;
3dfac970 33 virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const;
c626a8b7 34
3dfac970 35 virtual void EnableTop( size_t pos, bool flag );
52af3158
JS
36 virtual void SetMenuLabel( size_t pos, const wxString& label );
37 virtual wxString GetMenuLabel( size_t pos ) const;
b908d224 38
f03ec224 39 // common part of Append and Insert
49826dab 40 bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1);
f03ec224 41
61f09f56
VZ
42 virtual void Attach(wxFrame *frame);
43 virtual void Detach();
44
1e133b7d 45 GtkAccelGroup *m_accel;
1e133b7d 46 GtkWidget *m_menubar;
ae53c98c 47 long m_style;
3dfac970 48
3dfac970 49private:
294ea16d
VZ
50 void Init(size_t n, wxMenu *menus[], const wxString titles[], long style);
51
3dfac970 52 DECLARE_DYNAMIC_CLASS(wxMenuBar)
c801d85f
KB
53};
54
55//-----------------------------------------------------------------------------
56// wxMenu
57//-----------------------------------------------------------------------------
58
20123d49 59class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
c801d85f 60{
83885a39 61public:
717a57c2
VZ
62 // ctors & dtor
63 wxMenu(const wxString& title, long style = 0)
64 : wxMenuBase(title, style) { Init(); }
83885a39 65
717a57c2 66 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
c626a8b7 67
717a57c2 68 virtual ~wxMenu();
c626a8b7 69
717a57c2 70 // implement base class virtuals
9add9367
RD
71 virtual wxMenuItem* DoAppend(wxMenuItem *item);
72 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
73 virtual wxMenuItem* DoRemove(wxMenuItem *item);
c626a8b7 74
7bc0ff86 75 // Returns the title, with mnemonics translated to wx format
96a3acb7 76 wxString GetTitle() const;
7bc0ff86 77
717a57c2 78 // TODO: virtual void SetTitle(const wxString& title);
33961d59 79
c626a8b7
VZ
80 // implementation
81 int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
c626a8b7 82
1e133b7d 83 // implementation GTK only
034be888
RR
84 GtkWidget *m_menu; // GtkMenu
85 GtkWidget *m_owner;
034be888 86 GtkAccelGroup *m_accel;
c626a8b7 87
b908d224 88private:
717a57c2
VZ
89 // common code for all constructors:
90 void Init();
91
49826dab
RD
92 // common part of Append (if pos == -1) and Insert
93 bool GtkAppend(wxMenuItem *item, int pos=-1);
32db328c 94
1b88201f 95 GtkWidget *m_prevRadio;
d65c269b 96
717a57c2 97 DECLARE_DYNAMIC_CLASS(wxMenu)
c801d85f
KB
98};
99
1b88201f
WS
100#endif
101 // __GTKMENUH__