]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/button.h
Source cleaning: -1/wxID_ANY/wxDefaultCoord, ::, !!, TRUE/true, FALSE/false, whitespa...
[wxWidgets.git] / include / wx / msw / button.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////////
1e6feb95 2// Name: wx/msw/button.h
2bda0e17
KB
3// Purpose: wxButton class
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
bbcdf8bc 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
bbcdf8bc
JS
12#ifndef _WX_BUTTON_H_
13#define _WX_BUTTON_H_
2bda0e17 14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
2bda0e17
KB
16#pragma interface "button.h"
17#endif
18
edccf428 19// ----------------------------------------------------------------------------
2bda0e17 20// Pushbutton
edccf428
VZ
21// ----------------------------------------------------------------------------
22
1e6feb95 23class WXDLLEXPORT wxButton : public wxButtonBase
2bda0e17 24{
bfc6fde4
VZ
25public:
26 wxButton() { }
1e6feb95
VZ
27 wxButton(wxWindow *parent,
28 wxWindowID id,
29 const wxString& label,
30 const wxPoint& pos = wxDefaultPosition,
31 const wxSize& size = wxDefaultSize,
32 long style = 0,
33 const wxValidator& validator = wxDefaultValidator,
34 const wxString& name = wxButtonNameStr)
bfc6fde4
VZ
35 {
36 Create(parent, id, label, pos, size, style, validator, name);
37 }
fcf90ee1 38
401e3b6e
VS
39 wxButton(wxWindow *parent, wxWindowID id, wxStockItemID stock,
40 const wxString& descriptiveLabel = wxEmptyString,
41 const wxPoint& pos = wxDefaultPosition,
42 long style = 0,
43 const wxValidator& validator = wxDefaultValidator,
44 const wxString& name = wxButtonNameStr)
45 {
46 Create(parent, id, stock, descriptiveLabel, pos, style, validator, name);
47 }
fcf90ee1 48
401e3b6e
VS
49 bool Create(wxWindow *parent, wxWindowID id, wxStockItemID stock,
50 const wxString& descriptiveLabel = wxEmptyString,
51 const wxPoint& pos = wxDefaultPosition,
52 long style = 0,
53 const wxValidator& validator = wxDefaultValidator,
54 const wxString& name = wxButtonNameStr)
55 {
56 return CreateStock(parent, id, stock, descriptiveLabel,
57 pos, style, validator, name);
58 }
bfc6fde4 59
1e6feb95
VZ
60 bool Create(wxWindow *parent,
61 wxWindowID id,
62 const wxString& label,
63 const wxPoint& pos = wxDefaultPosition,
64 const wxSize& size = wxDefaultSize,
65 long style = 0,
66 const wxValidator& validator = wxDefaultValidator,
67 const wxString& name = wxButtonNameStr);
bfc6fde4 68
edccf428
VZ
69 virtual ~wxButton();
70
bfc6fde4 71 virtual void SetDefault();
edccf428
VZ
72
73 // implementation from now on
bfc6fde4 74 virtual void Command(wxCommandEvent& event);
c140b7e7 75 virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
bfc6fde4 76 virtual bool MSWCommand(WXUINT param, WXWORD id);
bfc6fde4 77
cc0bffac
RD
78 virtual void ApplyParentThemeBackground(const wxColour& bg)
79 {
80 // avoide switching into owner-drawn mode
81 wxControl::SetBackgroundColour(bg);
82 }
fcf90ee1 83
cd0b1709
VZ
84#ifdef __WIN32__
85 // coloured buttons support
86 virtual bool SetBackgroundColour(const wxColour &colour);
87 virtual bool SetForegroundColour(const wxColour &colour);
88
89 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
90
91private:
92 void MakeOwnerDrawn();
93#endif // __WIN32__
94
bfc6fde4 95protected:
fcf90ee1 96 // send a notification event, return true if processed
edccf428
VZ
97 bool SendClickEvent();
98
036da5e3
VZ
99 // default button handling
100 void SetTmpDefault();
101 void UnsetTmpDefault();
102
7fb1b2b4
VZ
103 // set or unset BS_DEFPUSHBUTTON style
104 static void SetDefaultStyle(wxButton *btn, bool on);
036da5e3 105
5b2f31eb 106 // usually overridden base class virtuals
f68586e5 107 virtual wxSize DoGetBestSize() const;
fe3d9123 108 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const ;
1e6feb95
VZ
109
110private:
fc7a2a60 111 DECLARE_DYNAMIC_CLASS_NO_COPY(wxButton)
2bda0e17
KB
112};
113
114#endif
bbcdf8bc 115 // _WX_BUTTON_H_