]>
Commit | Line | Data |
---|---|---|
6762286d | 1 | ///////////////////////////////////////////////////////////////////////////// |
80fdcdb9 | 2 | // Name: wx/osx/button.h |
6762286d SC |
3 | // Purpose: wxButton class |
4 | // Author: Stefan Csomor | |
5 | // Modified by: | |
6 | // Created: 1998-01-01 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Stefan Csomor | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
e5d05b90 VZ |
12 | #ifndef _WX_OSX_BUTTON_H_ |
13 | #define _WX_OSX_BUTTON_H_ | |
6762286d SC |
14 | |
15 | #include "wx/control.h" | |
16 | #include "wx/gdicmn.h" | |
17 | ||
6762286d | 18 | // Pushbutton |
e5d05b90 | 19 | class WXDLLIMPEXP_CORE wxButton : public wxButtonBase |
6762286d SC |
20 | { |
21 | public: | |
22 | wxButton() {} | |
23 | wxButton(wxWindow *parent, | |
24 | wxWindowID id, | |
25 | const wxString& label = wxEmptyString, | |
26 | const wxPoint& pos = wxDefaultPosition, | |
27 | const wxSize& size = wxDefaultSize, | |
28 | long style = 0, | |
29 | const wxValidator& validator = wxDefaultValidator, | |
30 | const wxString& name = wxButtonNameStr) | |
31 | { | |
32 | Create(parent, id, label, pos, size, style, validator, name); | |
33 | } | |
34 | ||
35 | bool Create(wxWindow *parent, | |
36 | wxWindowID id, | |
37 | const wxString& label = wxEmptyString, | |
38 | const wxPoint& pos = wxDefaultPosition, | |
39 | const wxSize& size = wxDefaultSize, | |
40 | long style = 0, | |
41 | const wxValidator& validator = wxDefaultValidator, | |
42 | const wxString& name = wxButtonNameStr); | |
43 | ||
85284ca4 | 44 | virtual void SetLabel(const wxString& label); |
6762286d SC |
45 | virtual wxWindow *SetDefault(); |
46 | virtual void Command(wxCommandEvent& event); | |
47 | ||
48 | // osx specific event handling common for all osx-ports | |
e5d05b90 | 49 | |
12b5f4b4 | 50 | virtual bool OSXHandleClicked( double timestampsec ); |
6762286d | 51 | |
0afa3752 | 52 | #if wxOSX_USE_COCOA |
5af80d31 | 53 | void OSXUpdateAfterLabelChange(const wxString& label); |
0afa3752 VZ |
54 | #endif |
55 | ||
6762286d | 56 | protected: |
6762286d SC |
57 | DECLARE_DYNAMIC_CLASS(wxButton) |
58 | }; | |
59 | ||
e5d05b90 VZ |
60 | // OS X specific class, not part of public wx API |
61 | class WXDLLIMPEXP_CORE wxDisclosureTriangle : public wxControl | |
6762286d SC |
62 | { |
63 | public: | |
64 | wxDisclosureTriangle(wxWindow *parent, | |
65 | wxWindowID id, | |
66 | const wxString& label = wxEmptyString, | |
67 | const wxPoint& pos = wxDefaultPosition, | |
68 | const wxSize& size = wxDefaultSize, | |
73b1b996 | 69 | long style = wxBORDER_NONE, |
6762286d SC |
70 | const wxValidator& validator = wxDefaultValidator, |
71 | const wxString& name = wxButtonNameStr) | |
72 | { | |
73 | Create(parent, id, label, pos, size, style, validator, name); | |
74 | } | |
75 | ||
76 | bool Create(wxWindow *parent, | |
77 | wxWindowID id, | |
78 | const wxString& label = wxEmptyString, | |
79 | const wxPoint& pos = wxDefaultPosition, | |
80 | const wxSize& size = wxDefaultSize, | |
73b1b996 | 81 | long style = wxBORDER_NONE, |
6762286d SC |
82 | const wxValidator& validator = wxDefaultValidator, |
83 | const wxString& name = wxButtonNameStr); | |
84 | ||
85 | void SetOpen( bool open ); | |
86 | bool IsOpen() const; | |
87 | ||
88 | // osx specific event handling common for all osx-ports | |
e5d05b90 | 89 | |
12b5f4b4 | 90 | virtual bool OSXHandleClicked( double timestampsec ); |
6762286d SC |
91 | |
92 | protected: | |
93 | virtual wxSize DoGetBestSize() const ; | |
6762286d SC |
94 | }; |
95 | ||
e5d05b90 | 96 | #endif // _WX_OSX_BUTTON_H_ |