- // Make a menubar
- wxMenu *menuFile = new wxMenu;
- menuFile->Append(LIST_ABOUT, "&About");
- menuFile->AppendSeparator();
-#if 0 // what is this for? (VZ)
- menuFile->Append(BUSY_ON, "&Busy cursor on");
- menuFile->Append(BUSY_OFF, "&Busy cursor off");
- menuFile->AppendSeparator();
-#endif
- 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_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");
- frame->SetMenuBar(menubar);
-
- frame->m_listCtrl = new MyListCtrl(frame, LIST_CTRL,
- wxPoint(0, 0), wxSize(400, 200),
- wxLC_LIST |
- wxSUNKEN_BORDER |
- wxLC_EDIT_LABELS |
- // wxLC_USER_TEXT requires app to supply all text on demand
- // wxLC_USER_TEXT |
- wxLC_SINGLE_SEL
- );
-
- frame->m_logWindow = new wxTextCtrl(frame, -1, "", wxPoint(0, 0), wxSize(400, 200), wxTE_MULTILINE|wxSUNKEN_BORDER);
-
- wxLayoutConstraints *c = new wxLayoutConstraints;
- c->top.SameAs (frame, wxTop);
- c->left.SameAs (frame, wxLeft);
- c->right.SameAs (frame, wxRight);
- c->height.PercentOf (frame, wxHeight, 66);
- frame->m_listCtrl->SetConstraints(c);
-
- c = new wxLayoutConstraints;
- c->top.Below (frame->m_listCtrl);
- c->left.SameAs (frame, wxLeft);
- c->right.SameAs (frame, wxRight);
- c->bottom.SameAs (frame, wxBottom);
- frame->m_logWindow->SetConstraints(c);
- frame->SetAutoLayout(TRUE);
-
- wxString buf;
- for ( int i=0; i < 30; i++)
- {
- wxChar buf[20];
- wxSprintf(buf, _T("Item %d"), i);
- frame->m_listCtrl->InsertItem(i, buf);
- }
-
- frame->CreateStatusBar(3);