X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..d7b20621ef1170ed3c505f65d77227cf18c80499:/include/wx/gtk/bmpbuttn.h diff --git a/include/wx/gtk/bmpbuttn.h b/include/wx/gtk/bmpbuttn.h index e9ce6586d1..a8a396b8c5 100644 --- a/include/wx/gtk/bmpbuttn.h +++ b/include/wx/gtk/bmpbuttn.h @@ -7,9 +7,8 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// - -#ifndef __BMPBUTTONH__ -#define __BMPBUTTONH__ +#ifndef _WX_GTK_BMPBUTTON_H_ +#define _WX_GTK_BMPBUTTON_H_ // ---------------------------------------------------------------------------- // wxBitmapButton @@ -44,32 +43,35 @@ public: const wxString& name = wxButtonNameStr); void SetLabel( const wxString &label ); - wxString GetLabel() const; virtual void SetLabel( const wxBitmap& bitmap ) { SetBitmapLabel(bitmap); } - virtual void SetDefault(); - virtual bool Enable(bool enable = TRUE); + virtual bool Enable(bool enable = true); // implementation // -------------- - void HasFocus(); - void NotFocus(); - void StartSelect(); - void EndSelect(); - void DoApplyWidgetStyle(GtkRcStyle *style); - - bool m_hasFocus:1; - bool m_isSelected:1; + 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 // __BMPBUTTONH__ +#endif // _WX_GTK_BMPBUTTON_H_