implementing rollover and pressed image for bitmapbutton on osx_cocoa

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@62335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2009-10-08 18:38:43 +00:00
parent c579ac6280
commit 411a1c35ff
8 changed files with 74 additions and 2 deletions

View File

@@ -587,6 +587,19 @@ public :
virtual void CheckSpelling(bool WXUNUSED(check)) { }
};
//
// common interface bitmapbuttons
//
class wxBitmapButtonImpl
{
public :
wxBitmapButtonImpl(){}
virtual ~wxBitmapButtonImpl(){}
virtual void SetPressedBitmap( const wxBitmap& bitmap ) = 0;
} ;
//
// common interface for search controls
//