]>
git.saurik.com Git - wxWidgets.git/blob - src/generic/choicdgg.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Choice dialogs
4 // Author: Julian Smart
5 // Modified by: 03.11.00: VZ to add wxArrayString and multiple sel functions
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma implementation "choicdgg.h"
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
36 #include "wx/dialog.h"
37 #include "wx/button.h"
38 #include "wx/listbox.h"
39 #include "wx/stattext.h"
42 #include "wx/arrstr.h"
46 #include "wx/statline.h"
49 #include "wx/generic/choicdgg.h"
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 #define wxID_LISTBOX 3000
57 // ----------------------------------------------------------------------------
59 // ----------------------------------------------------------------------------
61 // convert wxArrayString into a wxString[] which must be delete[]d by caller
62 static int ConvertWXArrayToC(const wxArrayString
& aChoices
, wxString
**choices
);
64 // ============================================================================
66 // ============================================================================
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 int ConvertWXArrayToC(const wxArrayString
& aChoices
, wxString
**choices
)
74 int n
= aChoices
.GetCount();
75 *choices
= new wxString
[n
];
77 for ( int i
= 0; i
< n
; i
++ )
79 (*choices
)[i
] = aChoices
[i
];
85 // ----------------------------------------------------------------------------
87 // ----------------------------------------------------------------------------
89 wxString
wxGetSingleChoice( const wxString
& message
,
90 const wxString
& caption
,
91 int n
, const wxString
*choices
,
93 int WXUNUSED(x
), int WXUNUSED(y
),
94 bool WXUNUSED(centre
),
95 int WXUNUSED(width
), int WXUNUSED(height
) )
97 wxSingleChoiceDialog
dialog(parent
, message
, caption
, n
, choices
);
99 if ( dialog
.ShowModal() == wxID_OK
)
100 choice
= dialog
.GetStringSelection();
105 wxString
wxGetSingleChoice( const wxString
& message
,
106 const wxString
& caption
,
107 const wxArrayString
& aChoices
,
111 int width
, int height
)
114 int n
= ConvertWXArrayToC(aChoices
, &choices
);
115 wxString res
= wxGetSingleChoice(message
, caption
, n
, choices
, parent
,
116 x
, y
, centre
, width
, height
);
122 int wxGetSingleChoiceIndex( const wxString
& message
,
123 const wxString
& caption
,
124 int n
, const wxString
*choices
,
126 int WXUNUSED(x
), int WXUNUSED(y
),
127 bool WXUNUSED(centre
),
128 int WXUNUSED(width
), int WXUNUSED(height
) )
130 wxSingleChoiceDialog
dialog(parent
, message
, caption
, n
, choices
);
132 if ( dialog
.ShowModal() == wxID_OK
)
133 choice
= dialog
.GetSelection();
140 int wxGetSingleChoiceIndex( const wxString
& message
,
141 const wxString
& caption
,
142 const wxArrayString
& aChoices
,
146 int width
, int height
)
149 int n
= ConvertWXArrayToC(aChoices
, &choices
);
150 int res
= wxGetSingleChoiceIndex(message
, caption
, n
, choices
, parent
,
151 x
, y
, centre
, width
, height
);
157 void *wxGetSingleChoiceData( const wxString
& message
,
158 const wxString
& caption
,
159 int n
, const wxString
*choices
,
162 int WXUNUSED(x
), int WXUNUSED(y
),
163 bool WXUNUSED(centre
),
164 int WXUNUSED(width
), int WXUNUSED(height
) )
166 wxSingleChoiceDialog
dialog(parent
, message
, caption
, n
, choices
,
167 (char **)client_data
);
169 if ( dialog
.ShowModal() == wxID_OK
)
170 data
= dialog
.GetSelectionClientData();
177 void *wxGetSingleChoiceData( const wxString
& message
,
178 const wxString
& caption
,
179 const wxArrayString
& aChoices
,
184 int width
, int height
)
187 int n
= ConvertWXArrayToC(aChoices
, &choices
);
188 void *res
= wxGetSingleChoiceData(message
, caption
, n
, choices
,
190 x
, y
, centre
, width
, height
);
196 size_t wxGetMultipleChoices(wxArrayInt
& selections
,
197 const wxString
& message
,
198 const wxString
& caption
,
199 int n
, const wxString
*choices
,
201 int WXUNUSED(x
), int WXUNUSED(y
),
202 bool WXUNUSED(centre
),
203 int WXUNUSED(width
), int WXUNUSED(height
))
205 wxMultiChoiceDialog
dialog(parent
, message
, caption
, n
, choices
);
207 if ( !selections
.IsEmpty() )
208 dialog
.SetSelections(selections
);
210 if ( dialog
.ShowModal() == wxID_OK
)
211 selections
= dialog
.GetSelections();
215 return selections
.GetCount();
218 size_t wxGetMultipleChoices(wxArrayInt
& selections
,
219 const wxString
& message
,
220 const wxString
& caption
,
221 const wxArrayString
& aChoices
,
225 int width
, int height
)
228 int n
= ConvertWXArrayToC(aChoices
, &choices
);
229 size_t res
= wxGetMultipleChoices(selections
, message
, caption
,
231 x
, y
, centre
, width
, height
);
237 // ----------------------------------------------------------------------------
239 // ----------------------------------------------------------------------------
241 bool wxAnyChoiceDialog::Create(wxWindow
*parent
,
242 const wxString
& message
,
243 const wxString
& caption
,
244 int n
, const wxString
*choices
,
249 if ( !wxDialog::Create(parent
, wxID_ANY
, caption
, pos
, wxDefaultSize
, styleDlg
) )
252 wxBoxSizer
*topsizer
= new wxBoxSizer( wxVERTICAL
);
254 #ifdef __SMARTPHONE__
257 topsizer
->Add( CreateTextSizer( message
), 0, wxEXPAND
, 0 );
260 m_listbox
= new wxListBox( this, wxID_LISTBOX
,
261 wxDefaultPosition
, wxDefaultSize
,
265 m_listbox
->SetSelection(0);
267 topsizer
->Add( m_listbox
, 1, wxEXPAND
, 0 );
269 SetRightMenu(wxID_CANCEL
, _("Cancel"));
271 #else // __SMARTPHONE__/!__SMARTPHONE__
274 topsizer
->Add( CreateTextSizer( message
), 0, wxALL
, 10 );
277 m_listbox
= new wxListBox( this, wxID_LISTBOX
,
278 wxDefaultPosition
, wxDefaultSize
,
282 m_listbox
->SetSelection(0);
284 topsizer
->Add( m_listbox
, 1, wxEXPAND
| wxLEFT
|wxRIGHT
, 15 );
288 topsizer
->Add( new wxStaticLine( this, wxID_ANY
), 0, wxEXPAND
| wxLEFT
|wxRIGHT
|wxTOP
, 10 );
292 topsizer
->Add( CreateButtonSizer( styleDlg
& (wxOK
|wxCANCEL
) ), 0, wxCENTRE
| wxALL
, 10 );
294 #endif // !__SMARTPHONE__
296 SetAutoLayout( true );
297 SetSizer( topsizer
);
299 topsizer
->SetSizeHints( this );
300 topsizer
->Fit( this );
304 m_listbox
->SetFocus();
309 bool wxAnyChoiceDialog::Create(wxWindow
*parent
,
310 const wxString
& message
,
311 const wxString
& caption
,
312 const wxArrayString
& choices
,
317 wxCArrayString
chs(choices
);
318 return Create(parent
, message
, caption
, chs
.GetCount(), chs
.GetStrings(),
319 styleDlg
, pos
, styleLbox
);
322 // ----------------------------------------------------------------------------
323 // wxSingleChoiceDialog
324 // ----------------------------------------------------------------------------
326 BEGIN_EVENT_TABLE(wxSingleChoiceDialog
, wxDialog
)
327 #if defined(__SMARTPHONE__)
328 EVT_MENU(wxID_OK
, wxSingleChoiceDialog::OnOK
)
330 EVT_BUTTON(wxID_OK
, wxSingleChoiceDialog::OnOK
)
332 EVT_LISTBOX_DCLICK(wxID_LISTBOX
, wxSingleChoiceDialog::OnListBoxDClick
)
335 IMPLEMENT_DYNAMIC_CLASS(wxSingleChoiceDialog
, wxDialog
)
337 wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow
*parent
,
338 const wxString
& message
,
339 const wxString
& caption
,
341 const wxString
*choices
,
344 const wxPoint
& WXUNUSED(pos
))
346 Create(parent
, message
, caption
, n
, choices
, clientData
, style
);
349 wxSingleChoiceDialog::wxSingleChoiceDialog(wxWindow
*parent
,
350 const wxString
& message
,
351 const wxString
& caption
,
352 const wxArrayString
& choices
,
355 const wxPoint
& WXUNUSED(pos
))
357 Create(parent
, message
, caption
, choices
, clientData
, style
);
360 bool wxSingleChoiceDialog::Create( wxWindow
*parent
,
361 const wxString
& message
,
362 const wxString
& caption
,
364 const wxString
*choices
,
369 if ( !wxAnyChoiceDialog::Create(parent
, message
, caption
,
374 m_selection
= n
> 0 ? 0 : -1;
378 for (int i
= 0; i
< n
; i
++)
379 m_listbox
->SetClientData(i
, clientData
[i
]);
385 bool wxSingleChoiceDialog::Create( wxWindow
*parent
,
386 const wxString
& message
,
387 const wxString
& caption
,
388 const wxArrayString
& choices
,
393 wxCArrayString
chs(choices
);
394 return Create( parent
, message
, caption
, chs
.GetCount(), chs
.GetStrings(),
395 clientData
, style
, pos
);
399 void wxSingleChoiceDialog::SetSelection(int sel
)
401 m_listbox
->SetSelection(sel
);
405 void wxSingleChoiceDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
407 m_selection
= m_listbox
->GetSelection();
408 m_stringSelection
= m_listbox
->GetStringSelection();
409 if ( m_listbox
->HasClientUntypedData() )
410 SetClientData(m_listbox
->GetClientData(m_selection
));
414 void wxSingleChoiceDialog::OnListBoxDClick(wxCommandEvent
& WXUNUSED(event
))
416 m_selection
= m_listbox
->GetSelection();
417 m_stringSelection
= m_listbox
->GetStringSelection();
419 if ( m_listbox
->HasClientUntypedData() )
420 SetClientData(m_listbox
->GetClientData(m_selection
));
425 // ----------------------------------------------------------------------------
426 // wxMultiChoiceDialog
427 // ----------------------------------------------------------------------------
429 IMPLEMENT_DYNAMIC_CLASS(wxMultiChoiceDialog
, wxDialog
)
431 bool wxMultiChoiceDialog::Create( wxWindow
*parent
,
432 const wxString
& message
,
433 const wxString
& caption
,
435 const wxString
*choices
,
439 if ( !wxAnyChoiceDialog::Create(parent
, message
, caption
,
442 wxLB_ALWAYS_SB
| wxLB_EXTENDED
) )
448 bool wxMultiChoiceDialog::Create( wxWindow
*parent
,
449 const wxString
& message
,
450 const wxString
& caption
,
451 const wxArrayString
& choices
,
455 wxCArrayString
chs(choices
);
456 return Create( parent
, message
, caption
, chs
.GetCount(),
457 chs
.GetStrings(), style
, pos
);
460 void wxMultiChoiceDialog::SetSelections(const wxArrayInt
& selections
)
462 size_t count
= selections
.GetCount();
463 for ( size_t n
= 0; n
< count
; n
++ )
465 m_listbox
->Select(selections
[n
]);
469 bool wxMultiChoiceDialog::TransferDataFromWindow()
471 m_selections
.Empty();
472 size_t count
= m_listbox
->GetCount();
473 for ( size_t n
= 0; n
< count
; n
++ )
475 if ( m_listbox
->IsSelected(n
) )
482 #endif // wxUSE_CHOICEDLG