2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/univ/bmpbuttn.h
|
|
|
|
// Purpose: wxBitmapButton class for wxUniversal
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 25.08.00
|
|
|
|
// Copyright: (c) Vadim Zeitlin
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_UNIV_BMPBUTTN_H_
|
|
|
|
#define _WX_UNIV_BMPBUTTN_H_
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmapButton : public wxBitmapButtonBase
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-01-15 13:49:22 +00:00
|
|
|
wxBitmapButton() { }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
wxBitmapButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
2004-01-15 13:49:22 +00:00
|
|
|
const wxString& name = wxButtonNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, bitmap, pos, size, style, validator, name);
|
|
|
|
}
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr);
|
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void SetMargins(int x, int y) wxOVERRIDE
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
2009-06-28 17:16:41 +00:00
|
|
|
SetBitmapMargins(x, y);
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
wxBitmapButtonBase::SetMargins(x, y);
|
|
|
|
}
|
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool Enable(bool enable = true) wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual bool SetCurrent(bool doit = true) wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void Press() wxOVERRIDE;
|
|
|
|
virtual void Release() wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void OnSetFocus(wxFocusEvent& event);
|
|
|
|
void OnKillFocus(wxFocusEvent& event);
|
|
|
|
|
|
|
|
// called when one of the bitmap is changed by user
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void OnSetBitmap() wxOVERRIDE;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
2009-06-14 22:55:24 +00:00
|
|
|
// set bitmap to the given one if it's ok or to the normal bitmap and
|
|
|
|
// return true if the bitmap really changed
|
2001-06-26 20:59:19 +00:00
|
|
|
bool ChangeBitmap(const wxBitmap& bmp);
|
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBitmapButton)
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_UNIV_BMPBUTTN_H_
|
|
|
|
|