X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/92159e3d769551d78d8f48f438fc8c40655d23d2..49b3c4dfca81bf36134ab2c22b1d6c265f5ba150:/include/wx/gtk/menuitem.h diff --git a/include/wx/gtk/menuitem.h b/include/wx/gtk/menuitem.h index bc5c7a8fc3..fc60a7d3e6 100644 --- a/include/wx/gtk/menuitem.h +++ b/include/wx/gtk/menuitem.h @@ -32,26 +32,18 @@ public: virtual void Enable( bool enable = true ); virtual void Check( bool check = true ); virtual bool IsChecked() const; - virtual void SetBitmap(const wxBitmap& bitmap) { m_bitmap = bitmap; } + virtual void SetBitmap(const wxBitmap& bitmap); virtual const wxBitmap& GetBitmap() const { return m_bitmap; } -#if wxUSE_ACCEL - virtual wxAcceleratorEntry *GetAccel() const; -#endif // wxUSE_ACCEL - // implementation void SetMenuItem(GtkWidget *menuItem) { m_menuItem = menuItem; } GtkWidget *GetMenuItem() const { return m_menuItem; } - - // splits given string in the label, doing & => _ translation, which is returned, - // and in the hotkey which is used to set given pointer - static wxString GTKProcessMenuItemLabel(const wxString& str, wxString *hotKey); - - wxString GetGtkItemLabel() { return m_gtkText; } + void SetGtkLabel(); #if WXWIN_COMPATIBILITY_2_8 // compatibility only, don't use in new code wxDEPRECATED( + inline wxMenuItem(wxMenu *parentMenu, int id, const wxString& text, @@ -62,17 +54,7 @@ public: #endif private: - // common part of all ctors - void Init(const wxString& text); - - // DoSetText() transforms the accel mnemonics in our label from MSW/wxWin - // 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 - GtkWidget *m_menuItem; // GtkMenuItem DECLARE_DYNAMIC_CLASS(wxMenuItem)