]> git.saurik.com Git - wxWidgets.git/blob - include/wx/osx/tglbtn.h
Fall back to the valid normal bitmap if no state-specific bitmap is set.
[wxWidgets.git] / include / wx / osx / tglbtn.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/osx/tglbtn.h
3 // Purpose: Declaration of the wxToggleButton class, which implements a
4 // toggle button under wxMac.
5 // Author: Stefan Csomor
6 // Modified by:
7 // Created: 08.02.01
8 // RCS-ID: $Id$
9 // Copyright: (c) 2004 Stefan Csomor
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
12
13 #ifndef _WX_TOGGLEBUTTON_H_
14 #define _WX_TOGGLEBUTTON_H_
15
16 class WXDLLIMPEXP_CORE wxToggleButton : public wxToggleButtonBase
17 {
18 public:
19 wxToggleButton() {}
20 wxToggleButton(wxWindow *parent,
21 wxWindowID id,
22 const wxString& label,
23 const wxPoint& pos = wxDefaultPosition,
24 const wxSize& size = wxDefaultSize,
25 long style = 0,
26 const wxValidator& validator = wxDefaultValidator,
27 const wxString& name = wxCheckBoxNameStr)
28 {
29 Create(parent, id, label, pos, size, style, validator, name);
30 }
31
32 bool Create(wxWindow *parent,
33 wxWindowID id,
34 const wxString& label,
35 const wxPoint& pos = wxDefaultPosition,
36 const wxSize& size = wxDefaultSize,
37 long style = 0,
38 const wxValidator& validator = wxDefaultValidator,
39 const wxString& name = wxCheckBoxNameStr);
40
41 virtual void SetValue(bool value);
42 virtual bool GetValue() const ;
43
44 virtual bool OSXHandleClicked( double timestampsec );
45
46 virtual void Command(wxCommandEvent& event);
47
48 protected:
49 virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
50 virtual wxSize DoGetBestSize() const;
51
52 private:
53 DECLARE_DYNAMIC_CLASS_NO_COPY(wxToggleButton)
54 };
55
56
57 class WXDLLIMPEXP_CORE wxBitmapToggleButton : public wxToggleButton
58 {
59 public:
60 wxBitmapToggleButton() {}
61 wxBitmapToggleButton(wxWindow *parent,
62 wxWindowID id,
63 const wxBitmap& label,
64 const wxPoint& pos = wxDefaultPosition,
65 const wxSize& size = wxDefaultSize,
66 long style = 0,
67 const wxValidator& validator = wxDefaultValidator,
68 const wxString& name = wxCheckBoxNameStr)
69 {
70 Create(parent, id, label, pos, size, style, validator, name);
71 }
72
73 bool Create(wxWindow *parent,
74 wxWindowID id,
75 const wxBitmap& label,
76 const wxPoint& pos = wxDefaultPosition,
77 const wxSize& size = wxDefaultSize,
78 long style = 0,
79 const wxValidator& validator = wxDefaultValidator,
80 const wxString& name = wxCheckBoxNameStr);
81
82 protected:
83 virtual wxSize DoGetBestSize() const;
84
85 private:
86 DECLARE_DYNAMIC_CLASS_NO_COPY(wxBitmapToggleButton)
87 };
88
89 #endif // _WX_TOGGLEBUTTON_H_
90