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/button.h"
|
|
|
|
|
2009-10-09 08:24:35 -04:00
|
|
|
// FIXME: right now only wxMSW, wxGTK and wxOSX implement bitmap support in wxButton
|
2009-06-15 19:10:16 -04:00
|
|
|
// itself, this shouldn't be used for the other platforms neither
|
|
|
|
// when all of them do it
|
2009-10-09 08:24:35 -04:00
|
|
|
#if (defined(__WXMSW__) || defined(__WXGTK20__) || defined(__WXOSX__)) && !defined(__WXUNIVERSAL__)
|
2009-06-15 19:10:16 -04:00
|
|
|
#define wxHAS_BUTTON_BITMAP
|
|
|
|
#endif
|
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)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxBitmapButtonBase : public wxButton
|
2001-06-26 16:59:19 -04:00
|
|
|
{
|
|
|
|
public:
|
2004-01-15 08:49:22 -05:00
|
|
|
wxBitmapButtonBase()
|
2005-11-02 19:40:00 -05:00
|
|
|
{
|
2009-06-15 19:10:16 -04:00
|
|
|
#ifndef wxHAS_BUTTON_BITMAP
|
2005-11-02 19:40:00 -05:00
|
|
|
m_marginX =
|
|
|
|
m_marginY = 0;
|
2009-06-15 19:10:16 -04:00
|
|
|
#endif // wxHAS_BUTTON_BITMAP
|
2005-11-02 19:40:00 -05:00
|
|
|
}
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2009-06-28 12:14:37 -04:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID winid,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
long style,
|
|
|
|
const wxValidator& validator,
|
|
|
|
const wxString& name)
|
|
|
|
{
|
|
|
|
// We use wxBU_NOTEXT to let the base class Create() know that we are
|
|
|
|
// not going to show the label: this is a hack needed for wxGTK where
|
|
|
|
// we can show both label and bitmap only with GTK 2.6+ but we always
|
|
|
|
// can show just one of them and this style allows us to choose which
|
|
|
|
// one we need.
|
|
|
|
//
|
|
|
|
// And we also use wxBU_EXACTFIT to avoid being resized up to the
|
|
|
|
// standard button size as this doesn't make sense for bitmap buttons
|
|
|
|
// which are not standard anyhow and should fit their bitmap size.
|
2009-06-28 12:22:55 -04:00
|
|
|
return wxButton::Create(parent, winid, "",
|
|
|
|
pos, size,
|
2009-06-28 12:14:37 -04:00
|
|
|
style | wxBU_NOTEXT | wxBU_EXACTFIT,
|
|
|
|
validator, name);
|
|
|
|
}
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// set/get the margins around the button
|
2009-06-15 19:10:16 -04:00
|
|
|
virtual void SetMargins(int x, int y)
|
|
|
|
{
|
|
|
|
DoSetBitmapMargins(x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetMarginX() const { return DoGetBitmapMargins().x; }
|
|
|
|
int GetMarginY() const { return DoGetBitmapMargins().y; }
|
2001-06-26 16:59:19 -04:00
|
|
|
|
2005-11-02 19:40:00 -05:00
|
|
|
// deprecated synonym for SetBitmapLabel()
|
|
|
|
#if WXWIN_COMPATIBILITY_2_6
|
2009-06-16 11:59:42 -04:00
|
|
|
wxDEPRECATED_INLINE( void SetLabel(const wxBitmap& bitmap),
|
|
|
|
SetBitmapLabel(bitmap); )
|
2005-11-02 19:40:00 -05:00
|
|
|
|
|
|
|
// 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:
|
2009-06-15 19:10:16 -04:00
|
|
|
#ifndef wxHAS_BUTTON_BITMAP
|
2001-06-26 16:59:19 -04:00
|
|
|
// 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
|
|
|
|
2009-06-14 18:55:24 -04:00
|
|
|
virtual wxBitmap DoGetBitmap(State which) const { return m_bitmaps[which]; }
|
|
|
|
virtual void DoSetBitmap(const wxBitmap& bitmap, State which)
|
|
|
|
{ m_bitmaps[which] = bitmap; OnSetBitmap(); }
|
|
|
|
|
2009-06-15 19:10:16 -04:00
|
|
|
virtual wxSize DoGetBitmapMargins() const
|
|
|
|
{
|
|
|
|
return wxSize(m_marginX, m_marginY);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void DoSetBitmapMargins(int x, int y)
|
|
|
|
{
|
|
|
|
m_marginX = x;
|
|
|
|
m_marginY = y;
|
|
|
|
}
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// the bitmaps for various states
|
2009-06-14 18:55:24 -04:00
|
|
|
wxBitmap m_bitmaps[State_Max];
|
2001-06-26 16:59:19 -04:00
|
|
|
|
|
|
|
// the margins around the bitmap
|
|
|
|
int m_marginX,
|
|
|
|
m_marginY;
|
2009-06-15 19:10:16 -04:00
|
|
|
#endif // !wxHAS_BUTTON_BITMAP
|
2003-07-21 20:24:07 -04:00
|
|
|
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxBitmapButtonBase);
|
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__)
|
2008-06-11 15:17:41 -04:00
|
|
|
#include "wx/osx/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"
|
2008-03-01 19:43:06 -05:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/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_
|