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
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
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
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_BUTTON
|
|
|
|
|
2001-07-10 13:44:04 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxButton flags
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// all these flags are obsolete
|
|
|
|
#define wxBU_NOAUTODRAW 0x0000
|
|
|
|
#define wxBU_AUTODRAW 0x0004
|
|
|
|
#define wxBU_LEFT 0x0040
|
|
|
|
#define wxBU_TOP 0x0080
|
|
|
|
#define wxBU_RIGHT 0x0100
|
|
|
|
#define wxBU_BOTTOM 0x0200
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const wxChar*) wxButtonNameStr;
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxButton: a push button
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxButtonBase : public wxControl
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// 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() { }
|
|
|
|
|
|
|
|
// returns the default button size for this platform
|
|
|
|
static wxSize GetDefaultSize();
|
|
|
|
};
|
|
|
|
|
|
|
|
#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-07 20:23:17 +00:00
|
|
|
#elif defined(__WXQT__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/qt/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"
|
1999-07-28 03:38:12 +00:00
|
|
|
#elif defined(__WXPM__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/os2/button.h"
|
1998-08-15 00:23:28 +00:00
|
|
|
#elif defined(__WXSTUBS__)
|
2001-06-26 20:59:19 +00:00
|
|
|
#include "wx/stubs/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_
|