]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/menuitem.h
suppress warning about casting int to a pointer of greater size
[wxWidgets.git] / include / wx / gtk / menuitem.h
CommitLineData
23d1d521
JS
1///////////////////////////////////////////////////////////////////////////////
2// Name: menuitem.h
3// Purpose: wxMenuItem class
6ca41e57 4// Author: Robert Roebling
23d1d521 5// RCS-ID: $Id$
6ca41e57 6// Copyright: (c) 1998 Robert Roebling
65571936 7// Licence: wxWindows licence
23d1d521
JS
8///////////////////////////////////////////////////////////////////////////////
9
aac7dbf3
PC
10#ifndef _WX_GTKMENUITEM_H_
11#define _WX_GTKMENUITEM_H_
23d1d521 12
37d403aa
JS
13#include "wx/bitmap.h"
14
6ca41e57
RR
15//-----------------------------------------------------------------------------
16// wxMenuItem
17//-----------------------------------------------------------------------------
23d1d521 18
20123d49 19class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
6ca41e57 20{
6ca41e57 21public:
974e8d94
VZ
22 wxMenuItem(wxMenu *parentMenu = (wxMenu *)NULL,
23 int id = wxID_SEPARATOR,
24 const wxString& text = wxEmptyString,
25 const wxString& help = wxEmptyString,
546bfbea 26 wxItemKind kind = wxITEM_NORMAL,
974e8d94 27 wxMenu *subMenu = (wxMenu *)NULL);
d3c7fc99 28 virtual ~wxMenuItem();
c626a8b7 29
974e8d94 30 // implement base class virtuals
52af3158
JS
31 virtual void SetItemLabel( const wxString& str );
32 virtual wxString GetItemLabel() const;
aac7dbf3
PC
33 virtual void Enable( bool enable = true );
34 virtual void Check( bool check = true );
974e8d94 35 virtual bool IsChecked() const;
37d403aa
JS
36 virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; }
37 virtual const wxBitmap& GetBitmap() const { return m_bitmap; }
c626a8b7 38
717a57c2
VZ
39#if wxUSE_ACCEL
40 virtual wxAcceleratorEntry *GetAccel() const;
41#endif // wxUSE_ACCEL
42
c626a8b7
VZ
43 // implementation
44 void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; }
45 GtkWidget *GetMenuItem() const { return m_menuItem; }
c626a8b7 46
ee0a94cf
RR
47 // splits given string in the label, doing & => _ translation, which is returned,
48 // and in the hotkey which is used to set given pointer
49 static wxString GTKProcessMenuItemLabel(const wxString& str, wxString *hotKey);
50
efebabb7 51#if WXWIN_COMPATIBILITY_2_8
2368dcda 52 // compatibility only, don't use in new code
efebabb7 53 wxDEPRECATED(
2368dcda
VZ
54 wxMenuItem(wxMenu *parentMenu,
55 int id,
56 const wxString& text,
57 const wxString& help,
58 bool isCheckable,
efebabb7
PC
59 wxMenu *subMenu = NULL)
60 );
61#endif
2368dcda 62
c626a8b7 63private:
2368dcda 64 // common part of all ctors
092f7536 65 void Init(const wxString& text);
2368dcda 66
974e8d94
VZ
67 // DoSetText() transforms the accel mnemonics in our label from MSW/wxWin
68 // style to GTK+ and is called from ctor and SetText()
69 void DoSetText(const wxString& text);
70
71 wxString m_hotKey;
37d403aa 72 wxBitmap m_bitmap; // Bitmap for menuitem, if any
974e8d94
VZ
73
74 GtkWidget *m_menuItem; // GtkMenuItem
c626a8b7 75
974e8d94 76 DECLARE_DYNAMIC_CLASS(wxMenuItem)
23d1d521
JS
77};
78
aac7dbf3 79#endif // _WX_GTKMENUITEM_H_