]>
git.saurik.com Git - wxWidgets.git/blob - samples/checklst/checklst.cpp
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxCheckListBox sample
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
13 //#pragma implementation
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
28 #include "wx/ownerdrw.h"
34 #include "wx/menuitem.h"
35 #include "wx/checklst.h"
37 // Define a new application type
38 class CheckListBoxApp
: public wxApp
44 // Define a new frame type
45 class CheckListBoxFrame
: public wxFrame
49 CheckListBoxFrame(wxFrame
*frame
, const wxChar
*title
,
50 int x
, int y
, int w
, int h
);
51 virtual ~CheckListBoxFrame();
54 void OnQuit(wxCommandEvent
& event
);
55 void OnAbout(wxCommandEvent
& event
);
57 void OnCheckFirstItem(wxCommandEvent
& event
);
58 void OnUncheckFirstItem(wxCommandEvent
& event
);
59 void OnToggleFirstItem(wxCommandEvent
& event
);
60 void OnToggleSelection(wxCommandEvent
& event
);
61 void OnAddItems(wxCommandEvent
& event
);
63 void OnListboxSelect(wxCommandEvent
& event
);
64 void OnCheckboxToggle(wxCommandEvent
& event
);
65 void OnListboxDblClick(wxCommandEvent
& event
);
67 void OnButtonUp(wxCommandEvent
& event
);
68 void OnButtonDown(wxCommandEvent
& event
);
71 void CreateCheckListbox(long flags
= 0);
73 void OnButtonMove(bool up
);
75 void AdjustColour(size_t index
);
79 wxCheckListBox
*m_pListBox
;
101 BEGIN_EVENT_TABLE(CheckListBoxFrame
, wxFrame
)
102 EVT_MENU(Menu_About
, CheckListBoxFrame::OnAbout
)
103 EVT_MENU(Menu_Quit
, CheckListBoxFrame::OnQuit
)
105 EVT_MENU(Menu_CheckFirst
, CheckListBoxFrame::OnCheckFirstItem
)
106 EVT_MENU(Menu_UncheckFirst
, CheckListBoxFrame::OnUncheckFirstItem
)
107 EVT_MENU(Menu_ToggleFirst
, CheckListBoxFrame::OnToggleFirstItem
)
108 EVT_MENU(Menu_Selection
, CheckListBoxFrame::OnToggleSelection
)
109 EVT_MENU(Menu_AddItems
, CheckListBoxFrame::OnAddItems
)
111 EVT_LISTBOX(Control_Listbox
, CheckListBoxFrame::OnListboxSelect
)
112 EVT_CHECKLISTBOX(Control_Listbox
, CheckListBoxFrame::OnCheckboxToggle
)
113 EVT_LISTBOX_DCLICK(Control_Listbox
, CheckListBoxFrame::OnListboxDblClick
)
115 EVT_BUTTON(Btn_Up
, CheckListBoxFrame::OnButtonUp
)
116 EVT_BUTTON(Btn_Down
, CheckListBoxFrame::OnButtonDown
)
119 IMPLEMENT_APP(CheckListBoxApp
);
121 // init our app: create windows
122 bool CheckListBoxApp::OnInit(void)
124 CheckListBoxFrame
*pFrame
= new CheckListBoxFrame
127 _T("wxWindows Checklistbox Sample"),
130 SetTopWindow(pFrame
);
135 // main frame constructor
136 CheckListBoxFrame::CheckListBoxFrame(wxFrame
*frame
,
138 int x
, int y
, int w
, int h
)
139 : wxFrame(frame
, wxID_ANY
, title
, wxPoint(x
, y
), wxSize(w
, h
))
141 // create the status line
142 const int widths
[] = { -1, 60 };
144 SetStatusWidths(2, widths
);
145 wxLogStatus(this, _T("no selection"));
151 wxMenu
*menuFile
= new wxMenu
;
152 menuFile
->Append(Menu_About
, _T("&About...\tF1"));
153 menuFile
->AppendSeparator();
154 menuFile
->Append(Menu_Quit
, _T("E&xit\tAlt-X"));
157 wxMenu
*menuList
= new wxMenu
;
158 menuList
->Append(Menu_CheckFirst
, _T("Check the first item\tCtrl-C"));
159 menuList
->Append(Menu_UncheckFirst
, _T("Uncheck the first item\tCtrl-U"));
160 menuList
->Append(Menu_ToggleFirst
, _T("Toggle the first item\tCtrl-T"));
161 menuList
->AppendSeparator();
162 menuList
->AppendCheckItem(Menu_AddItems
, _T("Add more items\tCtrl-A"));
163 menuList
->AppendSeparator();
164 menuList
->AppendCheckItem(Menu_Selection
, _T("Multiple selection\tCtrl-M"));
166 // put it all together
167 wxMenuBar
*menu_bar
= new wxMenuBar
;
168 menu_bar
->Append(menuFile
, _T("&File"));
169 menu_bar
->Append(menuList
, _T("&List"));
170 SetMenuBar(menu_bar
);
172 // make a panel with some controls
173 m_panel
= new wxPanel(this, wxID_ANY
, wxPoint(0, 0),
174 wxSize(400, 200), wxTAB_TRAVERSAL
);
176 CreateCheckListbox();
178 // create buttons for moving the items around
179 wxButton
*button1
= new wxButton(m_panel
, Btn_Up
, _T(" &Up "), wxPoint(420, 90));
180 wxButton
*button2
= new wxButton(m_panel
, Btn_Down
, _T("&Down"), wxPoint(420, 120));
183 wxBoxSizer
*mainsizer
= new wxBoxSizer( wxVERTICAL
);
185 mainsizer
->Add( m_pListBox
, 1, wxGROW
|wxALL
, 10 );
187 wxBoxSizer
*bottomsizer
= new wxBoxSizer( wxHORIZONTAL
);
189 bottomsizer
->Add( button1
, 0, wxALL
, 10 );
190 bottomsizer
->Add( button2
, 0, wxALL
, 10 );
192 mainsizer
->Add( bottomsizer
, 0, wxCENTER
);
194 // tell frame to make use of sizer (or constraints, if any)
195 m_panel
->SetAutoLayout( true );
196 m_panel
->SetSizer( mainsizer
);
198 // don't allow frame to get smaller than what the sizers tell ye
199 mainsizer
->SetSizeHints( this );
204 void CheckListBoxFrame::CreateCheckListbox(long flags
)
207 static const wxChar
*aszChoices
[] =
210 _T("First"), _T("Second"), _T("Third"),
211 _T("Fourth"), _T("Fifth"), _T("Sixth"),
212 _T("Seventh"), _T("Eighth"), _T("Nineth")
215 wxString
*astrChoices
= new wxString
[WXSIZEOF(aszChoices
)];
217 for ( ui
= 0; ui
< WXSIZEOF(aszChoices
); ui
++ )
218 astrChoices
[ui
] = aszChoices
[ui
];
220 m_pListBox
= new wxCheckListBox
223 Control_Listbox
, // control id
224 wxPoint(10, 10), // listbox poistion
225 wxSize(400, 100), // listbox size
226 WXSIZEOF(aszChoices
), // number of strings
227 astrChoices
, // array of strings
231 //m_pListBox->SetBackgroundColour(*wxGREEN);
233 delete [] astrChoices
;
235 // set grey background for every second entry
236 for ( ui
= 0; ui
< WXSIZEOF(aszChoices
); ui
+= 2 ) {
240 m_pListBox
->Check(2);
241 m_pListBox
->Select(3);
244 CheckListBoxFrame::~CheckListBoxFrame()
248 void CheckListBoxFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
253 void CheckListBoxFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
255 wxMessageBox(wxT("Demo of wxCheckListBox control\n© Vadim Zeitlin 1998-2002"),
256 wxT("About wxCheckListBox"),
257 wxICON_INFORMATION
, this);
260 void CheckListBoxFrame::OnCheckFirstItem(wxCommandEvent
& WXUNUSED(event
))
262 if ( !m_pListBox
->IsEmpty() )
263 m_pListBox
->Check(0);
266 void CheckListBoxFrame::OnUncheckFirstItem(wxCommandEvent
& WXUNUSED(event
))
268 if ( !m_pListBox
->IsEmpty() )
269 m_pListBox
->Check(0, false);
272 void CheckListBoxFrame::OnToggleFirstItem(wxCommandEvent
& WXUNUSED(event
))
274 if ( !m_pListBox
->IsEmpty() )
275 m_pListBox
->Check(0, !m_pListBox
->IsChecked(0));
278 void CheckListBoxFrame::OnAddItems(wxCommandEvent
& WXUNUSED(event
))
280 static size_t s_nItem
= 0;
282 items
.Add(wxString::Format(_T("New item %lu"), (unsigned long)++s_nItem
));
283 items
.Add(wxString::Format(_T("New item %lu"), (unsigned long)++s_nItem
));
284 items
.Add(wxString::Format(_T("New item %lu"), (unsigned long)++s_nItem
));
286 m_pListBox
->InsertItems(items
, 0);//m_pListBox->GetCount());
289 void CheckListBoxFrame::OnToggleSelection(wxCommandEvent
& event
)
291 wxSizer
*sizer
= m_panel
->GetSizer();
293 sizer
->Detach( m_pListBox
);
296 CreateCheckListbox(event
.IsChecked() ? wxLB_EXTENDED
: 0);
298 sizer
->Insert(0, m_pListBox
, 1, wxGROW
| wxALL
, 10);
303 void CheckListBoxFrame::OnListboxSelect(wxCommandEvent
& event
)
305 int nSel
= event
.GetSelection();
306 wxLogStatus(this, wxT("Item %d selected (%schecked)"), nSel
,
307 m_pListBox
->IsChecked(nSel
) ? wxT("") : wxT("not "));
310 void CheckListBoxFrame::OnListboxDblClick(wxCommandEvent
& WXUNUSED(event
))
313 if(m_pListBox
->GetWindowStyle() & wxLB_EXTENDED
)
316 m_pListBox
->GetSelections(list
);
319 selection
= list
.Item(0);
324 selection
= m_pListBox
->GetSelection();
327 wxString strSelection
;
328 if ( selection
!= -1 )
330 strSelection
.Printf(wxT("Item %d double clicked"), selection
);
334 strSelection
= wxT("List double clicked in multiple selection mode");
336 wxMessageDialog
dialog(this, strSelection
, wxT("wxCheckListBox message"), wxICON_INFORMATION
);
340 void CheckListBoxFrame::OnCheckboxToggle(wxCommandEvent
& event
)
342 unsigned int nItem
= event
.GetInt();
344 wxLogStatus(this, wxT("item %d was %schecked"), nItem
,
345 m_pListBox
->IsChecked(nItem
) ? wxT("") : wxT("un"));
348 void CheckListBoxFrame::OnButtonUp(wxCommandEvent
& WXUNUSED(event
))
353 void CheckListBoxFrame::OnButtonDown(wxCommandEvent
& WXUNUSED(event
))
358 void CheckListBoxFrame::OnButtonMove(bool up
)
361 if(m_pListBox
->GetWindowStyle() & wxLB_EXTENDED
)
364 m_pListBox
->GetSelections(list
);
367 selection
= list
.Item(0);
372 selection
= m_pListBox
->GetSelection();
374 if ( selection
!= -1 )
376 wxString label
= m_pListBox
->GetString(selection
);
378 int positionNew
= up
? selection
- 1 : selection
+ 2;
379 if ( positionNew
< 0 || positionNew
> m_pListBox
->GetCount() )
381 wxLogStatus(this, wxT("Can't move this item %s"), up
? wxT("up") : wxT("down"));
385 bool wasChecked
= m_pListBox
->IsChecked(selection
);
387 int positionOld
= up
? selection
+ 1 : selection
;
390 m_pListBox
->InsertItems(1, &label
, positionNew
);
392 // and delete the old one
393 m_pListBox
->Delete(positionOld
);
395 int selectionNew
= up
? positionNew
: positionNew
- 1;
396 m_pListBox
->Check(selectionNew
, wasChecked
);
397 m_pListBox
->SetSelection(selectionNew
);
399 AdjustColour(selection
);
400 AdjustColour(selectionNew
);
402 wxLogStatus(this, wxT("Item moved %s"), up
? wxT("up") : wxT("down"));
407 wxLogStatus(this, wxT("Please select single item"));
411 // not implemented in ports other than (native) MSW yet
412 #if defined(__WXMSW__) && !defined(__WXUNIVERSAL__)
413 void CheckListBoxFrame::AdjustColour(size_t index
)
415 // even items have grey backround, odd ones - white
416 unsigned char c
= index
% 2 ? 255 : 200;
417 m_pListBox
->GetItem(index
)->SetBackgroundColour(wxColor(c
, c
, c
));
420 void CheckListBoxFrame::AdjustColour(size_t WXUNUSED(index
))