X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6f02a879ed7efc5fcf6328ff47a1352ec82812b7..444f6eed4706a7c68d8fc8123eca283d2b983a09:/include/wx/gtk/bmpbuttn.h?ds=sidebyside diff --git a/include/wx/gtk/bmpbuttn.h b/include/wx/gtk/bmpbuttn.h index 3af18cfeec..4fb37f2a27 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 @@ -46,19 +45,15 @@ public: void SetLabel( const wxString &label ); virtual void SetLabel( const wxBitmap& bitmap ) { SetBitmapLabel(bitmap); } - virtual void SetDefault(); virtual bool Enable(bool enable = TRUE); // implementation // -------------- - void HasFocus(); - void NotFocus(); - void StartSelect(); - void EndSelect(); - - bool m_hasFocus:1; - bool m_isSelected:1; + void GTKMouseEnters(); + void GTKMouseLeaves(); + void GTKPressed(); + void GTKReleased(); protected: virtual void OnSetBitmap(); @@ -68,7 +63,15 @@ protected: 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_