]>
Commit | Line | Data |
---|---|---|
4bb6408c JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: combobox.cpp | |
3 | // Purpose: wxComboBox class | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
31528cd3 | 9 | // Licence: wxWindows licence |
4bb6408c JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
13 | #pragma implementation "combobox.h" | |
14 | #endif | |
15 | ||
9b1bd0c6 | 16 | #include "wx/setup.h" |
4bb6408c | 17 | |
89c7e962 JS |
18 | #if wxUSE_COMBOBOX |
19 | ||
9b1bd0c6 MB |
20 | #include "wx/combobox.h" |
21 | ||
338dd992 JJ |
22 | #ifdef __VMS__ |
23 | #pragma message disable nosimpint | |
24 | #endif | |
89c7e962 | 25 | #include <Xm/Xm.h> |
338dd992 JJ |
26 | #ifdef __VMS__ |
27 | #pragma message enable nosimpint | |
28 | #endif | |
9b1bd0c6 MB |
29 | |
30 | // use the old, GPL'd combobox | |
31 | #if (XmVersion < 2000) | |
32 | ||
8704bf74 | 33 | #include "xmcombo/xmcombo.h" |
89c7e962 | 34 | |
ec75d791 MB |
35 | #include "wx/motif/private.h" |
36 | ||
89c7e962 | 37 | void wxComboBoxCallback (Widget w, XtPointer clientData, |
2d120f83 | 38 | XmComboBoxSelectionCallbackStruct * cbs); |
89c7e962 | 39 | |
4bb6408c | 40 | IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl) |
4bb6408c JS |
41 | |
42 | bool wxComboBox::Create(wxWindow *parent, wxWindowID id, | |
2d120f83 JS |
43 | const wxString& value, |
44 | const wxPoint& pos, | |
45 | const wxSize& size, | |
46 | int n, const wxString choices[], | |
47 | long style, | |
48 | const wxValidator& validator, | |
49 | const wxString& name) | |
4bb6408c | 50 | { |
ec75d791 MB |
51 | if( !CreateControl( parent, id, pos, size, style, validator, name ) ) |
52 | return FALSE; | |
31528cd3 | 53 | |
ec75d791 | 54 | m_noStrings = n; |
31528cd3 | 55 | |
89c7e962 | 56 | Widget parentWidget = (Widget) parent->GetClientWidget(); |
31528cd3 VZ |
57 | |
58 | Widget buttonWidget = XtVaCreateManagedWidget(name.c_str(), | |
2d120f83 JS |
59 | xmComboBoxWidgetClass, parentWidget, |
60 | XmNmarginHeight, 0, | |
61 | XmNmarginWidth, 0, | |
62 | XmNshowLabel, False, | |
63 | XmNeditable, ((style & wxCB_READONLY) != wxCB_READONLY), | |
64 | XmNsorted, ((style & wxCB_SORT) == wxCB_SORT), | |
65 | XmNstaticList, ((style & wxCB_SIMPLE) == wxCB_SIMPLE), | |
66 | NULL); | |
31528cd3 | 67 | |
89c7e962 JS |
68 | int i; |
69 | for (i = 0; i < n; i++) | |
70 | { | |
ec75d791 MB |
71 | wxXmString str( choices[i] ); |
72 | XmComboBoxAddItem(buttonWidget, str(), 0); | |
89c7e962 JS |
73 | m_stringList.Add(choices[i]); |
74 | } | |
31528cd3 | 75 | |
89c7e962 | 76 | m_mainWidget = (Widget) buttonWidget; |
31528cd3 | 77 | |
89c7e962 | 78 | XtManageChild (buttonWidget); |
31528cd3 | 79 | |
89c7e962 | 80 | SetValue(value); |
31528cd3 | 81 | |
4b5f3fe6 | 82 | ChangeFont(FALSE); |
31528cd3 | 83 | |
f6bcfd97 BP |
84 | XtAddCallback (buttonWidget, XmNselectionCallback, (XtCallbackProc) wxComboBoxCallback, |
85 | (XtPointer) this); | |
86 | XtAddCallback (buttonWidget, XmNvalueChangedCallback, (XtCallbackProc) wxComboBoxCallback, | |
87 | (XtPointer) this); | |
88 | ||
89c7e962 | 89 | AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y); |
31528cd3 | 90 | |
0d57be45 | 91 | ChangeBackgroundColour(); |
31528cd3 | 92 | |
4bb6408c JS |
93 | return TRUE; |
94 | } | |
95 | ||
8aa04e8b JS |
96 | wxComboBox::~wxComboBox() |
97 | { | |
98 | DetachWidget((Widget) m_mainWidget); // Removes event handlers | |
99 | XtDestroyWidget((Widget) m_mainWidget); | |
100 | m_mainWidget = (WXWidget) 0; | |
ec75d791 MB |
101 | if ( HasClientObjectData() ) |
102 | m_clientDataDict.DestroyData(); | |
8aa04e8b JS |
103 | } |
104 | ||
bfc6fde4 | 105 | void wxComboBox::DoSetSize(int x, int y, int width, int height, int sizeFlags) |
8aa04e8b JS |
106 | { |
107 | // Necessary so it doesn't call wxChoice::SetSize | |
ec75d791 | 108 | wxWindow::DoSetSize(x, y, width, DoGetBestSize().y, sizeFlags); |
8aa04e8b JS |
109 | } |
110 | ||
4bb6408c JS |
111 | wxString wxComboBox::GetValue() const |
112 | { | |
89c7e962 JS |
113 | char *s = XmComboBoxGetString ((Widget) m_mainWidget); |
114 | if (s) | |
115 | { | |
116 | wxString str(s); | |
117 | XtFree (s); | |
118 | return str; | |
119 | } | |
120 | else | |
121 | return wxEmptyString; | |
4bb6408c JS |
122 | } |
123 | ||
124 | void wxComboBox::SetValue(const wxString& value) | |
125 | { | |
89c7e962 | 126 | m_inSetValue = TRUE; |
ec75d791 | 127 | if( !value.empty() ) |
d3a80c92 MB |
128 | XmComboBoxSetString( (Widget)m_mainWidget, |
129 | wxConstCast(value.c_str(), char) ); | |
89c7e962 | 130 | m_inSetValue = FALSE; |
4bb6408c JS |
131 | } |
132 | ||
9b1bd0c6 MB |
133 | void wxComboBox::SetString(int n, const wxString& s) |
134 | { | |
135 | wxFAIL_MSG( wxT("wxComboBox::SetString only implemented for Motif 2.0") ); | |
136 | } | |
137 | ||
ec75d791 | 138 | int wxComboBox::DoAppend(const wxString& item) |
8aa04e8b | 139 | { |
ec75d791 MB |
140 | wxXmString str( item.c_str() ); |
141 | XmComboBoxAddItem((Widget) m_mainWidget, str(), 0); | |
8aa04e8b | 142 | m_stringList.Add(item); |
8aa04e8b | 143 | m_noStrings ++; |
ec75d791 MB |
144 | |
145 | return GetCount() - 1; | |
8aa04e8b JS |
146 | } |
147 | ||
243dbf1a VZ |
148 | int wxComboBox::DoInsert(const wxString& item, int pos) |
149 | { | |
150 | wxCHECK_MSG(!(GetWindowStyle() & wxCB_SORT), -1, wxT("can't insert into sorted list")); | |
151 | wxCHECK_MSG((pos>=0) && (pos<=GetCount()), -1, wxT("invalid index")); | |
152 | ||
153 | if (pos == GetCount()) | |
154 | return DoAppend(item); | |
155 | ||
156 | wxXmString str( item.c_str() ); | |
157 | XmComboBoxAddItem((Widget) m_mainWidget, str(), pos+1); | |
158 | m_stringList.Insert(pos, item); | |
159 | m_noStrings ++; | |
160 | ||
161 | return pos; | |
162 | } | |
163 | ||
8aa04e8b JS |
164 | void wxComboBox::Delete(int n) |
165 | { | |
ec75d791 | 166 | XmComboBoxDeletePos((Widget) m_mainWidget, n+1); |
fd304d98 | 167 | wxStringList::Node *node = m_stringList.Item(n); |
8aa04e8b JS |
168 | if (node) |
169 | { | |
fd304d98 | 170 | delete[] node->GetData(); |
2d120f83 | 171 | delete node; |
8aa04e8b | 172 | } |
ec75d791 | 173 | m_clientDataDict.Delete(n, HasClientObjectData()); |
8aa04e8b JS |
174 | m_noStrings--; |
175 | } | |
176 | ||
177 | void wxComboBox::Clear() | |
178 | { | |
179 | XmComboBoxDeleteAllItems((Widget) m_mainWidget); | |
180 | m_stringList.Clear(); | |
f6bcfd97 BP |
181 | |
182 | if ( HasClientObjectData() ) | |
ec75d791 | 183 | m_clientDataDict.DestroyData(); |
f6bcfd97 | 184 | m_noStrings = 0; |
8aa04e8b JS |
185 | } |
186 | ||
187 | void wxComboBox::SetSelection (int n) | |
188 | { | |
189 | XmComboBoxSelectPos((Widget) m_mainWidget, n+1, False); | |
190 | } | |
191 | ||
192 | int wxComboBox::GetSelection (void) const | |
193 | { | |
2d120f83 JS |
194 | int sel = XmComboBoxGetSelectedPos((Widget) m_mainWidget); |
195 | if (sel == 0) | |
196 | return -1; | |
197 | else | |
198 | return sel - 1; | |
8aa04e8b JS |
199 | } |
200 | ||
201 | wxString wxComboBox::GetString(int n) const | |
202 | { | |
fd304d98 | 203 | wxStringList::Node *node = m_stringList.Item(n); |
8aa04e8b | 204 | if (node) |
fd304d98 | 205 | return wxString(node->GetData ()); |
8aa04e8b | 206 | else |
2d120f83 | 207 | return wxEmptyString; |
8aa04e8b JS |
208 | } |
209 | ||
8aa04e8b JS |
210 | int wxComboBox::FindString(const wxString& s) const |
211 | { | |
2d120f83 JS |
212 | int *pos_list = NULL; |
213 | int count = 0; | |
ec75d791 | 214 | wxXmString text( s ); |
2d120f83 | 215 | bool found = (XmComboBoxGetMatchPos((Widget) m_mainWidget, |
ec75d791 | 216 | text(), &pos_list, &count) != 0); |
31528cd3 | 217 | |
2d120f83 JS |
218 | if (found && count > 0) |
219 | { | |
220 | int pos = pos_list[0] - 1; | |
221 | free(pos_list); | |
222 | return pos; | |
223 | } | |
31528cd3 | 224 | |
2d120f83 | 225 | return -1; |
8aa04e8b JS |
226 | } |
227 | ||
4bb6408c JS |
228 | // Clipboard operations |
229 | void wxComboBox::Copy() | |
230 | { | |
89c7e962 | 231 | XmComboBoxCopy((Widget) m_mainWidget, CurrentTime); |
4bb6408c JS |
232 | } |
233 | ||
234 | void wxComboBox::Cut() | |
235 | { | |
89c7e962 | 236 | XmComboBoxCut((Widget) m_mainWidget, CurrentTime); |
4bb6408c JS |
237 | } |
238 | ||
239 | void wxComboBox::Paste() | |
240 | { | |
89c7e962 | 241 | XmComboBoxPaste((Widget) m_mainWidget); |
4bb6408c JS |
242 | } |
243 | ||
f9e02ac7 | 244 | void wxComboBox::SetEditable(bool WXUNUSED(editable)) |
4bb6408c JS |
245 | { |
246 | // TODO | |
247 | } | |
248 | ||
249 | void wxComboBox::SetInsertionPoint(long pos) | |
250 | { | |
89c7e962 | 251 | XmComboBoxSetInsertionPosition ((Widget) m_mainWidget, (XmTextPosition) pos); |
4bb6408c JS |
252 | } |
253 | ||
254 | void wxComboBox::SetInsertionPointEnd() | |
255 | { | |
89c7e962 JS |
256 | XmTextPosition pos = XmComboBoxGetLastPosition ((Widget) m_mainWidget); |
257 | XmComboBoxSetInsertionPosition ((Widget) m_mainWidget, (XmTextPosition) (pos + 1)); | |
4bb6408c JS |
258 | } |
259 | ||
260 | long wxComboBox::GetInsertionPoint() const | |
261 | { | |
89c7e962 | 262 | return (long) XmComboBoxGetInsertionPosition ((Widget) m_mainWidget); |
4bb6408c JS |
263 | } |
264 | ||
265 | long wxComboBox::GetLastPosition() const | |
266 | { | |
89c7e962 | 267 | return (long) XmComboBoxGetLastPosition ((Widget) m_mainWidget); |
4bb6408c JS |
268 | } |
269 | ||
270 | void wxComboBox::Replace(long from, long to, const wxString& value) | |
271 | { | |
d3a80c92 MB |
272 | XmComboBoxReplace ((Widget) m_mainWidget, (XmTextPosition) from, |
273 | (XmTextPosition) to, | |
274 | wxConstCast(value.c_str(), char)); | |
4bb6408c JS |
275 | } |
276 | ||
277 | void wxComboBox::Remove(long from, long to) | |
278 | { | |
89c7e962 | 279 | XmComboBoxSetSelection ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to, |
31528cd3 | 280 | (Time) 0); |
89c7e962 | 281 | XmComboBoxRemove ((Widget) m_mainWidget); |
4bb6408c JS |
282 | } |
283 | ||
284 | void wxComboBox::SetSelection(long from, long to) | |
285 | { | |
89c7e962 | 286 | XmComboBoxSetSelection ((Widget) m_mainWidget, (XmTextPosition) from, (XmTextPosition) to, |
31528cd3 | 287 | (Time) 0); |
89c7e962 JS |
288 | } |
289 | ||
f9e02ac7 | 290 | void wxComboBoxCallback (Widget WXUNUSED(w), XtPointer clientData, |
2d120f83 | 291 | XmComboBoxSelectionCallbackStruct * cbs) |
89c7e962 JS |
292 | { |
293 | wxComboBox *item = (wxComboBox *) clientData; | |
31528cd3 | 294 | |
89c7e962 JS |
295 | switch (cbs->reason) |
296 | { | |
2d120f83 JS |
297 | case XmCR_SINGLE_SELECT: |
298 | case XmCR_BROWSE_SELECT: | |
89c7e962 | 299 | { |
9b1bd0c6 MB |
300 | wxCommandEvent event (wxEVT_COMMAND_COMBOBOX_SELECTED, |
301 | item->GetId()); | |
2d120f83 | 302 | event.m_commandInt = cbs->index - 1; |
ec75d791 MB |
303 | event.m_commandString = item->GetString (event.m_commandInt); |
304 | if ( item->HasClientObjectData() ) | |
305 | event.SetClientObject( item->GetClientObject(cbs->index - 1) ); | |
306 | else if ( item->HasClientUntypedData() ) | |
307 | event.SetClientData( item->GetClientData(cbs->index - 1) ); | |
2d120f83 JS |
308 | event.m_extraLong = TRUE; |
309 | event.SetEventObject(item); | |
310 | item->ProcessCommand (event); | |
311 | break; | |
89c7e962 | 312 | } |
2d120f83 | 313 | case XmCR_VALUE_CHANGED: |
89c7e962 JS |
314 | { |
315 | wxCommandEvent event (wxEVT_COMMAND_TEXT_UPDATED, item->GetId()); | |
2d120f83 | 316 | event.m_commandInt = -1; |
ec75d791 | 317 | event.m_commandString = item->GetValue(); |
2d120f83 JS |
318 | event.m_extraLong = TRUE; |
319 | event.SetEventObject(item); | |
320 | item->ProcessCommand (event); | |
89c7e962 JS |
321 | break; |
322 | } | |
2d120f83 JS |
323 | default: |
324 | break; | |
89c7e962 | 325 | } |
4bb6408c JS |
326 | } |
327 | ||
4b5f3fe6 | 328 | void wxComboBox::ChangeFont(bool keepOriginalSize) |
0d57be45 | 329 | { |
321db4b6 | 330 | // Don't use the base class wxChoice's ChangeFont |
4b5f3fe6 | 331 | wxWindow::ChangeFont(keepOriginalSize); |
0d57be45 JS |
332 | } |
333 | ||
334 | void wxComboBox::ChangeBackgroundColour() | |
335 | { | |
321db4b6 | 336 | wxWindow::ChangeBackgroundColour(); |
0d57be45 JS |
337 | } |
338 | ||
339 | void wxComboBox::ChangeForegroundColour() | |
340 | { | |
ec75d791 MB |
341 | wxWindow::ChangeForegroundColour(); |
342 | } | |
343 | ||
344 | wxSize wxComboBox::DoGetBestSize() const | |
345 | { | |
346 | if( (GetWindowStyle() & wxCB_DROPDOWN) == wxCB_DROPDOWN || | |
347 | (GetWindowStyle() & wxCB_READONLY) == wxCB_READONLY ) | |
348 | { | |
349 | wxSize items = GetItemsSize(); | |
350 | // FIXME arbitrary constants | |
351 | return wxSize( ( items.x ? items.x + 50 : 120 ), | |
352 | items.y + 10 ); | |
353 | } | |
354 | else | |
355 | return wxWindow::DoGetBestSize(); | |
0d57be45 JS |
356 | } |
357 | ||
9b1bd0c6 | 358 | #endif // XmVersion < 2000 |
89c7e962 | 359 | |
9b1bd0c6 | 360 | #endif // wxUSE_COMBOBOX |