]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/button.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxButtonBase class
4 // Author: Vadim Zetlin
8 // Copyright: (c) Vadim Zetlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_BUTTON_H_BASE_
13 #define _WX_BUTTON_H_BASE_
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 // These two flags are obsolete
24 #define wxBU_NOAUTODRAW 0x0000
25 #define wxBU_AUTODRAW 0x0004
27 // These flags affect label alignment
28 #define wxBU_LEFT 0x0040
29 #define wxBU_TOP 0x0080
30 #define wxBU_RIGHT 0x0100
31 #define wxBU_BOTTOM 0x0200
33 // by default, the buttons will be created with some (system dependent)
34 // minimal size to make them look nicer, giving this style will make them as
36 #define wxBU_EXACTFIT 0x0001
38 #include "wx/control.h"
40 class WXDLLEXPORT wxBitmap
;
42 WXDLLEXPORT_DATA(extern const wxChar
*) wxButtonNameStr
;
44 // ----------------------------------------------------------------------------
45 // wxButton: a push button
46 // ----------------------------------------------------------------------------
48 class WXDLLEXPORT wxButtonBase
: public wxControl
53 // show the image in the button in addition to the label
54 virtual void SetImageLabel(const wxBitmap
& WXUNUSED(bitmap
)) { }
56 // set the margins around the image
57 virtual void SetImageMargins(wxCoord
WXUNUSED(x
), wxCoord
WXUNUSED(y
)) { }
59 // this wxButton method is called when the button becomes the default one
61 virtual void SetDefault() { }
63 // Buttons on MSW can look bad if they are not native colours, because
64 // then they become owner-drawn and not theme-drawn. Disable it here
65 // in wxButtonBase to make it consistent.
66 virtual bool ShouldInheritColours() const { return false; }
68 // returns the default button size for this platform
69 static wxSize
GetDefaultSize();
71 DECLARE_NO_COPY_CLASS(wxButtonBase
)
74 #if defined(__WXUNIVERSAL__)
75 #include "wx/univ/button.h"
76 #elif defined(__WXMSW__)
77 #include "wx/msw/button.h"
78 #elif defined(__WXMOTIF__)
79 #include "wx/motif/button.h"
80 #elif defined(__WXGTK__)
81 #include "wx/gtk/button.h"
82 #elif defined(__WXMAC__)
83 #include "wx/mac/button.h"
84 #elif defined(__WXCOCOA__)
85 #include "wx/cocoa/button.h"
86 #elif defined(__WXPM__)
87 #include "wx/os2/button.h"
90 #endif // wxUSE_BUTTON