1 /////////////////////////////////////////////////////////////////////////////
2 // Program: wxWidgets Widgets Sample
4 // Purpose: Part of the widgets sample showing wxListbox
5 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin
9 // License: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
29 // for all others, include the necessary headers
33 #include "wx/bitmap.h"
34 #include "wx/button.h"
35 #include "wx/checkbox.h"
36 #include "wx/combobox.h"
37 #include "wx/listbox.h"
38 #include "wx/radiobox.h"
39 #include "wx/statbox.h"
40 #include "wx/textctrl.h"
45 #include "wx/checklst.h"
49 #include "icons/listbox.xpm"
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
58 ListboxPage_Reset
= wxID_HIGHEST
,
61 ListboxPage_AddSeveral
,
65 ListboxPage_ChangeText
,
67 ListboxPage_DeleteText
,
68 ListboxPage_DeleteSel
,
72 // ----------------------------------------------------------------------------
74 // ----------------------------------------------------------------------------
76 class ListboxWidgetsPage
: public WidgetsPage
79 ListboxWidgetsPage(WidgetsBookCtrl
*book
, wxImageList
*imaglist
);
81 virtual wxControl
*GetWidget() const { return m_lbox
; }
82 virtual void RecreateWidget() { CreateLbox(); }
86 void OnButtonReset(wxCommandEvent
& event
);
87 void OnButtonChange(wxCommandEvent
& event
);
88 void OnButtonDelete(wxCommandEvent
& event
);
89 void OnButtonDeleteSel(wxCommandEvent
& event
);
90 void OnButtonClear(wxCommandEvent
& event
);
91 void OnButtonAdd(wxCommandEvent
& event
);
92 void OnButtonAddSeveral(wxCommandEvent
& event
);
93 void OnButtonAddMany(wxCommandEvent
& event
);
95 void OnListbox(wxCommandEvent
& event
);
96 void OnListboxDClick(wxCommandEvent
& event
);
97 void OnCheckListbox(wxCommandEvent
& event
);
99 void OnCheckOrRadioBox(wxCommandEvent
& event
);
101 void OnUpdateUIAddSeveral(wxUpdateUIEvent
& event
);
102 void OnUpdateUIClearButton(wxUpdateUIEvent
& event
);
103 void OnUpdateUIDeleteButton(wxUpdateUIEvent
& event
);
104 void OnUpdateUIDeleteSelButton(wxUpdateUIEvent
& event
);
105 void OnUpdateUIResetButton(wxUpdateUIEvent
& event
);
107 // reset the listbox parameters
110 // (re)create the listbox
113 // listbox parameters
114 // ------------------
116 // the selection mode
124 // should it be sorted?
127 // should it have horz scroll/vert scrollbar permanently shown?
134 // the sel mode radiobox
135 wxRadioBox
*m_radioSelMode
;
138 wxCheckBox
*m_chkVScroll
,
144 // the listbox itself and the sizer it is in
146 wxSizer
*m_sizerLbox
;
148 // the text entries for "Add/change string" and "Delete" buttons
149 wxTextCtrl
*m_textAdd
,
154 DECLARE_EVENT_TABLE()
155 DECLARE_WIDGETS_PAGE(ListboxWidgetsPage
)
158 // ----------------------------------------------------------------------------
160 // ----------------------------------------------------------------------------
162 BEGIN_EVENT_TABLE(ListboxWidgetsPage
, WidgetsPage
)
163 EVT_BUTTON(ListboxPage_Reset
, ListboxWidgetsPage::OnButtonReset
)
164 EVT_BUTTON(ListboxPage_Change
, ListboxWidgetsPage::OnButtonChange
)
165 EVT_BUTTON(ListboxPage_Delete
, ListboxWidgetsPage::OnButtonDelete
)
166 EVT_BUTTON(ListboxPage_DeleteSel
, ListboxWidgetsPage::OnButtonDeleteSel
)
167 EVT_BUTTON(ListboxPage_Clear
, ListboxWidgetsPage::OnButtonClear
)
168 EVT_BUTTON(ListboxPage_Add
, ListboxWidgetsPage::OnButtonAdd
)
169 EVT_BUTTON(ListboxPage_AddSeveral
, ListboxWidgetsPage::OnButtonAddSeveral
)
170 EVT_BUTTON(ListboxPage_AddMany
, ListboxWidgetsPage::OnButtonAddMany
)
172 EVT_TEXT_ENTER(ListboxPage_AddText
, ListboxWidgetsPage::OnButtonAdd
)
173 EVT_TEXT_ENTER(ListboxPage_DeleteText
, ListboxWidgetsPage::OnButtonDelete
)
175 EVT_UPDATE_UI(ListboxPage_Reset
, ListboxWidgetsPage::OnUpdateUIResetButton
)
176 EVT_UPDATE_UI(ListboxPage_AddSeveral
, ListboxWidgetsPage::OnUpdateUIAddSeveral
)
177 EVT_UPDATE_UI(ListboxPage_Clear
, ListboxWidgetsPage::OnUpdateUIClearButton
)
178 EVT_UPDATE_UI(ListboxPage_DeleteText
, ListboxWidgetsPage::OnUpdateUIClearButton
)
179 EVT_UPDATE_UI(ListboxPage_Delete
, ListboxWidgetsPage::OnUpdateUIDeleteButton
)
180 EVT_UPDATE_UI(ListboxPage_Change
, ListboxWidgetsPage::OnUpdateUIDeleteSelButton
)
181 EVT_UPDATE_UI(ListboxPage_ChangeText
, ListboxWidgetsPage::OnUpdateUIDeleteSelButton
)
182 EVT_UPDATE_UI(ListboxPage_DeleteSel
, ListboxWidgetsPage::OnUpdateUIDeleteSelButton
)
184 EVT_LISTBOX(ListboxPage_Listbox
, ListboxWidgetsPage::OnListbox
)
185 EVT_LISTBOX_DCLICK(ListboxPage_Listbox
, ListboxWidgetsPage::OnListboxDClick
)
186 EVT_CHECKLISTBOX(ListboxPage_Listbox
, ListboxWidgetsPage::OnCheckListbox
)
188 EVT_CHECKBOX(wxID_ANY
, ListboxWidgetsPage::OnCheckOrRadioBox
)
189 EVT_RADIOBOX(wxID_ANY
, ListboxWidgetsPage::OnCheckOrRadioBox
)
192 // ============================================================================
194 // ============================================================================
196 #if defined(__WXUNIVERSAL__)
197 #define FAMILY_CTRLS UNIVERSAL_CTRLS
199 #define FAMILY_CTRLS NATIVE_CTRLS
202 IMPLEMENT_WIDGETS_PAGE(ListboxWidgetsPage
, _T("Listbox"),
203 FAMILY_CTRLS
| WITH_ITEMS_CTRLS
206 ListboxWidgetsPage::ListboxWidgetsPage(WidgetsBookCtrl
*book
,
207 wxImageList
*imaglist
)
210 imaglist
->Add(wxBitmap(listbox_xpm
));
213 m_radioSelMode
= (wxRadioBox
*)NULL
;
219 m_chkOwnerDraw
= (wxCheckBox
*)NULL
;
221 m_lbox
= (wxListBox
*)NULL
;
222 m_sizerLbox
= (wxSizer
*)NULL
;
225 What we create here is a frame having 3 panes: style pane is the
226 leftmost one, in the middle the pane with buttons allowing to perform
227 miscellaneous listbox operations and the pane containing the listbox
230 wxSizer
*sizerTop
= new wxBoxSizer(wxHORIZONTAL
);
233 wxStaticBox
*box
= new wxStaticBox(this, wxID_ANY
,
234 _T("&Set listbox parameters"));
235 wxSizer
*sizerLeft
= new wxStaticBoxSizer(box
, wxVERTICAL
);
237 static const wxString modes
[] =
244 m_radioSelMode
= new wxRadioBox(this, wxID_ANY
, _T("Selection &mode:"),
245 wxDefaultPosition
, wxDefaultSize
,
246 WXSIZEOF(modes
), modes
,
247 1, wxRA_SPECIFY_COLS
);
249 m_chkVScroll
= CreateCheckBoxAndAddToSizer
252 _T("Always show &vertical scrollbar")
254 m_chkHScroll
= CreateCheckBoxAndAddToSizer
257 _T("Show &horizontal scrollbar")
259 m_chkCheck
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Check list box"));
260 m_chkSort
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Sort items"));
261 m_chkOwnerDraw
= CreateCheckBoxAndAddToSizer(sizerLeft
, _T("&Owner drawn"));
263 sizerLeft
->Add(5, 5, 0, wxGROW
| wxALL
, 5); // spacer
264 sizerLeft
->Add(m_radioSelMode
, 0, wxGROW
| wxALL
, 5);
266 wxButton
*btn
= new wxButton(this, ListboxPage_Reset
, _T("&Reset"));
267 sizerLeft
->Add(btn
, 0, wxALIGN_CENTRE_HORIZONTAL
| wxALL
, 15);
270 wxStaticBox
*box2
= new wxStaticBox(this, wxID_ANY
,
271 _T("&Change listbox contents"));
272 wxSizer
*sizerMiddle
= new wxStaticBoxSizer(box2
, wxVERTICAL
);
274 wxSizer
*sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
275 btn
= new wxButton(this, ListboxPage_Add
, _T("&Add this string"));
276 m_textAdd
= new wxTextCtrl(this, ListboxPage_AddText
, _T("test item 0"));
277 sizerRow
->Add(btn
, 0, wxRIGHT
, 5);
278 sizerRow
->Add(m_textAdd
, 1, wxLEFT
, 5);
279 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
281 btn
= new wxButton(this, ListboxPage_AddSeveral
, _T("&Insert a few strings"));
282 sizerMiddle
->Add(btn
, 0, wxALL
| wxGROW
, 5);
284 btn
= new wxButton(this, ListboxPage_AddMany
, _T("Add &many strings"));
285 sizerMiddle
->Add(btn
, 0, wxALL
| wxGROW
, 5);
287 sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
288 btn
= new wxButton(this, ListboxPage_Change
, _T("C&hange current"));
289 m_textChange
= new wxTextCtrl(this, ListboxPage_ChangeText
, wxEmptyString
);
290 sizerRow
->Add(btn
, 0, wxRIGHT
, 5);
291 sizerRow
->Add(m_textChange
, 1, wxLEFT
, 5);
292 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
294 sizerRow
= new wxBoxSizer(wxHORIZONTAL
);
295 btn
= new wxButton(this, ListboxPage_Delete
, _T("&Delete this item"));
296 m_textDelete
= new wxTextCtrl(this, ListboxPage_DeleteText
, wxEmptyString
);
297 sizerRow
->Add(btn
, 0, wxRIGHT
, 5);
298 sizerRow
->Add(m_textDelete
, 1, wxLEFT
, 5);
299 sizerMiddle
->Add(sizerRow
, 0, wxALL
| wxGROW
, 5);
301 btn
= new wxButton(this, ListboxPage_DeleteSel
, _T("Delete &selection"));
302 sizerMiddle
->Add(btn
, 0, wxALL
| wxGROW
, 5);
304 btn
= new wxButton(this, ListboxPage_Clear
, _T("&Clear"));
305 sizerMiddle
->Add(btn
, 0, wxALL
| wxGROW
, 5);
308 wxSizer
*sizerRight
= new wxBoxSizer(wxVERTICAL
);
309 m_lbox
= new wxListBox(this, ListboxPage_Listbox
,
310 wxDefaultPosition
, wxDefaultSize
,
313 sizerRight
->Add(m_lbox
, 1, wxGROW
| wxALL
, 5);
314 sizerRight
->SetMinSize(150, 0);
315 m_sizerLbox
= sizerRight
; // save it to modify it later
317 // the 3 panes panes compose the window
318 sizerTop
->Add(sizerLeft
, 0, wxGROW
| (wxALL
& ~wxLEFT
), 10);
319 sizerTop
->Add(sizerMiddle
, 1, wxGROW
| wxALL
, 10);
320 sizerTop
->Add(sizerRight
, 1, wxGROW
| (wxALL
& ~wxRIGHT
), 10);
322 // final initializations
330 // ----------------------------------------------------------------------------
332 // ----------------------------------------------------------------------------
334 void ListboxWidgetsPage::Reset()
336 m_radioSelMode
->SetSelection(LboxSel_Single
);
337 m_chkVScroll
->SetValue(false);
338 m_chkHScroll
->SetValue(true);
339 m_chkCheck
->SetValue(false);
340 m_chkSort
->SetValue(false);
341 m_chkOwnerDraw
->SetValue(false);
344 void ListboxWidgetsPage::CreateLbox()
346 int flags
= ms_defaultFlags
;
347 switch ( m_radioSelMode
->GetSelection() )
350 wxFAIL_MSG( _T("unexpected radio box selection") );
352 case LboxSel_Single
: flags
|= wxLB_SINGLE
; break;
353 case LboxSel_Extended
: flags
|= wxLB_EXTENDED
; break;
354 case LboxSel_Multiple
: flags
|= wxLB_MULTIPLE
; break;
357 if ( m_chkVScroll
->GetValue() )
358 flags
|= wxLB_ALWAYS_SB
;
359 if ( m_chkHScroll
->GetValue() )
360 flags
|= wxLB_HSCROLL
;
361 if ( m_chkSort
->GetValue() )
363 if ( m_chkOwnerDraw
->GetValue() )
364 flags
|= wxLB_OWNERDRAW
;
369 int count
= m_lbox
->GetCount();
370 for ( int n
= 0; n
< count
; n
++ )
372 items
.Add(m_lbox
->GetString(n
));
375 m_sizerLbox
->Detach( m_lbox
);
379 #if wxUSE_CHECKLISTBOX
380 if ( m_chkCheck
->GetValue() )
382 m_lbox
= new wxCheckListBox(this, ListboxPage_Listbox
,
383 wxDefaultPosition
, wxDefaultSize
,
387 else // just a listbox
390 m_lbox
= new wxListBox(this, ListboxPage_Listbox
,
391 wxDefaultPosition
, wxDefaultSize
,
397 m_sizerLbox
->Add(m_lbox
, 1, wxGROW
| wxALL
, 5);
398 m_sizerLbox
->Layout();
401 // ----------------------------------------------------------------------------
403 // ----------------------------------------------------------------------------
405 void ListboxWidgetsPage::OnButtonReset(wxCommandEvent
& WXUNUSED(event
))
412 void ListboxWidgetsPage::OnButtonChange(wxCommandEvent
& WXUNUSED(event
))
414 wxArrayInt selections
;
415 int count
= m_lbox
->GetSelections(selections
);
416 wxString s
= m_textChange
->GetValue();
417 for ( int n
= 0; n
< count
; n
++ )
419 m_lbox
->SetString(selections
[n
], s
);
423 void ListboxWidgetsPage::OnButtonDelete(wxCommandEvent
& WXUNUSED(event
))
426 if ( !m_textDelete
->GetValue().ToULong(&n
) ||
427 (n
>= (unsigned)m_lbox
->GetCount()) )
435 void ListboxWidgetsPage::OnButtonDeleteSel(wxCommandEvent
& WXUNUSED(event
))
437 wxArrayInt selections
;
438 int n
= m_lbox
->GetSelections(selections
);
441 m_lbox
->Delete(selections
[--n
]);
445 void ListboxWidgetsPage::OnButtonClear(wxCommandEvent
& WXUNUSED(event
))
450 void ListboxWidgetsPage::OnButtonAdd(wxCommandEvent
& WXUNUSED(event
))
452 static unsigned int s_item
= 0;
454 wxString s
= m_textAdd
->GetValue();
455 if ( !m_textAdd
->IsModified() )
457 // update the default string
458 m_textAdd
->SetValue(wxString::Format(_T("test item %u"), ++s_item
));
464 void ListboxWidgetsPage::OnButtonAddMany(wxCommandEvent
& WXUNUSED(event
))
466 // "many" means 1000 here
467 for ( unsigned int n
= 0; n
< 1000; n
++ )
469 m_lbox
->Append(wxString::Format(_T("item #%u"), n
));
473 void ListboxWidgetsPage::OnButtonAddSeveral(wxCommandEvent
& WXUNUSED(event
))
476 items
.Add(_T("First"));
477 items
.Add(_T("another one"));
478 items
.Add(_T("and the last (very very very very very very very very very very long) one"));
479 m_lbox
->InsertItems(items
, 0);
482 void ListboxWidgetsPage::OnUpdateUIResetButton(wxUpdateUIEvent
& event
)
484 event
.Enable( (m_radioSelMode
->GetSelection() != LboxSel_Single
) ||
485 m_chkSort
->GetValue() ||
486 m_chkOwnerDraw
->GetValue() ||
487 !m_chkHScroll
->GetValue() ||
488 m_chkVScroll
->GetValue() );
491 void ListboxWidgetsPage::OnUpdateUIDeleteButton(wxUpdateUIEvent
& event
)
494 event
.Enable(m_textDelete
->GetValue().ToULong(&n
) &&
495 (n
< (unsigned)m_lbox
->GetCount()));
498 void ListboxWidgetsPage::OnUpdateUIDeleteSelButton(wxUpdateUIEvent
& event
)
500 wxArrayInt selections
;
501 event
.Enable(m_lbox
->GetSelections(selections
) != 0);
504 void ListboxWidgetsPage::OnUpdateUIClearButton(wxUpdateUIEvent
& event
)
506 event
.Enable(m_lbox
->GetCount() != 0);
509 void ListboxWidgetsPage::OnUpdateUIAddSeveral(wxUpdateUIEvent
& event
)
511 event
.Enable(!(m_lbox
->GetWindowStyle() & wxLB_SORT
));
514 void ListboxWidgetsPage::OnListbox(wxCommandEvent
& event
)
516 long sel
= event
.GetSelection();
517 m_textDelete
->SetValue(wxString::Format(_T("%ld"), sel
));
519 if (event
.IsSelection())
520 wxLogMessage(_T("Listbox item %ld selected"), sel
);
522 wxLogMessage(_T("Listbox item %ld deselected"), sel
);
525 void ListboxWidgetsPage::OnListboxDClick(wxCommandEvent
& event
)
527 wxLogMessage( _T("Listbox item %d double clicked"), event
.GetInt() );
530 void ListboxWidgetsPage::OnCheckListbox(wxCommandEvent
& event
)
532 wxLogMessage( _T("Listbox item %d toggled"), event
.GetInt() );
535 void ListboxWidgetsPage::OnCheckOrRadioBox(wxCommandEvent
& WXUNUSED(event
))
540 #endif // wxUSE_LISTBOX