]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/menu.h
don't define wxCRT_xxprintfW function if the corresponding xxprintfw() standard funct...
[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
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 17class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
c801d85f 18{
83885a39 19public:
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 36 virtual void EnableTop( size_t pos, bool flag );
52af3158
JS
37 virtual void SetMenuLabel( size_t pos, const wxString& label );
38 virtual wxString GetMenuLabel( size_t pos ) const;
b908d224 39
978af864
VZ
40 void SetLayoutDirection(wxLayoutDirection dir);
41 wxLayoutDirection GetLayoutDirection() const;
42
e8375af8
VZ
43 // wxMenuBar is not a top level window but it still doesn't need a parent
44 // window
45 virtual bool GTKNeedsParent() const { return false; }
46
978af864
VZ
47 void Attach(wxFrame *frame);
48
3dfac970 49 // implementation only from now on
5bd9e519
RR
50 void SetInvokingWindow( wxWindow *win );
51 void UnsetInvokingWindow( wxWindow *win );
c626a8b7 52
f03ec224 53 // common part of Append and Insert
49826dab 54 bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1);
f03ec224 55
1e133b7d 56 GtkWidget *m_menubar;
ae53c98c 57 long m_style;
9c884972 58 wxWindow *m_invokingWindow;
3dfac970 59
3dfac970 60private:
294ea16d
VZ
61 void Init(size_t n, wxMenu *menus[], const wxString titles[], long style);
62
3dfac970 63 DECLARE_DYNAMIC_CLASS(wxMenuBar)
c801d85f
KB
64};
65
66//-----------------------------------------------------------------------------
67// wxMenu
68//-----------------------------------------------------------------------------
69
20123d49 70class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
c801d85f 71{
83885a39 72public:
717a57c2
VZ
73 // ctors & dtor
74 wxMenu(const wxString& title, long style = 0)
75 : wxMenuBase(title, style) { Init(); }
83885a39 76
717a57c2 77 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
c626a8b7 78
717a57c2 79 virtual ~wxMenu();
c626a8b7 80
978af864 81 void Attach(wxMenuBarBase *menubar);
1b88201f 82
978af864
VZ
83 void SetLayoutDirection(const wxLayoutDirection dir);
84 wxLayoutDirection GetLayoutDirection() const;
85
717a57c2 86 // TODO: virtual void SetTitle(const wxString& title);
33961d59 87
c626a8b7
VZ
88 // implementation
89 int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
c626a8b7 90
1e133b7d 91 // implementation GTK only
034be888
RR
92 GtkWidget *m_menu; // GtkMenu
93 GtkWidget *m_owner;
034be888 94 GtkAccelGroup *m_accel;
c626a8b7 95
6f02a879
VZ
96protected:
97 virtual wxMenuItem* DoAppend(wxMenuItem *item);
98 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
99 virtual wxMenuItem* DoRemove(wxMenuItem *item);
100
b908d224 101private:
717a57c2
VZ
102 // common code for all constructors:
103 void Init();
104
49826dab
RD
105 // common part of Append (if pos == -1) and Insert
106 bool GtkAppend(wxMenuItem *item, int pos=-1);
32db328c 107
1b88201f 108 GtkWidget *m_prevRadio;
d65c269b 109
717a57c2 110 DECLARE_DYNAMIC_CLASS(wxMenu)
c801d85f
KB
111};
112
1b88201f
WS
113#endif
114 // __GTKMENUH__