]>
Commit | Line | Data |
---|---|---|
4bb6408c | 1 | ///////////////////////////////////////////////////////////////////////////// |
7520f3da | 2 | // Name: src/motif/checkbox.cpp |
4bb6408c JS |
3 | // Purpose: wxCheckBox |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
7520f3da | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
1248b41f MB |
12 | // For compilers that support precompilation, includes "wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
4bb6408c | 15 | #include "wx/checkbox.h" |
de6185e2 WS |
16 | |
17 | #ifndef WX_PRECOMP | |
18 | #include "wx/utils.h" | |
19 | #endif | |
20 | ||
08e5319b | 21 | #include "wx/tglbtn.h" |
4bb6408c | 22 | |
338dd992 JJ |
23 | #ifdef __VMS__ |
24 | #pragma message disable nosimpint | |
25 | #endif | |
02e8b2f9 JS |
26 | #include <Xm/Label.h> |
27 | #include <Xm/LabelG.h> | |
28 | #include <Xm/ToggleB.h> | |
29 | #include <Xm/ToggleBG.h> | |
338dd992 JJ |
30 | #ifdef __VMS__ |
31 | #pragma message enable nosimpint | |
32 | #endif | |
02e8b2f9 | 33 | |
c228fcb4 MB |
34 | #include "wx/motif/private.h" |
35 | ||
aab52ea5 | 36 | // define symbols that are missing in old versions of Motif. |
c228fcb4 MB |
37 | #if wxCHECK_MOTIF_VERSION( 2, 0 ) |
38 | #define wxHAS_3STATE 1 | |
39 | #else | |
40 | #define wxHAS_3STATE 0 | |
aab52ea5 SN |
41 | #endif |
42 | ||
02e8b2f9 JS |
43 | #include "wx/motif/private.h" |
44 | ||
45 | void wxCheckBoxCallback (Widget w, XtPointer clientData, | |
2d120f83 | 46 | XtPointer ptr); |
02e8b2f9 | 47 | |
4bb6408c JS |
48 | // Single check box item |
49 | bool wxCheckBox::Create(wxWindow *parent, wxWindowID id, const wxString& label, | |
2d120f83 JS |
50 | const wxPoint& pos, |
51 | const wxSize& size, long style, | |
52 | const wxValidator& validator, | |
53 | const wxString& name) | |
4bb6408c | 54 | { |
a969055e MB |
55 | if( !wxControl::CreateControl( parent, id, pos, size, style, validator, |
56 | name ) ) | |
96be256b | 57 | return false; |
105fbe1f | 58 | PreCreation(); |
7a4b8f27 | 59 | |
32cd189d | 60 | wxXmString text( GetLabelText(label) ); |
7520f3da | 61 | |
02e8b2f9 | 62 | Widget parentWidget = (Widget) parent->GetClientWidget(); |
31528cd3 | 63 | |
02e8b2f9 | 64 | m_mainWidget = (WXWidget) XtVaCreateManagedWidget ("toggle", |
2d120f83 | 65 | xmToggleButtonWidgetClass, parentWidget, |
73608949 | 66 | wxFont::GetFontTag(), m_font.GetFontTypeC(XtDisplay(parentWidget)), |
7a4b8f27 | 67 | XmNlabelString, text(), |
d3a80c92 | 68 | XmNrecomputeSize, False, |
f8ab089a MB |
69 | // XmNindicatorOn, XmINDICATOR_CHECK_BOX, |
70 | // XmNfillOnSelect, False, | |
c228fcb4 | 71 | #if wxHAS_3STATE |
f8ab089a | 72 | XmNtoggleMode, Is3State() ? XmTOGGLE_INDETERMINATE : XmTOGGLE_BOOLEAN, |
c228fcb4 | 73 | #endif |
2d120f83 | 74 | NULL); |
7520f3da | 75 | |
a969055e MB |
76 | XtAddCallback( (Widget)m_mainWidget, |
77 | XmNvalueChangedCallback, (XtCallbackProc)wxCheckBoxCallback, | |
78 | (XtPointer)this ); | |
31528cd3 | 79 | |
96be256b | 80 | XmToggleButtonSetState ((Widget) m_mainWidget, False, True); |
31528cd3 | 81 | |
105fbe1f | 82 | PostCreation(); |
a969055e MB |
83 | AttachWidget( parent, m_mainWidget, (WXWidget)NULL, |
84 | pos.x, pos.y, size.x, size.y ); | |
31528cd3 | 85 | |
96be256b | 86 | return true; |
4bb6408c JS |
87 | } |
88 | ||
89 | void wxCheckBox::SetValue(bool val) | |
90 | { | |
f8ab089a MB |
91 | if (val) |
92 | { | |
93 | Set3StateValue(wxCHK_CHECKED); | |
94 | } | |
95 | else | |
96 | { | |
97 | Set3StateValue(wxCHK_UNCHECKED); | |
98 | } | |
4bb6408c JS |
99 | } |
100 | ||
101 | bool wxCheckBox::GetValue() const | |
102 | { | |
f8ab089a | 103 | return (Get3StateValue() != 0); |
4bb6408c JS |
104 | } |
105 | ||
106 | void wxCheckBox::Command (wxCommandEvent & event) | |
107 | { | |
f8ab089a MB |
108 | int state = event.GetInt(); |
109 | wxCHECK_RET( (state == wxCHK_UNCHECKED) || (state == wxCHK_CHECKED) | |
110 | || (state == wxCHK_UNDETERMINED), | |
111 | wxT("event.GetInt() returned an invalid checkbox state") ); | |
112 | ||
113 | Set3StateValue((wxCheckBoxState) state); | |
114 | ProcessCommand(event); | |
4bb6408c JS |
115 | } |
116 | ||
af111fc3 JS |
117 | void wxCheckBoxCallback (Widget WXUNUSED(w), XtPointer clientData, |
118 | XtPointer WXUNUSED(ptr)) | |
02e8b2f9 | 119 | { |
2d120f83 | 120 | wxCheckBox *item = (wxCheckBox *) clientData; |
31528cd3 | 121 | |
2d120f83 JS |
122 | if (item->InSetValue()) |
123 | return; | |
31528cd3 | 124 | |
f8ab089a MB |
125 | wxCheckBoxState state = item->Get3StateValue(); |
126 | ||
127 | if( !item->Is3rdStateAllowedForUser() && state == wxCHK_UNDETERMINED ) | |
128 | { | |
129 | state = wxCHK_UNCHECKED; | |
130 | item->Set3StateValue( state ); | |
131 | } | |
132 | ||
133 | wxCommandEvent event( item->m_evtType, item->GetId() ); | |
134 | event.SetInt( (int)state ); | |
135 | event.SetEventObject( item ); | |
136 | item->ProcessCommand( event ); | |
02e8b2f9 | 137 | } |
0d57be45 | 138 | |
0d57be45 JS |
139 | void wxCheckBox::ChangeBackgroundColour() |
140 | { | |
a1b806b9 | 141 | if (!m_backgroundColour.IsOk()) |
105fbe1f MB |
142 | return; |
143 | ||
2d120f83 | 144 | wxComputeColours (XtDisplay((Widget) m_mainWidget), & m_backgroundColour, |
d3b9f782 | 145 | NULL); |
31528cd3 | 146 | |
2d120f83 JS |
147 | XtVaSetValues ((Widget) m_mainWidget, |
148 | XmNbackground, g_itemColors[wxBACK_INDEX].pixel, | |
149 | XmNtopShadowColor, g_itemColors[wxTOPS_INDEX].pixel, | |
150 | XmNbottomShadowColor, g_itemColors[wxBOTS_INDEX].pixel, | |
151 | XmNforeground, g_itemColors[wxFORE_INDEX].pixel, | |
152 | NULL); | |
31528cd3 | 153 | |
f516d986 | 154 | wxColour colour = *wxBLACK; |
3e0071d9 | 155 | WXPixel selectPixel = colour.AllocColour(XtDisplay((Widget)m_mainWidget)); |
9838df2c JS |
156 | |
157 | // Better to have the checkbox selection in black, or it's | |
158 | // hard to determine what state it is in. | |
2d120f83 | 159 | XtVaSetValues ((Widget) m_mainWidget, |
9838df2c | 160 | XmNselectColor, selectPixel, |
3e0071d9 | 161 | NULL); |
0d57be45 | 162 | } |
08e5319b | 163 | |
f8ab089a MB |
164 | void wxCheckBox::DoSet3StateValue(wxCheckBoxState state) |
165 | { | |
166 | m_inSetValue = true; | |
167 | ||
c228fcb4 | 168 | #if wxHAS_3STATE |
f8ab089a MB |
169 | unsigned char value; |
170 | ||
171 | switch (state) | |
172 | { | |
173 | case wxCHK_UNCHECKED: value = XmUNSET; break; | |
174 | case wxCHK_CHECKED: value = XmSET; break; | |
175 | case wxCHK_UNDETERMINED: value = XmINDETERMINATE; break; | |
55e3f1c4 | 176 | default: wxASSERT(0); return; |
f8ab089a MB |
177 | } |
178 | ||
179 | XtVaSetValues( (Widget) m_mainWidget, | |
180 | XmNset, value, | |
181 | NULL ); | |
c228fcb4 MB |
182 | #else |
183 | XmToggleButtonSetState ((Widget) m_mainWidget, | |
4aa1c270 | 184 | state == wxCHK_CHECKED, True); |
c228fcb4 | 185 | #endif |
f8ab089a MB |
186 | |
187 | m_inSetValue = false; | |
188 | } | |
189 | ||
190 | wxCheckBoxState wxCheckBox::DoGet3StateValue() const | |
191 | { | |
c228fcb4 | 192 | #if wxHAS_3STATE |
f8ab089a MB |
193 | unsigned char value = 0; |
194 | ||
195 | XtVaGetValues( (Widget) m_mainWidget, | |
196 | XmNset, &value, | |
197 | NULL ); | |
198 | ||
199 | switch (value) | |
200 | { | |
201 | case XmUNSET: return wxCHK_UNCHECKED; | |
202 | case XmSET: return wxCHK_CHECKED; | |
203 | case XmINDETERMINATE: return wxCHK_UNDETERMINED; | |
204 | } | |
205 | ||
206 | // impossible... | |
207 | return wxCHK_UNDETERMINED; | |
c228fcb4 MB |
208 | #else |
209 | return wxCheckBoxState(XmToggleButtonGetState ((Widget) m_mainWidget)); | |
210 | #endif | |
f8ab089a MB |
211 | } |
212 | ||
08e5319b MB |
213 | /////////////////////////////////////////////////////////////////////////////// |
214 | // wxToggleButton | |
215 | /////////////////////////////////////////////////////////////////////////////// | |
216 | ||
217 | #if wxUSE_TOGGLEBTN | |
218 | ||
9b11752c | 219 | wxDEFINE_EVENT( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED, wxCommandEvent ); |
08e5319b MB |
220 | IMPLEMENT_DYNAMIC_CLASS(wxToggleButton, wxControl) |
221 | ||
222 | bool wxToggleButton::Create( wxWindow* parent, wxWindowID id, | |
223 | const wxString& label, | |
224 | const wxPoint& pos, | |
225 | const wxSize& size, | |
226 | long style, | |
227 | const wxValidator& val, | |
228 | const wxString &name ) | |
229 | { | |
230 | if( !wxCheckBox::Create( parent, id, label, pos, size, style, val, name ) ) | |
231 | return false; | |
232 | ||
233 | XtVaSetValues( (Widget)m_mainWidget, | |
234 | XmNindicatorSize, 0, | |
235 | #if XmVersion >= 2000 | |
236 | XmNindicatorOn, XmINDICATOR_NONE, | |
237 | #else | |
238 | XmNindicatorOn, False, | |
239 | #endif | |
240 | XmNfillOnSelect, False, | |
241 | XmNshadowThickness, 2, | |
242 | XmNalignment, XmALIGNMENT_CENTER, | |
243 | XmNmarginLeft, 0, | |
244 | XmNmarginRight, 0, | |
245 | NULL ); | |
246 | ||
247 | // set it again, because the XtVaSetValue above resets it | |
248 | if( size.x != -1 || size.y != -1 ) | |
249 | SetSize( size ); | |
250 | ||
251 | return true; | |
252 | } | |
253 | ||
b0f76951 | 254 | #endif // wxUSE_TOGGLEBTN |