2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/bmpbutton.h
|
|
|
|
// Purpose: wxBitmapButton class interface
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 25.08.00
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) 2000 Vadim Zeitlin
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-15 00:23:28 +00:00
|
|
|
#ifndef _WX_BMPBUTTON_H_BASE_
|
|
|
|
#define _WX_BMPBUTTON_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-09 21:48:53 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_BMPBUTTON
|
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
#include "wx/button.h"
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
extern WXDLLIMPEXP_DATA_CORE(const char) wxButtonNameStr[];
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxBitmapButton: a button which shows bitmaps instead of the usual string.
|
|
|
|
// It has different bitmaps for different states (focused/disabled/pressed)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 15:06:00 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmapButtonBase : public wxButton
|
2001-06-26 20:59:19 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-01-15 13:49:22 +00:00
|
|
|
wxBitmapButtonBase()
|
2005-11-03 00:40:00 +00:00
|
|
|
{
|
|
|
|
m_marginX =
|
|
|
|
m_marginY = 0;
|
|
|
|
}
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// set the bitmaps
|
2007-07-15 19:29:20 +00:00
|
|
|
virtual void SetBitmapLabel(const wxBitmap& bitmap)
|
2001-06-26 20:59:19 +00:00
|
|
|
{ m_bmpNormal = bitmap; OnSetBitmap(); }
|
2007-07-15 19:29:20 +00:00
|
|
|
virtual void SetBitmapSelected(const wxBitmap& sel)
|
2007-04-14 09:58:37 +00:00
|
|
|
{ m_bmpSelected = sel; OnSetBitmap(); }
|
2007-07-15 19:29:20 +00:00
|
|
|
virtual void SetBitmapFocus(const wxBitmap& focus)
|
2007-04-14 09:58:37 +00:00
|
|
|
{ m_bmpFocus = focus; OnSetBitmap(); }
|
2007-07-15 19:29:20 +00:00
|
|
|
virtual void SetBitmapDisabled(const wxBitmap& disabled)
|
2007-04-14 09:58:37 +00:00
|
|
|
{ m_bmpDisabled = disabled; OnSetBitmap(); }
|
2007-07-15 19:29:20 +00:00
|
|
|
virtual void SetBitmapHover(const wxBitmap& hover)
|
2005-11-03 01:48:10 +00:00
|
|
|
{ m_bmpHover = hover; OnSetBitmap(); }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// retrieve the bitmaps
|
|
|
|
const wxBitmap& GetBitmapLabel() const { return m_bmpNormal; }
|
|
|
|
const wxBitmap& GetBitmapSelected() const { return m_bmpSelected; }
|
|
|
|
const wxBitmap& GetBitmapFocus() const { return m_bmpFocus; }
|
|
|
|
const wxBitmap& GetBitmapDisabled() const { return m_bmpDisabled; }
|
2005-11-03 01:48:10 +00:00
|
|
|
const wxBitmap& GetBitmapHover() const { return m_bmpHover; }
|
2001-06-26 20:59:19 +00:00
|
|
|
wxBitmap& GetBitmapLabel() { return m_bmpNormal; }
|
|
|
|
wxBitmap& GetBitmapSelected() { return m_bmpSelected; }
|
|
|
|
wxBitmap& GetBitmapFocus() { return m_bmpFocus; }
|
|
|
|
wxBitmap& GetBitmapDisabled() { return m_bmpDisabled; }
|
2005-11-03 01:48:10 +00:00
|
|
|
wxBitmap& GetBitmapHover() { return m_bmpHover; }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// set/get the margins around the button
|
|
|
|
virtual void SetMargins(int x, int y) { m_marginX = x; m_marginY = y; }
|
|
|
|
int GetMarginX() const { return m_marginX; }
|
|
|
|
int GetMarginY() const { return m_marginY; }
|
|
|
|
|
2005-11-03 00:40:00 +00:00
|
|
|
// deprecated synonym for SetBitmapLabel()
|
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
|
|
|
wxDEPRECATED( void SetLabel(const wxBitmap& bitmap) );
|
|
|
|
|
|
|
|
// prevent virtual function hiding
|
|
|
|
virtual void SetLabel(const wxString& label)
|
2005-11-03 16:47:29 +00:00
|
|
|
{ wxWindow::SetLabel(label); }
|
2005-11-03 00:40:00 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
protected:
|
|
|
|
// function called when any of the bitmaps changes
|
2005-02-27 15:43:58 +00:00
|
|
|
virtual void OnSetBitmap() { InvalidateBestSize(); Refresh(); }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// the bitmaps for various states
|
|
|
|
wxBitmap m_bmpNormal,
|
|
|
|
m_bmpSelected,
|
|
|
|
m_bmpFocus,
|
2005-11-03 01:48:10 +00:00
|
|
|
m_bmpDisabled,
|
|
|
|
m_bmpHover;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// the margins around the bitmap
|
|
|
|
int m_marginX,
|
|
|
|
m_marginY;
|
2003-07-22 00:24:07 +00:00
|
|
|
|
|
|
|
|
2009-02-08 11:45:59 +00:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxBitmapButtonBase);
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
2005-11-03 00:40:00 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
2005-11-03 01:56:02 +00:00
|
|
|
inline void wxBitmapButtonBase::SetLabel(const wxBitmap& bitmap)
|
|
|
|
{
|
|
|
|
SetBitmapLabel(bitmap);
|
|
|
|
}
|
2005-11-03 00:40:00 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/bmpbuttn.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/bmpbuttn.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/motif/bmpbuttn.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/bmpbuttn.h"
|
2006-01-23 03:27:34 +00:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/bmpbuttn.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2008-06-11 19:17:41 +00:00
|
|
|
#include "wx/osx/bmpbuttn.h"
|
2003-03-22 06:18:36 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/bmpbuttn.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/os2/bmpbuttn.h"
|
2008-03-02 00:43:06 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/bmpbuttn.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // wxUSE_BMPBUTTON
|
|
|
|
|
|
|
|
#endif // _WX_BMPBUTTON_H_BASE_
|