2001-06-26 16:59:19 -04: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 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2001-06-26 16:59:19 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_BMPBUTTON_H_BASE_
|
|
|
|
#define _WX_BMPBUTTON_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2003-07-09 17:48:53 -04:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if wxUSE_BMPBUTTON
|
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
#include "wx/button.h"
|
|
|
|
|
2006-01-16 09:59:55 -05:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar) wxButtonNameStr[];
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxBitmapButton: a button which shows bitmaps instead of the usual string.
|
|
|
|
// It has different bitmaps for different states (focused/disabled/pressed)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxBitmapButtonBase : public wxButton
|
|
|
|
{
|
|
|
|
public:
|
2004-01-15 08:49:22 -05:00
|
|
|
wxBitmapButtonBase()
|
2005-11-02 19:40:00 -05:00
|
|
|
{
|
|
|
|
m_marginX =
|
|
|
|
m_marginY = 0;
|
|
|
|
}
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// set the bitmaps
|
|
|
|
void SetBitmapLabel(const wxBitmap& bitmap)
|
|
|
|
{ m_bmpNormal = bitmap; OnSetBitmap(); }
|
|
|
|
void SetBitmapSelected(const wxBitmap& sel)
|
|
|
|
{ m_bmpSelected = sel; OnSetBitmap(); };
|
|
|
|
void SetBitmapFocus(const wxBitmap& focus)
|
|
|
|
{ m_bmpFocus = focus; OnSetBitmap(); };
|
|
|
|
void SetBitmapDisabled(const wxBitmap& disabled)
|
|
|
|
{ m_bmpDisabled = disabled; OnSetBitmap(); };
|
2005-11-02 20:48:10 -05:00
|
|
|
void SetBitmapHover(const wxBitmap& hover)
|
|
|
|
{ m_bmpHover = hover; OnSetBitmap(); }
|
2001-06-26 16:59:19 -04: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-02 20:48:10 -05:00
|
|
|
const wxBitmap& GetBitmapHover() const { return m_bmpHover; }
|
2001-06-26 16:59:19 -04:00
|
|
|
wxBitmap& GetBitmapLabel() { return m_bmpNormal; }
|
|
|
|
wxBitmap& GetBitmapSelected() { return m_bmpSelected; }
|
|
|
|
wxBitmap& GetBitmapFocus() { return m_bmpFocus; }
|
|
|
|
wxBitmap& GetBitmapDisabled() { return m_bmpDisabled; }
|
2005-11-02 20:48:10 -05:00
|
|
|
wxBitmap& GetBitmapHover() { return m_bmpHover; }
|
2001-06-26 16:59:19 -04: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-02 19:40:00 -05: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 11:47:29 -05:00
|
|
|
{ wxWindow::SetLabel(label); }
|
2005-11-02 19:40:00 -05:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
protected:
|
|
|
|
// function called when any of the bitmaps changes
|
2005-02-27 10:43:58 -05:00
|
|
|
virtual void OnSetBitmap() { InvalidateBestSize(); Refresh(); }
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// the bitmaps for various states
|
|
|
|
wxBitmap m_bmpNormal,
|
|
|
|
m_bmpSelected,
|
|
|
|
m_bmpFocus,
|
2005-11-02 20:48:10 -05:00
|
|
|
m_bmpDisabled,
|
|
|
|
m_bmpHover;
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// the margins around the bitmap
|
|
|
|
int m_marginX,
|
|
|
|
m_marginY;
|
2003-07-21 20:24:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxBitmapButtonBase)
|
2001-06-26 16:59:19 -04:00
|
|
|
};
|
|
|
|
|
2005-11-02 19:40:00 -05:00
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
2005-11-02 20:56:02 -05:00
|
|
|
inline void wxBitmapButtonBase::SetLabel(const wxBitmap& bitmap)
|
|
|
|
{
|
|
|
|
SetBitmapLabel(bitmap);
|
|
|
|
}
|
2005-11-02 19:40:00 -05:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_6
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/bmpbuttn.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/bmpbuttn.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/motif/bmpbuttn.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK20__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/gtk/bmpbuttn.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/bmpbuttn.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/mac/bmpbuttn.h"
|
2003-03-22 01:18:36 -05:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/bmpbuttn.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 16:59:19 -04:00
|
|
|
#include "wx/os2/bmpbuttn.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#endif // wxUSE_BMPBUTTON
|
|
|
|
|
|
|
|
#endif // _WX_BMPBUTTON_H_BASE_
|