]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/tglbtn.h
Added experimental async clipboard format query
[wxWidgets.git] / include / wx / gtk / tglbtn.h
CommitLineData
1db8dc4a
VZ
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
6// Modified by:
7// Created: 08.02.01
8// RCS-ID: $Id$
9// Copyright: (c) 2000 Johnny C. Norris II
706fb893 10// License: wxWindows licence
1db8dc4a
VZ
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef _WX_GTK_TOGGLEBUTTON_H_
14#define _WX_GTK_TOGGLEBUTTON_H_
15
4f856067
RR
16#include "wx/bitmap.h"
17
1db8dc4a
VZ
18//-----------------------------------------------------------------------------
19// classes
20//-----------------------------------------------------------------------------
21
b5dbe15d
VS
22class WXDLLIMPEXP_FWD_CORE wxToggleButton;
23class WXDLLIMPEXP_FWD_CORE wxToggleBitmapButton;
1db8dc4a
VZ
24
25//-----------------------------------------------------------------------------
26// global data
27//-----------------------------------------------------------------------------
28
23318a53 29extern WXDLLIMPEXP_DATA_CORE(const char) wxCheckBoxNameStr[];
1db8dc4a 30
4f856067 31//-----------------------------------------------------------------------------
10ff9c61 32// wxBitmapToggleButton
4f856067
RR
33//-----------------------------------------------------------------------------
34
10ff9c61 35class WXDLLIMPEXP_CORE wxBitmapToggleButton: public wxToggleButtonBase
4f856067
RR
36{
37public:
38 // construction/destruction
10ff9c61
RR
39 wxBitmapToggleButton() {}
40 wxBitmapToggleButton(wxWindow *parent,
4f856067
RR
41 wxWindowID id,
42 const wxBitmap& label,
43 const wxPoint& pos = wxDefaultPosition,
44 const wxSize& size = wxDefaultSize,
45 long style = 0,
46 const wxValidator& validator = wxDefaultValidator,
47 const wxString& name = wxCheckBoxNameStr)
48 {
49 Create(parent, id, label, pos, size, style, validator, name);
50 }
51
52 // Create the control
53 bool Create(wxWindow *parent,
54 wxWindowID id,
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);
60
61 // Get/set the value
62 void SetValue(bool state);
63 bool GetValue() const;
64
65 // Set the label
17a1ebd1
VZ
66 virtual void SetLabel(const wxString& label) { wxControl::SetLabel(label); }
67 virtual void SetLabel(const wxBitmap& label);
4f856067
RR
68 bool Enable(bool enable = TRUE);
69
9d522606
RD
70 static wxVisualAttributes
71 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
72
4f856067 73 // implementation
4f856067
RR
74 wxBitmap m_bitmap;
75
76 void OnSetBitmap();
6f02a879
VZ
77
78protected:
c71ab7c1
RR
79 void GTKDisableEvents();
80 void GTKEnableEvents();
23318a53 81
4f856067 82 virtual wxSize DoGetBestSize() const;
ef5c70f9
VZ
83 virtual void DoApplyWidgetStyle(GtkRcStyle *style);
84 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
4f856067
RR
85
86private:
10ff9c61 87 DECLARE_DYNAMIC_CLASS(wxBitmapToggleButton)
4f856067 88};
9d522606 89
1db8dc4a
VZ
90//-----------------------------------------------------------------------------
91// wxToggleButton
92//-----------------------------------------------------------------------------
93
10ff9c61 94class WXDLLIMPEXP_CORE wxToggleButton: public wxToggleButtonBase
1db8dc4a
VZ
95{
96public:
97 // construction/destruction
98 wxToggleButton() {}
99 wxToggleButton(wxWindow *parent,
100 wxWindowID id,
101 const wxString& label,
102 const wxPoint& pos = wxDefaultPosition,
103 const wxSize& size = wxDefaultSize,
104 long style = 0,
105 const wxValidator& validator = wxDefaultValidator,
106 const wxString& name = wxCheckBoxNameStr)
107 {
108 Create(parent, id, label, pos, size, style, validator, name);
109 }
110
111 // Create the control
112 bool Create(wxWindow *parent,
113 wxWindowID id,
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);
119
120 // Get/set the value
121 void SetValue(bool state);
122 bool GetValue() const;
123
124 // Set the label
125 void SetLabel(const wxString& label);
126 bool Enable(bool enable = TRUE);
127
9d522606
RD
128 static wxVisualAttributes
129 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
23318a53 130
6f02a879 131protected:
c71ab7c1
RR
132 void GTKDisableEvents();
133 void GTKEnableEvents();
23318a53 134
1db8dc4a 135 virtual wxSize DoGetBestSize() const;
ef5c70f9
VZ
136 virtual void DoApplyWidgetStyle(GtkRcStyle *style);
137 virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
1db8dc4a
VZ
138
139private:
140 DECLARE_DYNAMIC_CLASS(wxToggleButton)
141};
142
143#endif // _WX_GTK_TOGGLEBUTTON_H_
144