// implement base class virtuals
virtual void SetItemLabel( const wxString& str );
- virtual wxString GetItemLabel() const;
virtual void Enable( bool enable = true );
virtual void Check( bool check = true );
virtual bool IsChecked() const;
// and in the hotkey which is used to set given pointer
static wxString GTKProcessMenuItemLabel(const wxString& str, wxString *hotKey);
+ wxString GetGtkItemLabel() { return m_gtkText; }
+
#if WXWIN_COMPATIBILITY_2_8
// compatibility only, don't use in new code
wxDEPRECATED(
// style to GTK+ and is called from ctor and SetText()
void DoSetText(const wxString& text);
+ wxString m_gtkText; // m_text after conversion to GTK mnemonics
wxString m_hotKey;
wxBitmap m_bitmap; // Bitmap for menuitem, if any