]> git.saurik.com Git - wxWidgets.git/blame - src/generic/choicdgg.cpp
removed main() definition from wxX11
[wxWidgets.git] / src / generic / choicdgg.cpp
CommitLineData
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"
c801d85f
KB
43#include "wx/generic/choicdgg.h"
44
d6c9c1b7
VZ
45// ----------------------------------------------------------------------------
46// constants
47// ----------------------------------------------------------------------------
48
257bf510 49#define wxID_LISTBOX 3000
dcf924a3 50
4b088139
WS
51// ---------------------------------------------------------------------------
52// macros
53// ---------------------------------------------------------------------------
54
55/* Macro for avoiding #ifdefs when value have to be different depending on size of
9a357011 56 device we display on - take it from something like wxDesktopPolicy in the future
4b088139
WS
57 */
58
59#if defined(__SMARTPHONE__)
60 #define wxLARGESMALL(large,small) small
61#else
62 #define wxLARGESMALL(large,small) large
63#endif
64
d6c9c1b7
VZ
65// ----------------------------------------------------------------------------
66// private functions
67// ----------------------------------------------------------------------------
68
69// convert wxArrayString into a wxString[] which must be delete[]d by caller
70static int ConvertWXArrayToC(const wxArrayString& aChoices, wxString **choices);
71
72// ============================================================================
73// implementation
74// ============================================================================
75
76// ----------------------------------------------------------------------------
77// helpers
78// ----------------------------------------------------------------------------
79
80int ConvertWXArrayToC(const wxArrayString& aChoices, wxString **choices)
81{
82 int n = aChoices.GetCount();
83 *choices = new wxString[n];
54b84891 84
d6c9c1b7
VZ
85 for ( int i = 0; i < n; i++ )
86 {
ea660175 87 (*choices)[i] = aChoices[i];
d6c9c1b7
VZ
88 }
89
90 return n;
91}
92
93// ----------------------------------------------------------------------------
94// wrapper functions
95// ----------------------------------------------------------------------------
96
97wxString wxGetSingleChoice( const wxString& message,
98 const wxString& caption,
99 int n, const wxString *choices,
100 wxWindow *parent,
101 int WXUNUSED(x), int WXUNUSED(y),
102 bool WXUNUSED(centre),
257bf510 103 int WXUNUSED(width), int WXUNUSED(height) )
c801d85f 104{
d427503c 105 wxSingleChoiceDialog dialog(parent, message, caption, n, choices);
3ca6a5f0 106 wxString choice;
d427503c 107 if ( dialog.ShowModal() == wxID_OK )
3ca6a5f0
BP
108 choice = dialog.GetStringSelection();
109
110 return choice;
c801d85f
KB
111}
112
d6c9c1b7
VZ
113wxString wxGetSingleChoice( const wxString& message,
114 const wxString& caption,
115 const wxArrayString& aChoices,
116 wxWindow *parent,
117 int x, int y,
118 bool centre,
119 int width, int height)
120{
121 wxString *choices;
122 int n = ConvertWXArrayToC(aChoices, &choices);
123 wxString res = wxGetSingleChoice(message, caption, n, choices, parent,
124 x, y, centre, width, height);
125 delete [] choices;
126
127 return res;
128}
129
d6c9c1b7
VZ
130int wxGetSingleChoiceIndex( const wxString& message,
131 const wxString& caption,
132 int n, const wxString *choices,
133 wxWindow *parent,
134 int WXUNUSED(x), int WXUNUSED(y),
135 bool WXUNUSED(centre),
136 int WXUNUSED(width), int WXUNUSED(height) )
c801d85f 137{
d427503c 138 wxSingleChoiceDialog dialog(parent, message, caption, n, choices);
3ca6a5f0 139 int choice;
d427503c 140 if ( dialog.ShowModal() == wxID_OK )
3ca6a5f0 141 choice = dialog.GetSelection();
d427503c 142 else
3ca6a5f0
BP
143 choice = -1;
144
145 return choice;
c801d85f
KB
146}
147
2adaf596
VS
148int wxGetSingleChoiceIndex( const wxString& message,
149 const wxString& caption,
150 const wxArrayString& aChoices,
151 wxWindow *parent,
152 int x, int y,
153 bool centre,
154 int width, int height)
155{
156 wxString *choices;
157 int n = ConvertWXArrayToC(aChoices, &choices);
158 int res = wxGetSingleChoiceIndex(message, caption, n, choices, parent,
159 x, y, centre, width, height);
160 delete [] choices;
161
162 return res;
163}
164
d6c9c1b7
VZ
165void *wxGetSingleChoiceData( const wxString& message,
166 const wxString& caption,
167 int n, const wxString *choices,
168 void **client_data,
169 wxWindow *parent,
170 int WXUNUSED(x), int WXUNUSED(y),
171 bool WXUNUSED(centre),
172 int WXUNUSED(width), int WXUNUSED(height) )
c801d85f 173{
b41ec29a
VZ
174 wxSingleChoiceDialog dialog(parent, message, caption, n, choices,
175 (char **)client_data);
3ca6a5f0 176 void *data;
d427503c 177 if ( dialog.ShowModal() == wxID_OK )
3ca6a5f0 178 data = dialog.GetSelectionClientData();
d427503c 179 else
3ca6a5f0
BP
180 data = NULL;
181
182 return data;
c801d85f
KB
183}
184
b41ec29a
VZ
185void *wxGetSingleChoiceData( const wxString& message,
186 const wxString& caption,
187 const wxArrayString& aChoices,
188 void **client_data,
189 wxWindow *parent,
190 int x, int y,
191 bool centre,
192 int width, int height)
193{
194 wxString *choices;
195 int n = ConvertWXArrayToC(aChoices, &choices);
196 void *res = wxGetSingleChoiceData(message, caption, n, choices,
197 client_data, parent,
198 x, y, centre, width, height);
199 delete [] choices;
200
201 return res;
202}
203
d6c9c1b7
VZ
204size_t wxGetMultipleChoices(wxArrayInt& selections,
205 const wxString& message,
206 const wxString& caption,
207 int n, const wxString *choices,
208 wxWindow *parent,
209 int WXUNUSED(x), int WXUNUSED(y),
210 bool WXUNUSED(centre),
211 int WXUNUSED(width), int WXUNUSED(height))
212{
213 wxMultiChoiceDialog dialog(parent, message, caption, n, choices);
e93bfe3c 214
b2d739ba
VZ
215 // call this even if selections array is empty and this then (correctly)
216 // deselects the first item which is selected by default
217 dialog.SetSelections(selections);
e93bfe3c 218
d6c9c1b7
VZ
219 if ( dialog.ShowModal() == wxID_OK )
220 selections = dialog.GetSelections();
221 else
222 selections.Empty();
c801d85f 223
d6c9c1b7
VZ
224 return selections.GetCount();
225}
c801d85f 226
59bd9598 227size_t wxGetMultipleChoices(wxArrayInt& selections,
d6c9c1b7
VZ
228 const wxString& message,
229 const wxString& caption,
230 const wxArrayString& aChoices,
231 wxWindow *parent,
232 int x, int y,
233 bool centre,
234 int width, int height)
c801d85f 235{
d6c9c1b7
VZ
236 wxString *choices;
237 int n = ConvertWXArrayToC(aChoices, &choices);
238 size_t res = wxGetMultipleChoices(selections, message, caption,
239 n, choices, parent,
240 x, y, centre, width, height);
241 delete [] choices;
242
243 return res;
c801d85f 244}
c801d85f 245
d6c9c1b7
VZ
246// ----------------------------------------------------------------------------
247// wxAnyChoiceDialog
248// ----------------------------------------------------------------------------
249
250bool wxAnyChoiceDialog::Create(wxWindow *parent,
251 const wxString& message,
252 const wxString& caption,
253 int n, const wxString *choices,
ea660175 254 long styleDlg,
d6c9c1b7
VZ
255 const wxPoint& pos,
256 long styleLbox)
257{
aa66250b
JS
258#if defined(__SMARTPHONE__) || defined(__POCKETPC__)
259 styleDlg &= ~wxBORDER_MASK;
260 styleDlg &= ~wxRESIZE_BORDER;
261 styleDlg &= ~wxCAPTION;
262#endif
a319ce7d
SC
263#ifdef __WXMAC__
264 if ( !wxDialog::Create(parent, wxID_ANY, caption, pos, wxDefaultSize, styleDlg & (~wxCANCEL) ) )
265 return false;
266#else
ca65c044
WS
267 if ( !wxDialog::Create(parent, wxID_ANY, caption, pos, wxDefaultSize, styleDlg) )
268 return false;
a319ce7d 269#endif
d6c9c1b7
VZ
270
271 wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
272
64c794f6 273 // 1) text message
a319ce7d
SC
274#ifdef __WXMAC__
275 // align text and list at least on mac
276 topsizer->Add( CreateTextSizer( message ), 0, wxALL, wxLARGESMALL(15,0) );
277#else
718970e5 278 topsizer->Add( CreateTextSizer( message ), 0, wxALL, wxLARGESMALL(10,0) );
a319ce7d 279#endif
64c794f6 280 // 2) list box
60104cba
WS
281 m_listbox = CreateList(n,choices,styleLbox);
282
64c794f6
WS
283 if ( n > 0 )
284 m_listbox->SetSelection(0);
285
aa66250b 286 topsizer->Add( m_listbox, 1, wxEXPAND|wxLEFT|wxRIGHT, wxLARGESMALL(15,0) );
119727ad 287
897b24cf
WS
288 // 3) buttons if any
289 wxSizer *buttonSizer = CreateButtonSizer( styleDlg & ButtonSizerFlags , true, wxLARGESMALL(10,0) );
290 if(buttonSizer->GetChildren().GetCount() > 0 )
291 {
292 topsizer->Add( buttonSizer, 0, wxEXPAND | wxALL, wxLARGESMALL(10,0) );
293 }
294 else
295 {
296 topsizer->AddSpacer( wxLARGESMALL(15,0) );
297 delete buttonSizer;
298 }
64c794f6 299
d6c9c1b7
VZ
300 SetSizer( topsizer );
301
aa66250b 302#if !defined(__SMARTPHONE__) && !defined(__POCKETPC__)
d6c9c1b7
VZ
303 topsizer->SetSizeHints( this );
304 topsizer->Fit( this );
305
8316ff5d
VS
306 if ( styleDlg & wxCENTRE )
307 Centre(wxBOTH);
aa66250b 308#endif
d6c9c1b7
VZ
309
310 m_listbox->SetFocus();
311
ca65c044 312 return true;
d6c9c1b7
VZ
313}
314
584ad2a3
MB
315bool wxAnyChoiceDialog::Create(wxWindow *parent,
316 const wxString& message,
317 const wxString& caption,
318 const wxArrayString& choices,
319 long styleDlg,
320 const wxPoint& pos,
321 long styleLbox)
322{
323 wxCArrayString chs(choices);
324 return Create(parent, message, caption, chs.GetCount(), chs.GetStrings(),
325 styleDlg, pos, styleLbox);
326}
327
60104cba
WS
328wxListBoxBase *wxAnyChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
329{
330 return new wxListBox( this, wxID_LISTBOX,
331 wxDefaultPosition, wxDefaultSize,
332 n, choices,
333 styleLbox );
334}
335
d6c9c1b7 336// ----------------------------------------------------------------------------
c801d85f 337// wxSingleChoiceDialog
d6c9c1b7 338// ----------------------------------------------------------------------------
c801d85f 339
c801d85f 340BEGIN_EVENT_TABLE(wxSingleChoiceDialog, wxDialog)
d427503c 341 EVT_BUTTON(wxID_OK, wxSingleChoiceDialog::OnOK)
7b504551 342#ifndef __SMARTPHONE__
d427503c 343 EVT_LISTBOX_DCLICK(wxID_LISTBOX, wxSingleChoiceDialog::OnListBoxDClick)
7b504551
WS
344#endif
345#ifdef __WXWINCE__
346 EVT_JOY_BUTTON_DOWN(wxSingleChoiceDialog::OnJoystickButtonDown)
347#endif
c801d85f
KB
348END_EVENT_TABLE()
349
d6c9c1b7 350IMPLEMENT_DYNAMIC_CLASS(wxSingleChoiceDialog, wxDialog)
257bf510
VZ
351
352wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow *parent,
353 const wxString& message,
354 const wxString& caption,
c50f1fb9 355 int n,
257bf510
VZ
356 const wxString *choices,
357 char **clientData,
358 long style,
59bd9598 359 const wxPoint& WXUNUSED(pos))
c801d85f 360{
257bf510 361 Create(parent, message, caption, n, choices, clientData, style);
c801d85f
KB
362}
363
584ad2a3
MB
364wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow *parent,
365 const wxString& message,
366 const wxString& caption,
367 const wxArrayString& choices,
368 char **clientData,
369 long style,
370 const wxPoint& WXUNUSED(pos))
371{
372 Create(parent, message, caption, choices, clientData, style);
373}
374
d6c9c1b7 375bool wxSingleChoiceDialog::Create( wxWindow *parent,
c50f1fb9 376 const wxString& message,
d6c9c1b7 377 const wxString& caption,
c50f1fb9 378 int n,
257bf510
VZ
379 const wxString *choices,
380 char **clientData,
381 long style,
d6c9c1b7 382 const wxPoint& pos )
c801d85f 383{
d6c9c1b7
VZ
384 if ( !wxAnyChoiceDialog::Create(parent, message, caption,
385 n, choices,
386 style, pos) )
ca65c044 387 return false;
92afa2b1 388
d6c9c1b7 389 m_selection = n > 0 ? 0 : -1;
92afa2b1 390
92afa2b1 391 if (clientData)
d427503c 392 {
257bf510
VZ
393 for (int i = 0; i < n; i++)
394 m_listbox->SetClientData(i, clientData[i]);
d427503c 395 }
c801d85f 396
ca65c044 397 return true;
c801d85f
KB
398}
399
584ad2a3
MB
400bool wxSingleChoiceDialog::Create( wxWindow *parent,
401 const wxString& message,
402 const wxString& caption,
403 const wxArrayString& choices,
404 char **clientData,
405 long style,
406 const wxPoint& pos )
407{
408 wxCArrayString chs(choices);
409 return Create( parent, message, caption, chs.GetCount(), chs.GetStrings(),
410 clientData, style, pos );
411}
412
ef77f91e
JS
413// Set the selection
414void wxSingleChoiceDialog::SetSelection(int sel)
415{
257bf510 416 m_listbox->SetSelection(sel);
ef77f91e
JS
417 m_selection = sel;
418}
419
c801d85f
KB
420void wxSingleChoiceDialog::OnOK(wxCommandEvent& WXUNUSED(event))
421{
7b504551 422 DoChoice();
c801d85f
KB
423}
424
7b504551 425#ifndef __SMARTPHONE__
debe6624 426void wxSingleChoiceDialog::OnListBoxDClick(wxCommandEvent& WXUNUSED(event))
7b504551
WS
427{
428 DoChoice();
429}
430#endif
431
432#ifdef __WXWINCE__
433void wxSingleChoiceDialog::OnJoystickButtonDown(wxJoystickEvent& WXUNUSED(event))
434{
435 DoChoice();
436}
437#endif
438
439void wxSingleChoiceDialog::DoChoice()
debe6624 440{
257bf510
VZ
441 m_selection = m_listbox->GetSelection();
442 m_stringSelection = m_listbox->GetStringSelection();
25f47127 443
eb553cb2 444 if ( m_listbox->HasClientUntypedData() )
59af5f19 445 SetClientData(m_listbox->GetClientData(m_selection));
d427503c
VZ
446
447 EndModal(wxID_OK);
debe6624
JS
448}
449
d6c9c1b7
VZ
450// ----------------------------------------------------------------------------
451// wxMultiChoiceDialog
452// ----------------------------------------------------------------------------
453
d6c9c1b7
VZ
454IMPLEMENT_DYNAMIC_CLASS(wxMultiChoiceDialog, wxDialog)
455
456bool wxMultiChoiceDialog::Create( wxWindow *parent,
457 const wxString& message,
458 const wxString& caption,
459 int n,
460 const wxString *choices,
461 long style,
462 const wxPoint& pos )
463{
464 if ( !wxAnyChoiceDialog::Create(parent, message, caption,
465 n, choices,
466 style, pos,
3d49ce44 467 wxLB_ALWAYS_SB | wxLB_EXTENDED) )
ca65c044 468 return false;
d6c9c1b7 469
ca65c044 470 return true;
d6c9c1b7
VZ
471}
472
584ad2a3
MB
473bool wxMultiChoiceDialog::Create( wxWindow *parent,
474 const wxString& message,
475 const wxString& caption,
476 const wxArrayString& choices,
477 long style,
478 const wxPoint& pos )
479{
480 wxCArrayString chs(choices);
481 return Create( parent, message, caption, chs.GetCount(),
482 chs.GetStrings(), style, pos );
483}
484
d6c9c1b7
VZ
485void wxMultiChoiceDialog::SetSelections(const wxArrayInt& selections)
486{
d0cc483d
VZ
487 // first clear all currently selected items
488 size_t n,
489 count = m_listbox->GetCount();
490 for ( n = 0; n < count; ++n )
491 {
492 m_listbox->Deselect(n);
493 }
494
495 // now select the ones which should be selected
496 count = selections.GetCount();
497 for ( n = 0; n < count; n++ )
d6c9c1b7
VZ
498 {
499 m_listbox->Select(selections[n]);
500 }
501}
502
3d49ce44 503bool wxMultiChoiceDialog::TransferDataFromWindow()
d6c9c1b7
VZ
504{
505 m_selections.Empty();
506 size_t count = m_listbox->GetCount();
507 for ( size_t n = 0; n < count; n++ )
508 {
509 if ( m_listbox->IsSelected(n) )
510 m_selections.Add(n);
511 }
512
ca65c044 513 return true;
d6c9c1b7 514}
1e6feb95 515
60104cba
WS
516#if wxUSE_CHECKLISTBOX
517
518wxListBoxBase *wxMultiChoiceDialog::CreateList(int n, const wxString *choices, long styleLbox)
519{
520 return new wxCheckListBox( this, wxID_LISTBOX,
521 wxDefaultPosition, wxDefaultSize,
522 n, choices,
523 styleLbox );
524}
525
526#endif // wxUSE_CHECKLISTBOX
527
1e6feb95 528#endif // wxUSE_CHOICEDLG