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
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_BMPBUTTON
|
|
|
|
|
|
|
|
#include "wx/bitmap.h"
|
|
|
|
#include "wx/button.h"
|
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// 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:
|
|
|
|
wxBitmapButtonBase() { m_marginX = m_marginY = 0; }
|
|
|
|
|
|
|
|
// 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(); };
|
|
|
|
void SetLabel(const wxBitmap& bitmap)
|
|
|
|
{ SetBitmapLabel(bitmap); }
|
|
|
|
|
|
|
|
// 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; }
|
|
|
|
wxBitmap& GetBitmapLabel() { return m_bmpNormal; }
|
|
|
|
wxBitmap& GetBitmapSelected() { return m_bmpSelected; }
|
|
|
|
wxBitmap& GetBitmapFocus() { return m_bmpFocus; }
|
|
|
|
wxBitmap& GetBitmapDisabled() { return m_bmpDisabled; }
|
|
|
|
|
|
|
|
// 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; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// function called when any of the bitmaps changes
|
|
|
|
virtual void OnSetBitmap() { }
|
|
|
|
|
|
|
|
// the bitmaps for various states
|
|
|
|
wxBitmap m_bmpNormal,
|
|
|
|
m_bmpSelected,
|
|
|
|
m_bmpFocus,
|
|
|
|
m_bmpDisabled;
|
|
|
|
|
|
|
|
// the margins around the bitmap
|
|
|
|
int m_marginX,
|
|
|
|
m_marginY;
|
2001-07-06 21:45:11 +00:00
|
|
|
private:
|
|
|
|
// Prevent Virtual function hiding warnings
|
|
|
|
void SetLabel(const wxString& rsLabel)
|
|
|
|
{ wxWindowBase::SetLabel(rsLabel); }
|
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"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/bmpbuttn.h"
|
1998-08-07 20:23:17 +00:00
|
|
|
#elif defined(__WXQT__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/qt/bmpbuttn.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/mac/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"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXSTUBS__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/stubs/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_
|