]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk1/menu.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling, Julian Smart
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
13 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
14 #pragma interface "menu.h"
17 //-----------------------------------------------------------------------------
19 //-----------------------------------------------------------------------------
21 class wxMenuBar
: public wxMenuBarBase
26 wxMenuBar(long style
);
27 wxMenuBar(int n
, wxMenu
*menus
[], const wxString titles
[]);
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
);
36 virtual int FindMenuItem(const wxString
& menuString
,
37 const wxString
& itemString
) const;
38 virtual wxMenuItem
* FindItem( int id
, wxMenu
**menu
= NULL
) const;
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;
44 // implementation only from now on
45 void SetInvokingWindow( wxWindow
*win
);
46 void UnsetInvokingWindow( wxWindow
*win
);
48 // common part of Append and Insert
49 bool GtkAppend(wxMenu
*menu
, const wxString
& title
, int pos
=-1);
52 GtkAccelGroup
*m_accel
;
56 wxWindow
*m_invokingWindow
;
59 DECLARE_DYNAMIC_CLASS(wxMenuBar
)
62 //-----------------------------------------------------------------------------
64 //-----------------------------------------------------------------------------
66 class wxMenu
: public wxMenuBase
70 wxMenu(const wxString
& title
, long style
= 0)
71 : wxMenuBase(title
, style
) { Init(); }
73 wxMenu(long style
= 0) : wxMenuBase(style
) { Init(); }
77 // implement base class virtuals
78 virtual wxMenuItem
* DoAppend(wxMenuItem
*item
);
79 virtual wxMenuItem
* DoInsert(size_t pos
, wxMenuItem
*item
);
80 virtual wxMenuItem
* DoRemove(wxMenuItem
*item
);
82 // TODO: virtual void SetTitle(const wxString& title);
85 int FindMenuIdByMenuItem( GtkWidget
*menuItem
) const;
87 // implementation GTK only
88 GtkWidget
*m_menu
; // GtkMenu
90 GtkAccelGroup
*m_accel
;
93 // common code for all constructors:
96 // common part of Append (if pos == -1) and Insert
97 bool GtkAppend(wxMenuItem
*item
, int pos
=-1);
99 GtkWidget
*m_prevRadio
;
101 DECLARE_DYNAMIC_CLASS(wxMenu
)
104 #endif // __GTKMENUH__