]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
7b504551 | 2 | // Name: src/generic/choicdgg.cpp |
c801d85f KB |
3 | // Purpose: Choice dialogs |
4 | // Author: Julian Smart | |
d6c9c1b7 | 5 | // Modified by: 03.11.00: VZ to add wxArrayString and multiple sel functions |
c801d85f KB |
6 | // Created: 04/01/98 |
7 | // RCS-ID: $Id$ | |
77ffb593 | 8 | // Copyright: (c) wxWidgets team |
65571936 | 9 | // Licence: wxWindows licence |
c801d85f KB |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
d6c9c1b7 VZ |
12 | // ============================================================================ |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
d6c9c1b7 VZ |
16 | // ---------------------------------------------------------------------------- |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
c801d85f KB |
20 | // For compilers that support precompilation, includes "wx.h". |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
d427503c | 24 | #pragma hdrstop |
c801d85f KB |
25 | #endif |
26 | ||
1e6feb95 VZ |
27 | #if wxUSE_CHOICEDLG |
28 | ||
c801d85f | 29 | #ifndef WX_PRECOMP |
257bf510 VZ |
30 | #include <stdio.h> |
31 | #include "wx/utils.h" | |
32 | #include "wx/dialog.h" | |
33 | #include "wx/button.h" | |
34 | #include "wx/listbox.h" | |
63c02113 | 35 | #include "wx/checklst.h" |
257bf510 VZ |
36 | #include "wx/stattext.h" |
37 | #include "wx/intl.h" | |
92afa2b1 | 38 | #include "wx/sizer.h" |
2da2f941 | 39 | #include "wx/arrstr.h" |
dcf924a3 RR |
40 | #endif |
41 | ||
897b24cf | 42 | #include "wx/statline.h" |
6fe7685d | 43 | #include "wx/settings.h" |
c801d85f KB |
44 | #include "wx/generic/choicdgg.h" |
45 | ||
d6c9c1b7 VZ |
46 | // ---------------------------------------------------------------------------- |
47 | // constants | |
48 | // ---------------------------------------------------------------------------- | |
49 | ||
257bf510 | 50 | #define wxID_LISTBOX 3000 |
dcf924a3 | 51 | |
d6c9c1b7 VZ |
52 | // ---------------------------------------------------------------------------- |
53 | // private functions | |
54 | // ---------------------------------------------------------------------------- | |
55 | ||
56 | // convert wxArrayString into a wxString[] which must be delete[]d by caller | |
57 | static int ConvertWXArrayToC(const wxArrayString& aChoices, wxString **choices); | |
58 | ||
59 | // ============================================================================ | |
60 | // implementation | |
61 | // ============================================================================ | |
62 | ||
63 | // ---------------------------------------------------------------------------- | |
64 | // helpers | |
65 | // ---------------------------------------------------------------------------- | |
66 | ||
67 | int ConvertWXArrayToC(const wxArrayString& aChoices, wxString **choices) | |
68 | { | |
69 | int n = aChoices.GetCount(); | |
70 | *choices = new wxString[n]; | |
54b84891 | 71 | |
d6c9c1b7 VZ |
72 | for ( int i = 0; i < n; i++ ) |
73 | { | |
ea660175 | 74 | (*choices)[i] = aChoices[i]; |
d6c9c1b7 VZ |
75 | } |
76 | ||
77 | return n; | |
78 | } | |
79 | ||
80 | // ---------------------------------------------------------------------------- | |
81 | // wrapper functions | |
82 | // ---------------------------------------------------------------------------- | |
83 | ||
84 | wxString wxGetSingleChoice( const wxString& message, | |
85 | const wxString& caption, | |
86 | int n, const wxString *choices, | |
87 | wxWindow *parent, | |
88 | int WXUNUSED(x), int WXUNUSED(y), | |
89 | bool WXUNUSED(centre), | |
257bf510 | 90 | int WXUNUSED(width), int WXUNUSED(height) ) |
c801d85f | 91 | { |
d427503c | 92 | wxSingleChoiceDialog dialog(parent, message, caption, n, choices); |
3ca6a5f0 | 93 | wxString choice; |
d427503c | 94 | if ( dialog.ShowModal() == wxID_OK ) |
3ca6a5f0 BP |
95 | choice = dialog.GetStringSelection(); |
96 | ||
97 | return choice; | |
c801d85f KB |
98 | } |
99 | ||
d6c9c1b7 VZ |
100 | wxString wxGetSingleChoice( const wxString& message, |
101 | const wxString& caption, | |
102 | const wxArrayString& aChoices, | |
103 | wxWindow *parent, | |
104 | int x, int y, | |
105 | bool centre, | |
106 | int width, int height) | |
107 | { | |
108 | wxString *choices; | |
109 | int n = ConvertWXArrayToC(aChoices, &choices); | |
110 | wxString res = wxGetSingleChoice(message, caption, n, choices, parent, | |
111 | x, y, centre, width, height); | |
112 | delete [] choices; | |
113 | ||
114 | return res; | |
115 | } | |
116 | ||
d6c9c1b7 VZ |
117 | int wxGetSingleChoiceIndex( const wxString& message, |
118 | const wxString& caption, | |
119 | int n, const wxString *choices, | |
120 | wxWindow *parent, | |
121 | int WXUNUSED(x), int WXUNUSED(y), | |
122 | bool WXUNUSED(centre), | |
123 | int WXUNUSED(width), int WXUNUSED(height) ) | |
c801d85f | 124 | { |
d427503c | 125 | wxSingleChoiceDialog dialog(parent, message, caption, n, choices); |
3ca6a5f0 | 126 | int choice; |
d427503c | 127 | if ( dialog.ShowModal() == wxID_OK ) |
3ca6a5f0 | 128 | choice = dialog.GetSelection(); |
d427503c | 129 | else |
3ca6a5f0 BP |
130 | choice = -1; |
131 | ||
132 | return choice; | |
c801d85f KB |
133 | } |
134 | ||
2adaf596 VS |
135 | int wxGetSingleChoiceIndex( const wxString& message, |
136 | const wxString& caption, | |
137 | const wxArrayString& aChoices, | |
138 | wxWindow *parent, | |
139 | int x, int y, | |
140 | bool centre, | |
141 | int width, int height) | |
142 | { | |
143 | wxString *choices; | |
144 | int n = ConvertWXArrayToC(aChoices, &choices); | |
145 | int res = wxGetSingleChoiceIndex(message, caption, n, choices, parent, | |
146 | x, y, centre, width, height); | |
147 | delete [] choices; | |
148 | ||
149 | return res; | |
150 | } | |
151 | ||
d6c9c1b7 VZ |
152 | void *wxGetSingleChoiceData( const wxString& message, |
153 | const wxString& caption, | |
154 | int n, const wxString *choices, | |
155 | void **client_data, | |
156 | wxWindow *parent, | |
157 | int WXUNUSED(x), int WXUNUSED(y), | |
158 | bool WXUNUSED(centre), | |
159 | int WXUNUSED(width), int WXUNUSED(height) ) | |
c801d85f | 160 | { |
b41ec29a VZ |
161 | wxSingleChoiceDialog dialog(parent, message, caption, n, choices, |
162 | (char **)client_data); | |
3ca6a5f0 | 163 | void *data; |
d427503c | 164 | if ( dialog.ShowModal() == wxID_OK ) |
3ca6a5f0 | 165 | data = dialog.GetSelectionClientData(); |
d427503c | 166 | else |
3ca6a5f0 BP |
167 | data = NULL; |
168 | ||
169 | return data; | |
c801d85f KB |
170 | } |
171 | ||
b41ec29a VZ |
172 | void *wxGetSingleChoiceData( const wxString& message, |
173 | const wxString& caption, | |
174 | const wxArrayString& aChoices, | |
175 | void **client_data, | |
176 | wxWindow *parent, | |
177 | int x, int y, | |
178 | bool centre, | |
179 | int width, int height) | |
180 | { | |
181 | wxString *choices; | |
182 | int n = ConvertWXArrayToC(aChoices, &choices); | |
183 | void *res = wxGetSingleChoiceData(message, caption, n, choices, | |
184 | client_data, parent, | |
185 | x, y, centre, width, height); | |
186 | delete [] choices; | |
187 | ||
188 | return res; | |
189 | } | |
190 | ||
d6c9c1b7 VZ |
191 | size_t wxGetMultipleChoices(wxArrayInt& selections, |
192 | const wxString& message, | |
193 | const wxString& caption, | |
194 | int n, const wxString *choices, | |
195 | wxWindow *parent, | |
196 | int WXUNUSED(x), int WXUNUSED(y), | |
197 | bool WXUNUSED(centre), | |
198 | int WXUNUSED(width), int WXUNUSED(height)) | |
199 | { | |
200 | wxMultiChoiceDialog dialog(parent, message, caption, n, choices); | |
e93bfe3c | 201 | |
b2d739ba VZ |
202 | // call this even if selections array is empty and this then (correctly) |
203 | // deselects the first item which is selected by default | |
204 | dialog.SetSelections(selections); | |
e93bfe3c | 205 | |
d6c9c1b7 VZ |
206 | if ( dialog.ShowModal() == wxID_OK ) |
207 | selections = dialog.GetSelections(); | |
208 | else | |
209 | selections.Empty(); | |
c801d85f | 210 | |
d6c9c1b7 VZ |
211 | return selections.GetCount(); |
212 | } | |
c801d85f | 213 | |
59bd9598 | 214 | size_t wxGetMultipleChoices(wxArrayInt& selections, |
d6c9c1b7 VZ |
215 | const wxString& message, |
216 | const wxString& caption, | |
217 | const wxArrayString& aChoices, | |
218 | wxWindow *parent, | |
219 | int x, int y, | |
220 | bool centre, | |
221 | int width, int height) | |
c801d85f | 222 | { |
d6c9c1b7 VZ |
223 | wxString *choices; |
224 | int n = ConvertWXArrayToC(aChoices, &choices); | |
225 | size_t res = wxGetMultipleChoices(selections, message, caption, | |
226 | n, choices, parent, | |
227 | x, y, centre, width, height); | |
228 | delete [] choices; | |
229 | ||
230 | return res; | |
c801d85f | 231 | } |
c801d85f | 232 | |
d6c9c1b7 VZ |
233 | // ---------------------------------------------------------------------------- |
234 | // wxAnyChoiceDialog | |
235 | // ---------------------------------------------------------------------------- | |
236 | ||
237 | bool wxAnyChoiceDialog::Create(wxWindow *parent, | |
238 | const wxString& message, | |
239 | const wxString& caption, | |
240 | int n, const wxString *choices, | |
ea660175 | 241 | long styleDlg, |
d6c9c1b7 VZ |
242 | const wxPoint& pos, |
243 | long styleLbox) | |
244 | { | |
a319ce7d | 245 | #ifdef __WXMAC__ |
bd9f3519 | 246 | // FIXME: why?? |
a319ce7d SC |
247 | if ( !wxDialog::Create(parent, wxID_ANY, caption, pos, wxDefaultSize, styleDlg & (~wxCANCEL) ) ) |
248 | return false; | |
249 | #else | |
ca65c044 WS |
250 | if ( !wxDialog::Create(parent, wxID_ANY, caption, pos, wxDefaultSize, styleDlg) ) |
251 | return false; | |
a319ce7d | 252 | #endif |
d6c9c1b7 VZ |
253 | |
254 | wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL ); | |
255 | ||
64c794f6 | 256 | // 1) text message |
bd9f3519 VZ |
257 | topsizer-> |
258 | Add(CreateTextSizer(message), wxSizerFlags().Expand().TripleBorder()); | |
259 | ||
64c794f6 | 260 | // 2) list box |
bd9f3519 | 261 | m_listbox = CreateList(n, choices, styleLbox); |
60104cba | 262 | |
64c794f6 WS |
263 | if ( n > 0 ) |
264 | m_listbox->SetSelection(0); | |
265 | ||
bd9f3519 | 266 | topsizer-> |
6fe7685d | 267 | Add(m_listbox, wxSizerFlags().Expand().Proportion(1).TripleBorder(wxLEFT | wxRIGHT)); |
119727ad | 268 | |
897b24cf | 269 | // 3) buttons if any |
bd9f3519 VZ |
270 | wxSizer * |
271 | buttonSizer = CreateSeparatedButtonSizer(styleDlg & ButtonSizerFlags); | |
272 | if ( buttonSizer ) | |
897b24cf | 273 | { |
bd9f3519 | 274 | topsizer->Add(buttonSizer, wxSizerFlags().Expand().DoubleBorder()); |
897b24cf | 275 | } |
64c794f6 | 276 | |
d6c9c1b7 VZ |
277 | SetSizer( topsizer ); |
278 | ||
279 | topsizer->SetSizeHints( this ); | |
280 | topsizer->Fit( this ); | |
281 | ||
8316ff5d VS |
282 | if ( styleDlg & wxCENTRE ) |
283 | Centre(wxBOTH); | |
d6c9c1b7 VZ |
284 | |
285 | m_listbox->SetFocus(); | |
286 | ||
ca65c044 | 287 | return true; |
d6c9c1b7 VZ |
288 | } |
289 | ||
584ad2a3 MB |
290 | bool wxAnyChoiceDialog::Create(wxWindow *parent, |
291 | const wxString& message, | |
292 | const wxString& caption, | |
293 | const wxArrayString& choices, | |
294 | long styleDlg, | |
295 | const wxPoint& pos, | |
296 | long styleLbox) | |
297 | { | |
298 | wxCArrayString chs(choices); | |
299 | return Create(parent, message, caption, chs.GetCount(), chs.GetStrings(), | |
300 | styleDlg, pos, styleLbox); | |
301 | } | |
302 | ||
60104cba WS |
303 | wxListBoxBase *wxAnyChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox) |
304 | { | |
6fe7685d JS |
305 | wxSize size = wxDefaultSize; |
306 | if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA) | |
307 | size = wxSize(300, 200); | |
60104cba | 308 | return new wxListBox( this, wxID_LISTBOX, |
6fe7685d | 309 | wxDefaultPosition, size, |
60104cba WS |
310 | n, choices, |
311 | styleLbox ); | |
312 | } | |
313 | ||
d6c9c1b7 | 314 | // ---------------------------------------------------------------------------- |
c801d85f | 315 | // wxSingleChoiceDialog |
d6c9c1b7 | 316 | // ---------------------------------------------------------------------------- |
c801d85f | 317 | |
c801d85f | 318 | BEGIN_EVENT_TABLE(wxSingleChoiceDialog, wxDialog) |
d427503c | 319 | EVT_BUTTON(wxID_OK, wxSingleChoiceDialog::OnOK) |
7b504551 | 320 | #ifndef __SMARTPHONE__ |
d427503c | 321 | EVT_LISTBOX_DCLICK(wxID_LISTBOX, wxSingleChoiceDialog::OnListBoxDClick) |
7b504551 WS |
322 | #endif |
323 | #ifdef __WXWINCE__ | |
324 | EVT_JOY_BUTTON_DOWN(wxSingleChoiceDialog::OnJoystickButtonDown) | |
325 | #endif | |
c801d85f KB |
326 | END_EVENT_TABLE() |
327 | ||
d6c9c1b7 | 328 | IMPLEMENT_DYNAMIC_CLASS(wxSingleChoiceDialog, wxDialog) |
257bf510 VZ |
329 | |
330 | wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow *parent, | |
331 | const wxString& message, | |
332 | const wxString& caption, | |
c50f1fb9 | 333 | int n, |
257bf510 VZ |
334 | const wxString *choices, |
335 | char **clientData, | |
336 | long style, | |
59bd9598 | 337 | const wxPoint& WXUNUSED(pos)) |
c801d85f | 338 | { |
257bf510 | 339 | Create(parent, message, caption, n, choices, clientData, style); |
c801d85f KB |
340 | } |
341 | ||
584ad2a3 MB |
342 | wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow *parent, |
343 | const wxString& message, | |
344 | const wxString& caption, | |
345 | const wxArrayString& choices, | |
346 | char **clientData, | |
347 | long style, | |
348 | const wxPoint& WXUNUSED(pos)) | |
349 | { | |
350 | Create(parent, message, caption, choices, clientData, style); | |
351 | } | |
352 | ||
d6c9c1b7 | 353 | bool wxSingleChoiceDialog::Create( wxWindow *parent, |
c50f1fb9 | 354 | const wxString& message, |
d6c9c1b7 | 355 | const wxString& caption, |
c50f1fb9 | 356 | int n, |
257bf510 VZ |
357 | const wxString *choices, |
358 | char **clientData, | |
359 | long style, | |
d6c9c1b7 | 360 | const wxPoint& pos ) |
c801d85f | 361 | { |
d6c9c1b7 VZ |
362 | if ( !wxAnyChoiceDialog::Create(parent, message, caption, |
363 | n, choices, | |
364 | style, pos) ) | |
ca65c044 | 365 | return false; |
92afa2b1 | 366 | |
d6c9c1b7 | 367 | m_selection = n > 0 ? 0 : -1; |
92afa2b1 | 368 | |
92afa2b1 | 369 | if (clientData) |
d427503c | 370 | { |
257bf510 VZ |
371 | for (int i = 0; i < n; i++) |
372 | m_listbox->SetClientData(i, clientData[i]); | |
d427503c | 373 | } |
c801d85f | 374 | |
ca65c044 | 375 | return true; |
c801d85f KB |
376 | } |
377 | ||
584ad2a3 MB |
378 | bool wxSingleChoiceDialog::Create( wxWindow *parent, |
379 | const wxString& message, | |
380 | const wxString& caption, | |
381 | const wxArrayString& choices, | |
382 | char **clientData, | |
383 | long style, | |
384 | const wxPoint& pos ) | |
385 | { | |
386 | wxCArrayString chs(choices); | |
387 | return Create( parent, message, caption, chs.GetCount(), chs.GetStrings(), | |
388 | clientData, style, pos ); | |
389 | } | |
390 | ||
ef77f91e JS |
391 | // Set the selection |
392 | void wxSingleChoiceDialog::SetSelection(int sel) | |
393 | { | |
257bf510 | 394 | m_listbox->SetSelection(sel); |
ef77f91e JS |
395 | m_selection = sel; |
396 | } | |
397 | ||
c801d85f KB |
398 | void wxSingleChoiceDialog::OnOK(wxCommandEvent& WXUNUSED(event)) |
399 | { | |
7b504551 | 400 | DoChoice(); |
c801d85f KB |
401 | } |
402 | ||
7b504551 | 403 | #ifndef __SMARTPHONE__ |
debe6624 | 404 | void wxSingleChoiceDialog::OnListBoxDClick(wxCommandEvent& WXUNUSED(event)) |
7b504551 WS |
405 | { |
406 | DoChoice(); | |
407 | } | |
408 | #endif | |
409 | ||
410 | #ifdef __WXWINCE__ | |
411 | void wxSingleChoiceDialog::OnJoystickButtonDown(wxJoystickEvent& WXUNUSED(event)) | |
412 | { | |
413 | DoChoice(); | |
414 | } | |
415 | #endif | |
416 | ||
417 | void wxSingleChoiceDialog::DoChoice() | |
debe6624 | 418 | { |
257bf510 VZ |
419 | m_selection = m_listbox->GetSelection(); |
420 | m_stringSelection = m_listbox->GetStringSelection(); | |
25f47127 | 421 | |
eb553cb2 | 422 | if ( m_listbox->HasClientUntypedData() ) |
59af5f19 | 423 | SetClientData(m_listbox->GetClientData(m_selection)); |
d427503c VZ |
424 | |
425 | EndModal(wxID_OK); | |
debe6624 JS |
426 | } |
427 | ||
d6c9c1b7 VZ |
428 | // ---------------------------------------------------------------------------- |
429 | // wxMultiChoiceDialog | |
430 | // ---------------------------------------------------------------------------- | |
431 | ||
d6c9c1b7 VZ |
432 | IMPLEMENT_DYNAMIC_CLASS(wxMultiChoiceDialog, wxDialog) |
433 | ||
434 | bool wxMultiChoiceDialog::Create( wxWindow *parent, | |
435 | const wxString& message, | |
436 | const wxString& caption, | |
437 | int n, | |
438 | const wxString *choices, | |
439 | long style, | |
440 | const wxPoint& pos ) | |
441 | { | |
cb5d54ff RD |
442 | long styleLbox; |
443 | #if wxUSE_CHECKLISTBOX | |
444 | styleLbox = wxLB_ALWAYS_SB; | |
445 | #else | |
446 | styleLbox = wxLB_ALWAYS_SB | wxLB_EXTENDED; | |
447 | #endif | |
6fe7685d | 448 | |
d6c9c1b7 VZ |
449 | if ( !wxAnyChoiceDialog::Create(parent, message, caption, |
450 | n, choices, | |
451 | style, pos, | |
cb5d54ff | 452 | styleLbox) ) |
ca65c044 | 453 | return false; |
d6c9c1b7 | 454 | |
ca65c044 | 455 | return true; |
d6c9c1b7 VZ |
456 | } |
457 | ||
584ad2a3 MB |
458 | bool wxMultiChoiceDialog::Create( wxWindow *parent, |
459 | const wxString& message, | |
460 | const wxString& caption, | |
461 | const wxArrayString& choices, | |
462 | long style, | |
463 | const wxPoint& pos ) | |
464 | { | |
465 | wxCArrayString chs(choices); | |
466 | return Create( parent, message, caption, chs.GetCount(), | |
467 | chs.GetStrings(), style, pos ); | |
468 | } | |
469 | ||
d6c9c1b7 VZ |
470 | void wxMultiChoiceDialog::SetSelections(const wxArrayInt& selections) |
471 | { | |
abc2857f JS |
472 | #if wxUSE_CHECKLISTBOX |
473 | wxCheckListBox* checkListBox = wxDynamicCast(m_listbox, wxCheckListBox); | |
474 | if (checkListBox) | |
475 | { | |
476 | // first clear all currently selected items | |
477 | size_t n, | |
478 | count = checkListBox->GetCount(); | |
479 | for ( n = 0; n < count; ++n ) | |
480 | { | |
481 | if (checkListBox->IsChecked(n)) | |
482 | checkListBox->Check(n, false); | |
483 | } | |
484 | ||
485 | // now select the ones which should be selected | |
486 | count = selections.GetCount(); | |
487 | for ( n = 0; n < count; n++ ) | |
488 | { | |
489 | checkListBox->Check(selections[n]); | |
490 | } | |
6fe7685d | 491 | |
abc2857f JS |
492 | return; |
493 | } | |
494 | #endif | |
6fe7685d | 495 | |
d0cc483d VZ |
496 | // first clear all currently selected items |
497 | size_t n, | |
498 | count = m_listbox->GetCount(); | |
499 | for ( n = 0; n < count; ++n ) | |
500 | { | |
501 | m_listbox->Deselect(n); | |
502 | } | |
503 | ||
504 | // now select the ones which should be selected | |
505 | count = selections.GetCount(); | |
506 | for ( n = 0; n < count; n++ ) | |
d6c9c1b7 VZ |
507 | { |
508 | m_listbox->Select(selections[n]); | |
509 | } | |
510 | } | |
511 | ||
3d49ce44 | 512 | bool wxMultiChoiceDialog::TransferDataFromWindow() |
d6c9c1b7 VZ |
513 | { |
514 | m_selections.Empty(); | |
abc2857f JS |
515 | |
516 | #if wxUSE_CHECKLISTBOX | |
517 | wxCheckListBox* checkListBox = wxDynamicCast(m_listbox, wxCheckListBox); | |
518 | if (checkListBox) | |
519 | { | |
520 | size_t count = checkListBox->GetCount(); | |
521 | for ( size_t n = 0; n < count; n++ ) | |
522 | { | |
523 | if ( checkListBox->IsChecked(n) ) | |
524 | m_selections.Add(n); | |
525 | } | |
526 | return true; | |
527 | } | |
528 | #endif | |
529 | ||
d6c9c1b7 VZ |
530 | size_t count = m_listbox->GetCount(); |
531 | for ( size_t n = 0; n < count; n++ ) | |
532 | { | |
533 | if ( m_listbox->IsSelected(n) ) | |
534 | m_selections.Add(n); | |
535 | } | |
536 | ||
ca65c044 | 537 | return true; |
d6c9c1b7 | 538 | } |
1e6feb95 | 539 | |
60104cba WS |
540 | #if wxUSE_CHECKLISTBOX |
541 | ||
542 | wxListBoxBase *wxMultiChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox) | |
543 | { | |
6fe7685d JS |
544 | wxSize size = wxDefaultSize; |
545 | if (wxSystemSettings::GetScreenType() > wxSYS_SCREEN_PDA) | |
546 | size = wxSize(300, 200); | |
547 | ||
60104cba | 548 | return new wxCheckListBox( this, wxID_LISTBOX, |
6fe7685d | 549 | wxDefaultPosition, size, |
60104cba WS |
550 | n, choices, |
551 | styleLbox ); | |
552 | } | |
553 | ||
554 | #endif // wxUSE_CHECKLISTBOX | |
555 | ||
1e6feb95 | 556 | #endif // wxUSE_CHOICEDLG |