]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/menu.h
No resize border on WinCE by default
[wxWidgets.git] / include / wx / gtk1 / menu.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/menu.h
3 // Purpose:
4 // Author: Robert Roebling
5 // Id: $Id$
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 #ifndef __GTKMENUH__
11 #define __GTKMENUH__
12
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "menu.h"
15 #endif
16
17 //-----------------------------------------------------------------------------
18 // wxMenuBar
19 //-----------------------------------------------------------------------------
20
21 class wxMenuBar : public wxMenuBarBase
22 {
23 public:
24 // ctors
25 wxMenuBar();
26 wxMenuBar(long style);
27 wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0);
28 virtual ~wxMenuBar();
29
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);
35
36 virtual int FindMenuItem(const wxString& menuString,
37 const wxString& itemString) const;
38 virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const;
39
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;
43
44 // implementation only from now on
45 void SetInvokingWindow( wxWindow *win );
46 void UnsetInvokingWindow( wxWindow *win );
47
48 // common part of Append and Insert
49 bool GtkAppend(wxMenu *menu, const wxString& title, int pos=-1);
50
51 #ifndef __WXGTK20__
52 GtkAccelGroup *m_accel;
53 #endif
54 GtkWidget *m_menubar;
55 long m_style;
56 wxWindow *m_invokingWindow;
57
58 private:
59 void Init(size_t n, wxMenu *menus[], const wxString titles[], long style);
60
61 DECLARE_DYNAMIC_CLASS(wxMenuBar)
62 };
63
64 //-----------------------------------------------------------------------------
65 // wxMenu
66 //-----------------------------------------------------------------------------
67
68 class wxMenu : public wxMenuBase
69 {
70 public:
71 // ctors & dtor
72 wxMenu(const wxString& title, long style = 0)
73 : wxMenuBase(title, style) { Init(); }
74
75 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
76
77 virtual ~wxMenu();
78
79 // implement base class virtuals
80 virtual wxMenuItem* DoAppend(wxMenuItem *item);
81 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
82 virtual wxMenuItem* DoRemove(wxMenuItem *item);
83
84 // TODO: virtual void SetTitle(const wxString& title);
85
86 // implementation
87 int FindMenuIdByMenuItem( GtkWidget *menuItem ) const;
88
89 // implementation GTK only
90 GtkWidget *m_menu; // GtkMenu
91 GtkWidget *m_owner;
92 GtkAccelGroup *m_accel;
93
94 private:
95 // common code for all constructors:
96 void Init();
97
98 // common part of Append (if pos == -1) and Insert
99 bool GtkAppend(wxMenuItem *item, int pos=-1);
100
101 GtkWidget *m_prevRadio;
102
103 DECLARE_DYNAMIC_CLASS(wxMenu)
104 };
105
106 #endif // __GTKMENUH__