]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/button.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxButton class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "button.h"
19 #include "wx/control.h"
21 WXDLLEXPORT_DATA(extern const wxChar
*) wxButtonNameStr
;
23 // ----------------------------------------------------------------------------
25 // ----------------------------------------------------------------------------
27 class WXDLLEXPORT wxButton
: public wxControl
29 DECLARE_DYNAMIC_CLASS(wxButton
)
33 wxButton(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
34 const wxPoint
& pos
= wxDefaultPosition
,
35 const wxSize
& size
= wxDefaultSize
, long style
= 0,
36 const wxValidator
& validator
= wxDefaultValidator
,
37 const wxString
& name
= wxButtonNameStr
)
39 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
42 bool Create(wxWindow
*parent
, wxWindowID id
, const wxString
& label
,
43 const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
, long style
= 0,
45 const wxValidator
& validator
= wxDefaultValidator
,
46 const wxString
& name
= wxButtonNameStr
);
50 virtual void SetDefault();
52 static wxSize
GetDefaultSize();
54 // implementation from now on
55 virtual void Command(wxCommandEvent
& event
);
56 virtual long MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
);
57 virtual bool MSWCommand(WXUINT param
, WXWORD id
);
60 // coloured buttons support
61 virtual bool SetBackgroundColour(const wxColour
&colour
);
62 virtual bool SetForegroundColour(const wxColour
&colour
);
64 virtual bool MSWOnDraw(WXDRAWITEMSTRUCT
*item
);
67 void MakeOwnerDrawn();
71 // send a notification event, return TRUE if processed
72 bool SendClickEvent();
74 virtual wxSize
DoGetBestSize() const;