]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/palmos/button.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/palmos/button.h
3 // Purpose: wxButton class
4 // Author: William Osborne - minimal working wxPalmOS port
5 // Modified by: Wlodzimierz ABX Skiba - native wxButton implementation
8 // Copyright: (c) William Osborne, Wlodzimierz Skiba
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "button.h"
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
23 class WXDLLEXPORT wxButton
: public wxButtonBase
27 wxButton(wxWindow
*parent
,
29 const wxString
& label
= wxEmptyString
,
30 const wxPoint
& pos
= wxDefaultPosition
,
31 const wxSize
& size
= wxDefaultSize
,
33 const wxValidator
& validator
= wxDefaultValidator
,
34 const wxString
& name
= wxButtonNameStr
)
36 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
39 bool Create(wxWindow
*parent
,
41 const wxString
& label
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
45 const wxValidator
& validator
= wxDefaultValidator
,
46 const wxString
& name
= wxButtonNameStr
);
50 virtual void SetDefault();
52 // implementation from now on
53 virtual void Command(wxCommandEvent
& event
);
55 // send a notification event, return true if processed
56 bool SendClickEvent();
60 // default button handling
62 void UnsetTmpDefault();
64 // set or unset BS_DEFPUSHBUTTON style
65 static void SetDefaultStyle(wxButton
*btn
, bool on
);
67 // usually overridden base class virtuals
68 virtual wxSize
DoGetBestSize() const;
71 DECLARE_DYNAMIC_CLASS_NO_COPY(wxButton
)