1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/gtk/tglbtn.h
3 // Purpose: Declaration of the wxToggleButton class, which implements a
4 // toggle button under wxGTK.
5 // Author: John Norris, minor changes by Axel Schlueter
9 // Copyright: (c) 2000 Johnny C. Norris II
10 // License: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_GTK_TOGGLEBUTTON_H_
14 #define _WX_GTK_TOGGLEBUTTON_H_
16 #include "wx/bitmap.h"
18 //-----------------------------------------------------------------------------
20 //-----------------------------------------------------------------------------
22 class WXDLLIMPEXP_FWD_CORE wxToggleButton
;
23 class WXDLLIMPEXP_FWD_CORE wxToggleBitmapButton
;
25 //-----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 extern WXDLLIMPEXP_DATA_CORE(const char) wxCheckBoxNameStr
[];
31 //-----------------------------------------------------------------------------
32 // wxBitmapToggleButton
33 //-----------------------------------------------------------------------------
35 class WXDLLIMPEXP_CORE wxBitmapToggleButton
: public wxToggleButtonBase
38 // construction/destruction
39 wxBitmapToggleButton() {}
40 wxBitmapToggleButton(wxWindow
*parent
,
42 const wxBitmap
& label
,
43 const wxPoint
& pos
= wxDefaultPosition
,
44 const wxSize
& size
= wxDefaultSize
,
46 const wxValidator
& validator
= wxDefaultValidator
,
47 const wxString
& name
= wxCheckBoxNameStr
)
49 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
53 bool Create(wxWindow
*parent
,
55 const wxBitmap
& label
,
56 const wxPoint
& pos
= wxDefaultPosition
,
57 const wxSize
& size
= wxDefaultSize
, long style
= 0,
58 const wxValidator
& validator
= wxDefaultValidator
,
59 const wxString
& name
= wxCheckBoxNameStr
);
62 void SetValue(bool state
);
63 bool GetValue() const;
66 virtual void SetLabel(const wxString
& label
) { wxControl::SetLabel(label
); }
67 virtual void SetLabel(const wxBitmap
& label
);
68 bool Enable(bool enable
= TRUE
);
70 static wxVisualAttributes
71 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
79 void GTKDisableEvents();
80 void GTKEnableEvents();
82 virtual wxSize
DoGetBestSize() const;
83 virtual void DoApplyWidgetStyle(GtkRcStyle
*style
);
84 virtual GdkWindow
*GTKGetWindow(wxArrayGdkWindows
& windows
) const;
87 DECLARE_DYNAMIC_CLASS(wxBitmapToggleButton
)
90 //-----------------------------------------------------------------------------
92 //-----------------------------------------------------------------------------
94 class WXDLLIMPEXP_CORE wxToggleButton
: public wxToggleButtonBase
97 // construction/destruction
99 wxToggleButton(wxWindow
*parent
,
101 const wxString
& label
,
102 const wxPoint
& pos
= wxDefaultPosition
,
103 const wxSize
& size
= wxDefaultSize
,
105 const wxValidator
& validator
= wxDefaultValidator
,
106 const wxString
& name
= wxCheckBoxNameStr
)
108 Create(parent
, id
, label
, pos
, size
, style
, validator
, name
);
111 // Create the control
112 bool Create(wxWindow
*parent
,
114 const wxString
& label
,
115 const wxPoint
& pos
= wxDefaultPosition
,
116 const wxSize
& size
= wxDefaultSize
, long style
= 0,
117 const wxValidator
& validator
= wxDefaultValidator
,
118 const wxString
& name
= wxCheckBoxNameStr
);
121 void SetValue(bool state
);
122 bool GetValue() const;
125 void SetLabel(const wxString
& label
);
126 bool Enable(bool enable
= TRUE
);
128 static wxVisualAttributes
129 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
132 void GTKDisableEvents();
133 void GTKEnableEvents();
135 virtual wxSize
DoGetBestSize() const;
136 virtual void DoApplyWidgetStyle(GtkRcStyle
*style
);
137 virtual GdkWindow
*GTKGetWindow(wxArrayGdkWindows
& windows
) const;
140 DECLARE_DYNAMIC_CLASS(wxToggleButton
)
143 #endif // _WX_GTK_TOGGLEBUTTON_H_