]> git.saurik.com Git - wxWidgets.git/blame - include/wx/button.h
fix typos and update MSW code to use new wxPENSTYLE_* enum values
[wxWidgets.git] / include / wx / button.h
CommitLineData
1e6feb95
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/button.h
3// Purpose: wxButtonBase class
4// Author: Vadim Zetlin
5// Modified by:
6// Created: 15.08.00
7// RCS-ID: $Id$
8// Copyright: (c) Vadim Zetlin
65571936 9// Licence: wxWindows licence
1e6feb95
VZ
10/////////////////////////////////////////////////////////////////////////////
11
34138703
JS
12#ifndef _WX_BUTTON_H_BASE_
13#define _WX_BUTTON_H_BASE_
c801d85f 14
997176a3
VZ
15#include "wx/defs.h"
16
7ef8bfc4 17// ----------------------------------------------------------------------------
0b4f47a3 18// wxButton flags shared with other classes
7ef8bfc4
VZ
19// ----------------------------------------------------------------------------
20
0b4f47a3 21#if wxUSE_TOGGLEBTN || wxUSE_BUTTON
7ccb2521
VZ
22
23// These flags affect label alignment
7ef8bfc4
VZ
24#define wxBU_LEFT 0x0040
25#define wxBU_TOP 0x0080
26#define wxBU_RIGHT 0x0100
27#define wxBU_BOTTOM 0x0200
041ae202 28#define wxBU_ALIGN_MASK ( wxBU_LEFT | wxBU_TOP | wxBU_RIGHT | wxBU_BOTTOM )
0b4f47a3
DS
29#endif
30
31#if wxUSE_BUTTON
32
33// ----------------------------------------------------------------------------
34// wxButton specific flags
35// ----------------------------------------------------------------------------
36
82cddbd9 37#if WXWIN_COMPATIBILITY_2_8
0b4f47a3
DS
38// These two flags are obsolete
39#define wxBU_NOAUTODRAW 0x0000
40#define wxBU_AUTODRAW 0x0004
82cddbd9 41#endif
0b4f47a3 42
7ef8bfc4
VZ
43// by default, the buttons will be created with some (system dependent)
44// minimal size to make them look nicer, giving this style will make them as
45// small as possible
46#define wxBU_EXACTFIT 0x0001
47
1e6feb95
VZ
48#include "wx/control.h"
49
b5dbe15d 50class WXDLLIMPEXP_FWD_CORE wxBitmap;
1e6feb95 51
f36e602b 52extern WXDLLEXPORT_DATA(const char) wxButtonNameStr[];
1e6feb95
VZ
53
54// ----------------------------------------------------------------------------
55// wxButton: a push button
56// ----------------------------------------------------------------------------
57
58class WXDLLEXPORT wxButtonBase : public wxControl
59{
60public:
6463b9f5 61 wxButtonBase() { }
fc7a2a60 62
1e6feb95 63 // show the image in the button in addition to the label
d699f48b 64 virtual void SetImageLabel(const wxBitmap& WXUNUSED(bitmap)) { }
1e6feb95
VZ
65
66 // set the margins around the image
d699f48b 67 virtual void SetImageMargins(wxCoord WXUNUSED(x), wxCoord WXUNUSED(y)) { }
1e6feb95 68
94aff5ff
VZ
69 // make this button the default button in its top level window
70 //
71 // returns the old default item (possibly NULL)
72 virtual wxWindow *SetDefault();
1e6feb95 73
e8e24dfa
RD
74 // Buttons on MSW can look bad if they are not native colours, because
75 // then they become owner-drawn and not theme-drawn. Disable it here
76 // in wxButtonBase to make it consistent.
77 virtual bool ShouldInheritColours() const { return false; }
78
1e6feb95
VZ
79 // returns the default button size for this platform
80 static wxSize GetDefaultSize();
fc7a2a60 81
401e3b6e 82protected:
dc797d8e
JS
83 // choose the default border for this window
84 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
85
fc7a2a60 86 DECLARE_NO_COPY_CLASS(wxButtonBase)
1e6feb95
VZ
87};
88
89#if defined(__WXUNIVERSAL__)
90 #include "wx/univ/button.h"
91#elif defined(__WXMSW__)
92 #include "wx/msw/button.h"
2049ba38 93#elif defined(__WXMOTIF__)
1e6feb95 94 #include "wx/motif/button.h"
1be7a35c 95#elif defined(__WXGTK20__)
1e6feb95 96 #include "wx/gtk/button.h"
1be7a35c
MR
97#elif defined(__WXGTK__)
98 #include "wx/gtk1/button.h"
34138703 99#elif defined(__WXMAC__)
1e6feb95 100 #include "wx/mac/button.h"
e64df9bc
DE
101#elif defined(__WXCOCOA__)
102 #include "wx/cocoa/button.h"
1777b9bb 103#elif defined(__WXPM__)
1e6feb95 104 #include "wx/os2/button.h"
db101bd3
WS
105#elif defined(__WXPALMOS__)
106 #include "wx/palmos/button.h"
c801d85f
KB
107#endif
108
1e6feb95
VZ
109#endif // wxUSE_BUTTON
110
c801d85f 111#endif
34138703 112 // _WX_BUTTON_H_BASE_