| 135 | } |
| 136 | |
| 137 | void MainFrame::CreateControls() |
| 138 | { |
| 139 | m_notebook = new wxNotebook(this, wxID_ANY); |
| 140 | |
| 141 | CreateSystemTab(); |
| 142 | CreateThemeTab(); |
| 143 | CreateAppearanceTab(); |
| 144 | CreateGlassColorsTab(); |
| 145 | CreateSymbolsTab(); |
| 146 | |
| 147 | m_notebook->SetSelection(2); |
| 148 | |
| 149 | GetSizer()->Add(m_notebook, 1, wxEXPAND | wxALL, 5); |
| 150 | CreateStatusBar(); |
| 151 | } |
| 152 | |
| 153 | void MainFrame::CreateBottomControls(wxSizer* parentSizer) |
| 154 | { |