+CheckListBoxFrame::CheckListBoxFrame(wxFrame *frame,
+ const wxChar *title)
+ : wxFrame(frame, wxID_ANY, title)
+{
+#if wxUSE_STATUSBAR
+ // create the status line
+ const int widths[] = { -1, 60 };
+ CreateStatusBar(2);
+ SetStatusWidths(2, widths);
+#endif // wxUSE_STATUSBAR
+
+ // Make a menubar
+ // --------------
+
+ // file submenu
+ wxMenu *menuFile = new wxMenu;
+ menuFile->Append(Menu_About, _T("&About...\tF1"));
+ menuFile->AppendSeparator();
+ menuFile->Append(Menu_Quit, _T("E&xit\tAlt-X"));
+
+ // listbox submenu
+ wxMenu *menuList = new wxMenu;
+ menuList->Append(Menu_CheckFirst, _T("Check the first item\tCtrl-C"));
+ menuList->Append(Menu_UncheckFirst, _T("Uncheck the first item\tCtrl-U"));
+ menuList->Append(Menu_ToggleFirst, _T("Toggle the first item\tCtrl-T"));
+ menuList->AppendSeparator();
+ menuList->Append(Menu_InsertItemsStart, _T("Insert some item at the beginning"));
+ menuList->Append(Menu_InsertItemsMiddle, _T("Insert some item at the middle"));
+ menuList->Append(Menu_InsertItemsEnd, _T("Insert some item at the end"));
+ menuList->Append(Menu_AppendItems, _T("Append some items\tCtrl-A"));
+ menuList->Append(Menu_RemoveItems, _T("Remove some items"));
+ menuList->AppendSeparator();
+ menuList->AppendCheckItem(Menu_Selection, _T("Multiple selection\tCtrl-M"));
+ menuList->AppendCheckItem(Menu_Extended, _T("Extended selection"));
+ menuList->AppendCheckItem(Menu_Sorting, _T("Sorting"));
+ menuList->AppendSeparator();
+ menuList->Append(Menu_GetBestSize, _T("Get the best size of the checklistbox control"));
+ menuList->AppendSeparator();
+ menuList->Append(Menu_MakeItemFirst, _T("Make selected item the first item"));
+
+
+ // put it all together
+ wxMenuBar *menu_bar = new wxMenuBar;
+ menu_bar->Append(menuFile, _T("&File"));
+ menu_bar->Append(menuList, _T("&List"));
+ SetMenuBar(menu_bar);
+
+ // make a panel with some controls
+ m_panel = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL);
+
+ CreateCheckListbox();
+
+ // create buttons for moving the items around
+ wxButton *button1 = new wxButton(m_panel, Btn_Up);
+ wxButton *button2 = new wxButton(m_panel, Btn_Down);
+
+
+ wxBoxSizer *mainsizer = new wxBoxSizer( wxVERTICAL );
+
+ mainsizer->Add( m_pListBox, 1, wxGROW|wxALL, 10 );
+
+ wxBoxSizer *bottomsizer = new wxBoxSizer( wxHORIZONTAL );
+
+ bottomsizer->Add( button1, 0, wxALL, 10 );
+ bottomsizer->Add( button2, 0, wxALL, 10 );
+
+ mainsizer->Add( bottomsizer, 0, wxCENTER );
+
+ // tell frame to make use of sizer (or constraints, if any)
+ m_panel->SetAutoLayout( true );
+ m_panel->SetSizer( mainsizer );
+
+#ifndef __WXWINCE__
+ // don't allow frame to get smaller than what the sizers tell ye
+ mainsizer->SetSizeHints( this );
+#endif
+
+ Show(true);
+}
+
+void CheckListBoxFrame::CreateCheckListbox(long flags)
+{
+ // check list box
+ static const wxChar *aszChoices[] =
+ {
+ _T("Zeroth"),
+ _T("First"), _T("Second"), _T("Third"),
+ _T("Fourth"), _T("Fifth"), _T("Sixth"),
+ _T("Seventh"), _T("Eighth"), _T("Nineth")
+ };
+
+ wxString *astrChoices = new wxString[WXSIZEOF(aszChoices)];
+ unsigned int ui;
+ for ( ui = 0; ui < WXSIZEOF(aszChoices); ui++ )
+ astrChoices[ui] = aszChoices[ui];
+
+ m_pListBox = new wxCheckListBox
+ (
+ m_panel, // parent
+ Control_Listbox, // control id
+ wxPoint(10, 10), // listbox poistion
+ wxSize(400, 100), // listbox size
+ WXSIZEOF(aszChoices), // number of strings
+ astrChoices, // array of strings
+ flags
+ );
+
+ //m_pListBox->SetBackgroundColour(*wxGREEN);
+
+ delete [] astrChoices;
+
+ // set grey background for every second entry
+ for ( ui = 0; ui < WXSIZEOF(aszChoices); ui += 2 ) {
+ AdjustColour(ui);
+ }
+
+ m_pListBox->Check(2);
+ m_pListBox->Select(3);
+}
+
+void CheckListBoxFrame::OnQuit(wxCommandEvent& WXUNUSED(event))