1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2001-06-26 17:29:16 -04:00
|
|
|
// Name: wx/gtk/bmpbutton.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2001-06-26 17:29:16 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __BMPBUTTONH__
|
|
|
|
#define __BMPBUTTONH__
|
|
|
|
|
2003-08-09 08:38:21 -04:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-05-20 10:01:55 -04:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
// wxBitmapButton
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
class wxBitmapButton: public wxBitmapButtonBase
|
1998-05-28 13:44:04 -04:00
|
|
|
{
|
1998-11-15 12:57:55 -05:00
|
|
|
public:
|
2002-05-04 07:57:39 -04:00
|
|
|
wxBitmapButton() { Init(); }
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
wxBitmapButton(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxBU_AUTODRAW,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr)
|
1999-10-11 06:05:36 -04:00
|
|
|
{
|
2002-05-04 07:57:39 -04:00
|
|
|
Init();
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
Create(parent, id, bitmap, pos, size, style, validator, name);
|
|
|
|
}
|
2002-05-04 07:57:39 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxBitmap& bitmap,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = wxBU_AUTODRAW,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxButtonNameStr);
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
void SetLabel( const wxString &label );
|
|
|
|
wxString GetLabel() const;
|
|
|
|
virtual void SetLabel( const wxBitmap& bitmap ) { SetBitmapLabel(bitmap); }
|
2001-06-26 17:29:16 -04:00
|
|
|
|
2002-05-04 07:57:39 -04:00
|
|
|
virtual void SetDefault();
|
|
|
|
virtual bool Enable(bool enable = TRUE);
|
|
|
|
|
1999-11-22 14:44:25 -05:00
|
|
|
// implementation
|
|
|
|
// --------------
|
2001-06-26 17:29:16 -04:00
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
void HasFocus();
|
|
|
|
void NotFocus();
|
|
|
|
void StartSelect();
|
|
|
|
void EndSelect();
|
2001-06-26 17:29:16 -04:00
|
|
|
void ApplyWidgetStyle();
|
|
|
|
|
2002-05-04 07:57:39 -04:00
|
|
|
bool m_hasFocus:1;
|
|
|
|
bool m_isSelected:1;
|
2001-06-26 17:29:16 -04:00
|
|
|
|
2000-07-15 15:51:35 -04:00
|
|
|
protected:
|
2001-06-26 16:59:19 -04:00
|
|
|
virtual void OnSetBitmap();
|
2004-03-16 16:58:27 -05:00
|
|
|
virtual wxSize DoGetBestSize() const;
|
2000-07-15 15:51:35 -04:00
|
|
|
|
2002-05-04 07:57:39 -04:00
|
|
|
void Init();
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxBitmapButton)
|
1998-05-28 13:44:04 -04:00
|
|
|
};
|
1998-11-15 12:57:55 -05:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif // __BMPBUTTONH__
|