]> git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/menu.h
Refactor: extract GtkScrolledWindow creation from wxWindow::Create().
[wxWidgets.git] / include / wx / gtk / 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 _WX_GTKMENU_H_
11 #define _WX_GTKMENU_H_
12
13 //-----------------------------------------------------------------------------
14 // wxMenuBar
15 //-----------------------------------------------------------------------------
16
17 class WXDLLIMPEXP_CORE wxMenuBar : public wxMenuBarBase
18 {
19 public:
20 // ctors
21 wxMenuBar();
22 wxMenuBar(long style);
23 wxMenuBar(size_t n, wxMenu *menus[], const wxString titles[], long style = 0);
24 ~wxMenuBar();
25
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);
31
32 virtual int FindMenuItem(const wxString& menuString,
33 const wxString& itemString) const;
34 virtual wxMenuItem* FindItem( int id, wxMenu **menu = NULL ) const;
35
36 virtual void EnableTop( size_t pos, bool flag );
37 virtual bool IsEnabledTop(size_t pos) const;
38 virtual void SetMenuLabel( size_t pos, const wxString& label );
39 virtual wxString GetMenuLabel( size_t pos ) const;
40
41 void SetLayoutDirection(wxLayoutDirection dir);
42 wxLayoutDirection GetLayoutDirection() const;
43
44 // wxMenuBar is not a top level window but it still doesn't need a parent
45 // window
46 virtual bool GTKNeedsParent() const { return false; }
47
48 virtual void Attach(wxFrame *frame);
49 virtual void Detach();
50
51 // implementation only from now on
52 GtkWidget *m_menubar; // Public for hildon support
53
54 private:
55 // common part of Append and Insert
56 void GtkAppend(wxMenu* menu, const wxString& title, int pos = -1);
57
58 void Init(size_t n, wxMenu *menus[], const wxString titles[], long style);
59
60 DECLARE_DYNAMIC_CLASS(wxMenuBar)
61 };
62
63 //-----------------------------------------------------------------------------
64 // wxMenu
65 //-----------------------------------------------------------------------------
66
67 class WXDLLIMPEXP_CORE wxMenu : public wxMenuBase
68 {
69 public:
70 // ctors & dtor
71 wxMenu(const wxString& title, long style = 0)
72 : wxMenuBase(title, style) { Init(); }
73
74 wxMenu(long style = 0) : wxMenuBase(style) { Init(); }
75
76 virtual ~wxMenu();
77
78 void Attach(wxMenuBarBase *menubar);
79
80 void SetLayoutDirection(const wxLayoutDirection dir);
81 wxLayoutDirection GetLayoutDirection() const;
82
83 // Returns the title, with mnemonics translated to wx format
84 wxString GetTitle() const;
85
86 // TODO: virtual void SetTitle(const wxString& title);
87
88 // implementation GTK only
89 GtkWidget *m_menu; // GtkMenu
90 GtkWidget *m_owner;
91 GtkAccelGroup *m_accel;
92 bool m_popupShown;
93
94 protected:
95 virtual wxMenuItem* DoAppend(wxMenuItem *item);
96 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
97 virtual wxMenuItem* DoRemove(wxMenuItem *item);
98
99 private:
100 // common code for all constructors:
101 void Init();
102
103 // common part of Append (if pos == -1) and Insert
104 void GtkAppend(wxMenuItem* item, int pos = -1);
105
106
107 DECLARE_DYNAMIC_CLASS(wxMenu)
108 };
109
110 #endif
111 // _WX_GTKMENU_H_