1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/button.h
3 // Purpose: wxButton class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_OSX_BUTTON_H_
13 #define _WX_OSX_BUTTON_H_
15 #include "wx/control.h"
16 #include "wx/gdicmn.h"
19 class WXDLLIMPEXP_CORE wxButton
: public wxButtonBase
23 wxButton(wxWindow
*parent
,
25 const wxString
& label
= wxEmptyString
,
26 const wxPoint
& pos
= wxDefaultPosition
,
27 const wxSize
& size
= wxDefaultSize
,
29 const wxValidator
& validator
= wxDefaultValidator
,
30 const wxString
& name
= wxButtonNameStr
)
32 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
35 bool Create(wxWindow
*parent
,
37 const wxString
& label
= wxEmptyString
,
38 const wxPoint
& pos
= wxDefaultPosition
,
39 const wxSize
& size
= wxDefaultSize
,
41 const wxValidator
& validator
= wxDefaultValidator
,
42 const wxString
& name
= wxButtonNameStr
);
44 virtual void SetLabel(const wxString
& label
);
45 virtual wxWindow
*SetDefault();
46 virtual void Command(wxCommandEvent
& event
);
48 // osx specific event handling common for all osx-ports
50 virtual bool OSXHandleClicked( double timestampsec
);
53 void OSXUpdateAfterLabelChange(const wxString
& label
);
57 DECLARE_DYNAMIC_CLASS(wxButton
)
60 // OS X specific class, not part of public wx API
61 class WXDLLIMPEXP_CORE wxDisclosureTriangle
: public wxControl
64 wxDisclosureTriangle(wxWindow
*parent
,
66 const wxString
& label
= wxEmptyString
,
67 const wxPoint
& pos
= wxDefaultPosition
,
68 const wxSize
& size
= wxDefaultSize
,
69 long style
= wxBORDER_NONE
,
70 const wxValidator
& validator
= wxDefaultValidator
,
71 const wxString
& name
= wxButtonNameStr
)
73 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
76 bool Create(wxWindow
*parent
,
78 const wxString
& label
= wxEmptyString
,
79 const wxPoint
& pos
= wxDefaultPosition
,
80 const wxSize
& size
= wxDefaultSize
,
81 long style
= wxBORDER_NONE
,
82 const wxValidator
& validator
= wxDefaultValidator
,
83 const wxString
& name
= wxButtonNameStr
);
85 void SetOpen( bool open
);
88 // osx specific event handling common for all osx-ports
90 virtual bool OSXHandleClicked( double timestampsec
);
93 virtual wxSize
DoGetBestSize() const ;
96 #endif // _WX_OSX_BUTTON_H_