+ menuFile->Append(LIST_QUIT, "E&xit\tAlt-X");
+
+ wxMenu *menuView = new wxMenu;
+ menuView->Append(LIST_LIST_VIEW, "&List view\tF1");
+ menuView->Append(LIST_REPORT_VIEW, "&Report view\tF2");
+ menuView->Append(LIST_ICON_VIEW, "&Icon view\tF3");
+ menuView->Append(LIST_ICON_TEXT_VIEW, "Icon view with &text\tF4");
+ menuView->Append(LIST_SMALL_ICON_VIEW, "&Small icon view\tF5");
+ menuView->Append(LIST_SMALL_ICON_TEXT_VIEW, "Small icon &view with text\tF6");
+
+ wxMenu *menuList = new wxMenu;
+ menuList->Append(LIST_TOGGLE_FIRST, "&Toggle first item\tCtrl-T");
+ menuList->Append(LIST_DESELECT_ALL, "&Deselect All\tCtrl-D");
+ menuList->Append(LIST_SELECT_ALL, "S&elect All\tCtrl-A");
+ menuList->AppendSeparator();
+ menuList->Append(LIST_SORT, "&Sort\tCtrl-S");
+ menuList->AppendSeparator();
+ menuList->Append(LIST_DELETE_ALL, "Delete &all items");
+ menuList->AppendSeparator();
+ menuList->Append(LIST_TOGGLE_MULTI_SEL, "&Multiple selection\tCtrl-M",
+ "Toggle multiple selection", TRUE);
+
+ wxMenu *menuCol = new wxMenu;
+ menuCol->Append(LIST_SET_FG_COL, "&Foreground colour...");
+ menuCol->Append(LIST_SET_BG_COL, "&Background colour...");
+
+ wxMenuBar *menubar = new wxMenuBar;
+ menubar->Append(menuFile, "&File");
+ menubar->Append(menuView, "&View");
+ menubar->Append(menuList, "&List");
+ menubar->Append(menuCol, "&Colour");
+ SetMenuBar(menubar);
+
+ m_listCtrl = new MyListCtrl(this, LIST_CTRL,
+ wxDefaultPosition, wxDefaultSize,
+ wxLC_LIST |
+ wxSUNKEN_BORDER |
+ wxLC_EDIT_LABELS |
+ // wxLC_USER_TEXT requires app to supply all
+ // text on demand
+ //wxLC_USER_TEXT |
+ wxLC_SINGLE_SEL
+ );
+
+ m_logWindow = new wxTextCtrl(this, -1, wxEmptyString,
+ wxDefaultPosition, wxDefaultSize,
+ wxTE_MULTILINE | wxSUNKEN_BORDER);
+
+ m_logOld = wxLog::SetActiveTarget(new wxLogTextCtrl(m_logWindow));
+
+ wxLayoutConstraints *c = new wxLayoutConstraints;
+ c->top.SameAs (this, wxTop);
+ c->left.SameAs (this, wxLeft);
+ c->right.SameAs (this, wxRight);
+ c->height.PercentOf (this, wxHeight, 66);
+ m_listCtrl->SetConstraints(c);
+
+ c = new wxLayoutConstraints;
+ c->top.Below (m_listCtrl);
+ c->left.SameAs (this, wxLeft);
+ c->right.SameAs (this, wxRight);
+ c->bottom.SameAs (this, wxBottom);
+ m_logWindow->SetConstraints(c);
+ SetAutoLayout(TRUE);
+
+ for ( int i = 0; i < 30; i++ )
+ {
+ long idx = m_listCtrl->InsertItem(i, wxString::Format(_T("Item %d"), i));
+ m_listCtrl->SetItemData(idx, i*i);
+ }