2001-06-26 20:59:19 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/button.h
|
|
|
|
// Purpose: wxButtonBase class
|
|
|
|
// Author: Vadim Zetlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 15.08.00
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Vadim Zetlin
|
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_BUTTON_H_BASE_
|
|
|
|
#define _WX_BUTTON_H_BASE_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2003-07-09 21:48:53 +00:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2001-07-10 13:44:04 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
2004-05-30 15:14:41 +00:00
|
|
|
// wxButton flags shared with other classes
|
2001-07-10 13:44:04 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2004-05-30 15:14:41 +00:00
|
|
|
#if wxUSE_TOGGLEBTN || wxUSE_BUTTON
|
2002-09-02 15:18:25 +00:00
|
|
|
|
|
|
|
// These flags affect label alignment
|
2001-07-10 13:44:04 +00:00
|
|
|
#define wxBU_LEFT 0x0040
|
|
|
|
#define wxBU_TOP 0x0080
|
|
|
|
#define wxBU_RIGHT 0x0100
|
|
|
|
#define wxBU_BOTTOM 0x0200
|
2004-11-15 06:23:57 +00:00
|
|
|
#define wxBU_ALIGN_MASK ( wxBU_LEFT | wxBU_TOP | wxBU_RIGHT | wxBU_BOTTOM )
|
2004-05-30 15:14:41 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if wxUSE_BUTTON
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxButton specific flags
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// These two flags are obsolete
|
|
|
|
#define wxBU_NOAUTODRAW 0x0000
|
|
|
|
#define wxBU_AUTODRAW 0x0004
|
|
|
|
|
2001-07-10 13:44:04 +00:00
|
|
|
// by default, the buttons will be created with some (system dependent)
|
|
|
|
// minimal size to make them look nicer, giving this style will make them as
|
|
|
|
// small as possible
|
|
|
|
#define wxBU_EXACTFIT 0x0001
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxBitmap;
|
|
|
|
|
2005-01-21 18:48:22 +00:00
|
|
|
extern WXDLLEXPORT_DATA(const wxChar*) wxButtonNameStr;
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxButton: a push button
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxButtonBase : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
2004-01-15 13:49:22 +00:00
|
|
|
wxButtonBase() { }
|
2003-07-22 00:24:07 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// show the image in the button in addition to the label
|
2001-07-31 17:50:16 +00:00
|
|
|
virtual void SetImageLabel(const wxBitmap& WXUNUSED(bitmap)) { }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// set the margins around the image
|
2001-07-31 17:50:16 +00:00
|
|
|
virtual void SetImageMargins(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y)) { }
|
2001-06-26 20:59:19 +00:00
|
|
|
|
|
|
|
// this wxButton method is called when the button becomes the default one
|
|
|
|
// on its panel
|
|
|
|
virtual void SetDefault() { }
|
|
|
|
|
2003-12-03 03:24:47 +00:00
|
|
|
// Buttons on MSW can look bad if they are not native colours, because
|
|
|
|
// then they become owner-drawn and not theme-drawn. Disable it here
|
|
|
|
// in wxButtonBase to make it consistent.
|
|
|
|
virtual bool ShouldInheritColours() const { return false; }
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// returns the default button size for this platform
|
|
|
|
static wxSize GetDefaultSize();
|
2003-07-22 00:24:07 +00:00
|
|
|
|
2004-08-15 15:56:56 +00:00
|
|
|
protected:
|
2003-07-22 00:24:07 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxButtonBase)
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/button.h"
|
|
|
|
#elif defined(__WXMSW__)
|
|
|
|
#include "wx/msw/button.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXMOTIF__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/motif/button.h"
|
1998-07-10 14:15:17 +00:00
|
|
|
#elif defined(__WXGTK__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/gtk/button.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXMAC__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/mac/button.h"
|
2003-03-22 06:18:36 +00:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/button.h"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/os2/button.h"
|
2005-01-24 07:38:52 +00:00
|
|
|
#elif defined(__WXPALMOS__)
|
|
|
|
#include "wx/palmos/button.h"
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // wxUSE_BUTTON
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif
|
1998-08-15 00:23:28 +00:00
|
|
|
// _WX_BUTTON_H_BASE_
|