X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6fba6c78a4e1fee477d91e3735fdd69d5ab2f26b..49a63afbad7646668df343d29edd88458bc7e0a9:/include/wx/gtk/bmpbuttn.h diff --git a/include/wx/gtk/bmpbuttn.h b/include/wx/gtk/bmpbuttn.h index 4fb37f2a27..15966f3f41 100644 --- a/include/wx/gtk/bmpbuttn.h +++ b/include/wx/gtk/bmpbuttn.h @@ -14,22 +14,20 @@ // wxBitmapButton // ---------------------------------------------------------------------------- -class WXDLLIMPEXP_CORE wxBitmapButton: public wxBitmapButtonBase +class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase { public: - wxBitmapButton() { Init(); } + wxBitmapButton() { } wxBitmapButton(wxWindow *parent, wxWindowID id, const wxBitmap& bitmap, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = wxBU_AUTODRAW, + long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxButtonNameStr) { - Init(); - Create(parent, id, bitmap, pos, size, style, validator, name); } @@ -38,40 +36,12 @@ public: const wxBitmap& bitmap, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, - long style = wxBU_AUTODRAW, + long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxButtonNameStr); - void SetLabel( const wxString &label ); - virtual void SetLabel( const wxBitmap& bitmap ) { SetBitmapLabel(bitmap); } - - virtual bool Enable(bool enable = TRUE); - - // implementation - // -------------- - - void GTKMouseEnters(); - void GTKMouseLeaves(); - void GTKPressed(); - void GTKReleased(); - -protected: - virtual void OnSetBitmap(); - virtual wxSize DoGetBestSize() const; - void DoApplyWidgetStyle(GtkRcStyle *style); - - void Init(); - private: - void OnFocusChange(wxFocusEvent& event); - - // true iff mouse hovers over the button - bool m_mouseHovers; - // true iff the button is in pressed state - bool m_isPressed; - DECLARE_DYNAMIC_CLASS(wxBitmapButton) - DECLARE_EVENT_TABLE() }; #endif // _WX_GTK_BMPBUTTON_H_