]> git.saurik.com Git - wxWidgets.git/blame - src/motif/combobox.cpp
Avoid deprecation warnings for ::IsEmpty (patch #1829909)
[wxWidgets.git] / src / motif / combobox.cpp
CommitLineData
4bb6408c 1/////////////////////////////////////////////////////////////////////////////
11e62fe6 2// Name: src/motif/combobox.cpp
4bb6408c
JS
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
65571936 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
89c7e962
JS
15#if wxUSE_COMBOBOX
16
9b1bd0c6 17#include "wx/combobox.h"
aaa6d89a
WS
18
19#ifndef WX_PRECOMP
20 #include "wx/arrstr.h"
21#endif
9b1bd0c6 22
338dd992
JJ
23#ifdef __VMS__
24#pragma message disable nosimpint
25#endif
89c7e962 26#include <Xm/Xm.h>
338dd992
JJ
27#ifdef __VMS__
28#pragma message enable nosimpint
29#endif
9b1bd0c6
MB
30
31// use the old, GPL'd combobox
32#if (XmVersion < 2000)
33
8704bf74 34#include "xmcombo/xmcombo.h"
89c7e962 35
ec75d791
MB
36#include "wx/motif/private.h"
37
89c7e962 38void wxComboBoxCallback (Widget w, XtPointer clientData,
2d120f83 39 XmComboBoxSelectionCallbackStruct * cbs);
89c7e962 40
4bb6408c 41IMPLEMENT_DYNAMIC_CLASS(wxComboBox, wxControl)
4bb6408c
JS
42
43bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
2d120f83
JS
44 const wxString& value,
45 const wxPoint& pos,
46 const wxSize& size,
47 int n, const wxString choices[],
48 long style,
49 const wxValidator& validator,
50 const wxString& name)
4bb6408c 51{
ec75d791 52 if( !CreateControl( parent, id, pos, size, style, validator, name ) )
7d8268a1 53 return false;
105fbe1f 54 PreCreation();
31528cd3 55
aa61d352 56 m_noStrings = n;
31528cd3 57
89c7e962 58 Widget parentWidget = (Widget) parent->GetClientWidget();
31528cd3
VZ
59
60 Widget buttonWidget = XtVaCreateManagedWidget(name.c_str(),
2d120f83
JS
61 xmComboBoxWidgetClass, parentWidget,
62 XmNmarginHeight, 0,
63 XmNmarginWidth, 0,
64 XmNshowLabel, False,
65 XmNeditable, ((style & wxCB_READONLY) != wxCB_READONLY),
66 XmNsorted, ((style & wxCB_SORT) == wxCB_SORT),
67 XmNstaticList, ((style & wxCB_SIMPLE) == wxCB_SIMPLE),
68 NULL);
31528cd3 69
89c7e962
JS
70 int i;
71 for (i = 0; i < n; i++)
72 {
ec75d791
MB
73 wxXmString str( choices[i] );
74 XmComboBoxAddItem(buttonWidget, str(), 0);
89c7e962
JS
75 m_stringList.Add(choices[i]);
76 }
31528cd3 77
89c7e962 78 m_mainWidget = (Widget) buttonWidget;
31528cd3 79
89c7e962 80 XtManageChild (buttonWidget);
31528cd3 81
89c7e962 82 SetValue(value);
31528cd3 83
f6bcfd97
BP
84 XtAddCallback (buttonWidget, XmNselectionCallback, (XtCallbackProc) wxComboBoxCallback,
85 (XtPointer) this);
86 XtAddCallback (buttonWidget, XmNvalueChangedCallback, (XtCallbackProc) wxComboBoxCallback,
87 (XtPointer) this);
88
105fbe1f 89 PostCreation();
89c7e962 90 AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, size.x, size.y);
31528cd3 91
7d8268a1 92 return true;
4bb6408c
JS
93}
94
584ad2a3
MB
95bool wxComboBox::Create(wxWindow *parent, wxWindowID id,
96 const wxString& value,
97 const wxPoint& pos,
98 const wxSize& size,
99 const wxArrayString& choices,
100 long style,
101 const wxValidator& validator,
102 const wxString& name)
103{
104 wxCArrayString chs(choices);
7d8268a1 105 return Create(parent, id, value, pos, size, chs.GetCount(),
584ad2a3
MB
106 chs.GetStrings(), style, validator, name);
107}
108
8aa04e8b
JS
109wxComboBox::~wxComboBox()
110{
111 DetachWidget((Widget) m_mainWidget); // Removes event handlers
112 XtDestroyWidget((Widget) m_mainWidget);
113 m_mainWidget = (WXWidget) 0;
114}
115
a7bdad33
VZ
116void wxComboBox::DoSetSize(int x, int y,
117 int width, int WXUNUSED(height),
118 int sizeFlags)
8aa04e8b
JS
119{
120 // Necessary so it doesn't call wxChoice::SetSize
ec75d791 121 wxWindow::DoSetSize(x, y, width, DoGetBestSize().y, sizeFlags);
8aa04e8b
JS
122}
123
4bb6408c
JS
124wxString wxComboBox::GetValue() const
125{
89c7e962
JS
126 char *s = XmComboBoxGetString ((Widget) m_mainWidget);
127 if (s)
128 {
129 wxString str(s);
130 XtFree (s);
131 return str;
132 }
133 else
134 return wxEmptyString;
4bb6408c
JS
135}
136
137void wxComboBox::SetValue(const wxString& value)
138{
ec75d791 139 if( !value.empty() )
b044829c
VZ
140 {
141 m_inSetValue = true;
142 XmComboBoxSetString((Widget)m_mainWidget, value.char_str());
143 m_inSetValue = false;
144 }
4bb6408c
JS
145}
146
aa61d352 147void wxComboBox::SetString(unsigned int WXUNUSED(n), const wxString& WXUNUSED(s))
9b1bd0c6
MB
148{
149 wxFAIL_MSG( wxT("wxComboBox::SetString only implemented for Motif 2.0") );
150}
151
a236aa20
VZ
152// TODO auto-sorting is not supported by the code
153int wxComboBox::DoInsertItems(const wxArrayStringsAdapter& items,
154 unsigned int pos,
155 void **clientData,
156 wxClientDataType type)
8aa04e8b 157{
a236aa20 158 const unsigned int numItems = items.GetCount();
ec75d791 159
a236aa20
VZ
160 AllocClientData(numItems);
161 for( unsigned int i = 0; i < numItems; ++i, ++pos )
162 {
163 wxXmString str( items[i].c_str() );
164 XmComboBoxAddItem((Widget) m_mainWidget, str(), GetMotifPosition(pos));
165 wxChar* copy = wxStrcpy(new wxChar[items[i].length() + 1], items[i].c_str());
166 m_stringList.Insert(pos, copy);
167 m_noStrings ++;
168 InsertNewItemClientData(pos, clientData, i, type);
169 }
243dbf1a 170
a236aa20 171 return pos - 1;
243dbf1a
VZ
172}
173
a236aa20 174void wxComboBox::DoDeleteOneItem(unsigned int n)
8aa04e8b 175{
ec75d791 176 XmComboBoxDeletePos((Widget) m_mainWidget, n+1);
fd304d98 177 wxStringList::Node *node = m_stringList.Item(n);
8aa04e8b
JS
178 if (node)
179 {
fd304d98 180 delete[] node->GetData();
2d120f83 181 delete node;
8aa04e8b 182 }
a236aa20 183 wxControlWithItems::DoDeleteOneItem(n);
8aa04e8b
JS
184 m_noStrings--;
185}
186
a236aa20 187void wxComboBox::DoClear()
8aa04e8b
JS
188{
189 XmComboBoxDeleteAllItems((Widget) m_mainWidget);
190 m_stringList.Clear();
f6bcfd97 191
a236aa20 192 wxControlWithItems::DoClear();
f6bcfd97 193 m_noStrings = 0;
8aa04e8b
JS
194}
195
196void wxComboBox::SetSelection (int n)
197{
198 XmComboBoxSelectPos((Widget) m_mainWidget, n+1, False);
199}
200
201int wxComboBox::GetSelection (void) const
202{
2d120f83
JS
203 int sel = XmComboBoxGetSelectedPos((Widget) m_mainWidget);
204 if (sel == 0)
205 return -1;
206 else
207 return sel - 1;
8aa04e8b
JS
208}
209
aa61d352 210wxString wxComboBox::GetString(unsigned int n) const
8aa04e8b 211{
fd304d98 212 wxStringList::Node *node = m_stringList.Item(n);
8aa04e8b 213 if (node)
fd304d98 214 return wxString(node->GetData ());
8aa04e8b 215 else
2d120f83 216 return wxEmptyString;
8aa04e8b
JS
217}
218
a7bdad33 219int wxComboBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const
8aa04e8b 220{
11e62fe6
WS
221 // FIXME: back to base class for not supported value of bCase
222
2d120f83
JS
223 int *pos_list = NULL;
224 int count = 0;
ec75d791 225 wxXmString text( s );
2d120f83 226 bool found = (XmComboBoxGetMatchPos((Widget) m_mainWidget,
ec75d791 227 text(), &pos_list, &count) != 0);
31528cd3 228
2d120f83
JS
229 if (found && count > 0)
230 {
231 int pos = pos_list[0] - 1;
232 free(pos_list);
233 return pos;
234 }
31528cd3 235
11e62fe6 236 return wxNOT_FOUND;
8aa04e8b
JS
237}
238
f9e02ac7 239void wxComboBoxCallback (Widget WXUNUSED(w), XtPointer clientData,
2d120f83 240 XmComboBoxSelectionCallbackStruct * cbs)
89c7e962
JS
241{
242 wxComboBox *item = (wxComboBox *) clientData;
31528cd3 243
89c7e962
JS
244 switch (cbs->reason)
245 {
2d120f83
JS
246 case XmCR_SINGLE_SELECT:
247 case XmCR_BROWSE_SELECT:
89c7e962 248 {
9b1bd0c6
MB
249 wxCommandEvent event (wxEVT_COMMAND_COMBOBOX_SELECTED,
250 item->GetId());
687706f5
KH
251 event.SetInt(cbs->index - 1);
252 event.SetString( item->GetString ( event.GetInt() ) );
ec75d791
MB
253 if ( item->HasClientObjectData() )
254 event.SetClientObject( item->GetClientObject(cbs->index - 1) );
255 else if ( item->HasClientUntypedData() )
256 event.SetClientData( item->GetClientData(cbs->index - 1) );
96be256b 257 event.SetExtraLong(true);
2d120f83
JS
258 event.SetEventObject(item);
259 item->ProcessCommand (event);
260 break;
89c7e962 261 }
2d120f83 262 case XmCR_VALUE_CHANGED:
89c7e962
JS
263 {
264 wxCommandEvent event (wxEVT_COMMAND_TEXT_UPDATED, item->GetId());
687706f5
KH
265 event.SetInt(-1);
266 event.SetString( item->GetValue() );
96be256b 267 event.SetExtraLong(true);
2d120f83
JS
268 event.SetEventObject(item);
269 item->ProcessCommand (event);
89c7e962
JS
270 break;
271 }
2d120f83
JS
272 default:
273 break;
89c7e962 274 }
4bb6408c
JS
275}
276
4b5f3fe6 277void wxComboBox::ChangeFont(bool keepOriginalSize)
0d57be45 278{
321db4b6 279 // Don't use the base class wxChoice's ChangeFont
4b5f3fe6 280 wxWindow::ChangeFont(keepOriginalSize);
0d57be45
JS
281}
282
283void wxComboBox::ChangeBackgroundColour()
284{
321db4b6 285 wxWindow::ChangeBackgroundColour();
0d57be45
JS
286}
287
288void wxComboBox::ChangeForegroundColour()
289{
ec75d791
MB
290 wxWindow::ChangeForegroundColour();
291}
292
293wxSize wxComboBox::DoGetBestSize() const
294{
295 if( (GetWindowStyle() & wxCB_DROPDOWN) == wxCB_DROPDOWN ||
296 (GetWindowStyle() & wxCB_READONLY) == wxCB_READONLY )
297 {
298 wxSize items = GetItemsSize();
299 // FIXME arbitrary constants
300 return wxSize( ( items.x ? items.x + 50 : 120 ),
301 items.y + 10 );
302 }
303 else
304 return wxWindow::DoGetBestSize();
0d57be45
JS
305}
306
978c6e41
VZ
307WXWidget wxComboBox::GetTextWidget() const
308{
309 return (WXWidget)XmComboBoxGetEditWidget((Widget) m_mainWidget);
310}
311
9b1bd0c6 312#endif // XmVersion < 2000
89c7e962 313
9b1bd0c6 314#endif // wxUSE_COMBOBOX