]>
Commit | Line | Data |
---|---|---|
0b4d4194 | 1 | ///////////////////////////////////////////////////////////////////////////// |
b2f757f9 | 2 | // Name: notebook.cpp |
0b4d4194 JS |
3 | // Purpose: wxNotebook demo |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 26/10/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) | |
e3e717ec | 9 | // Licence: wxWindows licence |
0b4d4194 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // For compilers that support precompilation, includes "wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
d22699b5 | 16 | #pragma hdrstop |
0b4d4194 JS |
17 | #endif |
18 | ||
19 | #ifndef WX_PRECOMP | |
d22699b5 | 20 | #include "wx/wx.h" |
0b4d4194 JS |
21 | #endif |
22 | ||
ef299235 VZ |
23 | // If 1, use a dialog. Otherwise use a frame. |
24 | #define USE_TABBED_DIALOG 1 | |
25 | ||
b2f757f9 | 26 | #include "notebook.h" |
0b4d4194 | 27 | |
d22699b5 | 28 | #if USE_TABBED_DIALOG |
0b4d4194 | 29 | MyDialog* dialog = (MyDialog *) NULL; |
d22699b5 | 30 | #else // !USE_TABBED_DIALOG |
0b4d4194 | 31 | MyFrame* frame = (MyFrame *) NULL; |
d22699b5 | 32 | #endif // USE_TABBED_DIALOG |
0b4d4194 JS |
33 | |
34 | IMPLEMENT_APP(MyApp) | |
35 | ||
477350ce | 36 | bool MyApp::OnInit() |
0b4d4194 JS |
37 | { |
38 | // Create the main window | |
39 | #if USE_TABBED_DIALOG | |
40 | dialog = new MyDialog((wxFrame *) NULL, -1, (char *) "Notebook", wxPoint(-1, -1), wxSize(365, 390), wxDIALOG_MODAL|wxDEFAULT_DIALOG_STYLE); | |
0b4d4194 | 41 | dialog->ShowModal(); |
ef299235 | 42 | delete dialog; |
0b4d4194 JS |
43 | |
44 | // Quit immediately the dialog has been dismissed | |
45 | return FALSE; | |
46 | #else | |
8e97b17b | 47 | frame = new MyFrame((wxFrame*) NULL, -1, "Notebook", wxPoint(-1, -1), wxSize(465, 390) ); |
0b4d4194 | 48 | |
f60d0f94 | 49 | // Problem with generic wxNotebook implementation whereby it doesn't size properly unless |
ee4c6942 | 50 | // you set the size again |
37d403aa | 51 | #if defined(__WIN16__) || defined(__WXMOTIF__) |
ee4c6942 JS |
52 | int width, height; |
53 | frame->GetSize(& width, & height); | |
54 | frame->SetSize(-1, -1, width, height); | |
5dcf05ae JS |
55 | #endif |
56 | ||
0b4d4194 JS |
57 | return TRUE; |
58 | #endif | |
59 | } | |
60 | ||
563c2606 | 61 | void MyApp::InitTabView(wxNotebook* notebook, wxTopLevelWindow* window) |
0b4d4194 | 62 | { |
0b4d4194 | 63 | m_okButton = new wxButton(window, wxID_OK, "Close", wxPoint(-1, -1), wxSize(80, 25)); |
477350ce VZ |
64 | m_cancelButton = new wxButton(window, ID_DELETE_PAGE, "&Delete page", wxPoint(-1, -1), wxSize(80, 25)); |
65 | m_addPageButton = new wxButton(window, ID_ADD_PAGE, "&Add page", wxPoint(-1, -1), wxSize(80, 25)); | |
66 | m_insertPageButton = new wxButton(window, ID_INSERT_PAGE, "&Insert page", wxPoint(-1, -1), wxSize(80, 25)); | |
67 | m_nextPageButton = new wxButton(window, ID_NEXT_PAGE, "&Next page", wxPoint(-1, -1), wxSize(80, 25)); | |
0b4d4194 JS |
68 | m_okButton->SetDefault(); |
69 | ||
477350ce | 70 | wxLayoutConstraints *c; |
477350ce VZ |
71 | c = new wxLayoutConstraints; |
72 | c->right.SameAs(window, wxRight, 4); | |
73 | c->bottom.SameAs(window, wxBottom, 4); | |
74 | c->height.AsIs(); | |
75 | c->width.AsIs(); | |
76 | m_addPageButton->SetConstraints(c); | |
77 | ||
78 | c = new wxLayoutConstraints; | |
33d0e17c RR |
79 | c->right.SameAs(m_addPageButton, wxLeft, 4); |
80 | c->bottom.SameAs(window, wxBottom, 4); | |
81 | c->height.AsIs(); | |
82 | c->width.AsIs(); | |
477350ce | 83 | m_insertPageButton->SetConstraints(c); |
33d0e17c RR |
84 | |
85 | c = new wxLayoutConstraints; | |
477350ce | 86 | c->right.SameAs(m_insertPageButton, wxLeft, 4); |
0b4d4194 JS |
87 | c->bottom.SameAs(window, wxBottom, 4); |
88 | c->height.AsIs(); | |
89 | c->width.AsIs(); | |
477350ce | 90 | m_nextPageButton->SetConstraints(c); |
0b4d4194 JS |
91 | |
92 | c = new wxLayoutConstraints; | |
477350ce | 93 | c->right.SameAs(m_nextPageButton, wxLeft, 4); |
0b4d4194 JS |
94 | c->bottom.SameAs(window, wxBottom, 4); |
95 | c->height.AsIs(); | |
96 | c->width.AsIs(); | |
97 | m_cancelButton->SetConstraints(c); | |
98 | ||
99 | c = new wxLayoutConstraints; | |
100 | c->right.SameAs(m_cancelButton, wxLeft, 4); | |
101 | c->bottom.SameAs(window, wxBottom, 4); | |
102 | c->height.AsIs(); | |
103 | c->width.AsIs(); | |
104 | m_okButton->SetConstraints(c); | |
105 | ||
106 | // Add some panels | |
107 | wxPanel *panel1 = new wxPanel(notebook, -1); | |
02800301 | 108 | // panel1->SetBackgroundColour(wxColour("RED")); |
0b4d4194 JS |
109 | (void)new wxButton(panel1, -1, "Press me", wxPoint(10, 10)); |
110 | (void)new wxTextCtrl(panel1, -1, "1234", wxPoint(10, 40), wxSize(120, 150)); | |
e3e717ec | 111 | |
5dcf05ae | 112 | notebook->AddPage(panel1, "Cat", TRUE); |
0b4d4194 JS |
113 | |
114 | wxPanel *panel2 = new wxPanel(notebook, -1); | |
e3e717ec | 115 | panel2->SetAutoLayout(TRUE); |
02800301 | 116 | panel2->SetBackgroundColour(wxColour("BLUE")); |
0b4d4194 JS |
117 | |
118 | wxString animals[] = { "Fox", "Hare", "Rabbit", "Sabre-toothed tiger", "T Rex" }; | |
bb69661b | 119 | wxRadioBox *radiobox = new wxRadioBox(panel2, -1, "Choose one", |
d93c719a VZ |
120 | wxDefaultPosition, wxDefaultSize, 5, animals, |
121 | 2, wxRA_SPECIFY_ROWS); | |
e3e717ec VZ |
122 | |
123 | c = new wxLayoutConstraints; | |
bea56879 VZ |
124 | c->left.SameAs(panel2, wxLeft, 10); |
125 | c->top.SameAs(panel2, wxTop, 5); | |
e3e717ec | 126 | c->height.PercentOf(panel2, wxHeight, 50); |
bea56879 | 127 | c->right.SameAs(panel2, wxRight, 10); |
bb69661b | 128 | radiobox->SetConstraints(c); |
0b4d4194 | 129 | |
bb69661b VZ |
130 | wxRadioBox *radiobox2 = new wxRadioBox(panel2, -1, "Choose one", |
131 | wxDefaultPosition, wxDefaultSize, | |
132 | 5, animals, | |
133 | 2, wxRA_SPECIFY_ROWS); | |
6d693bb4 | 134 | |
e3e717ec | 135 | c = new wxLayoutConstraints; |
bb69661b VZ |
136 | c->left.SameAs(radiobox, wxLeft); |
137 | c->height.AsIs(); | |
bea56879 | 138 | c->top.Below(radiobox, 5); |
bb69661b VZ |
139 | c->right.SameAs(radiobox, wxRight); |
140 | radiobox2->SetConstraints(c); | |
0b4d4194 JS |
141 | |
142 | notebook->AddPage(panel2, "Dog"); | |
e3e717ec | 143 | |
02800301 JS |
144 | wxPanel *panel3 = new wxPanel(notebook, -1); |
145 | panel3->SetBackgroundColour(wxColour("WHITE")); | |
146 | notebook->AddPage(panel3, "Goat"); | |
147 | ||
148 | wxPanel *panel4 = new wxPanel(notebook, -1); | |
149 | panel4->SetBackgroundColour(wxColour("YELLOW")); | |
150 | notebook->AddPage(panel4, "Sheep"); | |
e3e717ec | 151 | |
29f538ce RR |
152 | wxPanel *panel5 = new wxPanel(notebook, -1); |
153 | panel5->SetBackgroundColour(wxColour("MAGENTA")); | |
154 | (void)new wxStaticText(panel5, -1, "This page has been inserted, not added", wxPoint(10, 10) ); | |
155 | notebook->InsertPage(0, panel5, "Sheep"); | |
e3e717ec VZ |
156 | |
157 | notebook->SetSelection(2); | |
0b4d4194 JS |
158 | } |
159 | ||
d22699b5 VZ |
160 | #if USE_TABBED_DIALOG |
161 | ||
0b4d4194 JS |
162 | BEGIN_EVENT_TABLE(MyDialog, wxDialog) |
163 | EVT_BUTTON(wxID_OK, MyDialog::OnOK) | |
164 | EVT_BUTTON(wxID_CANCEL, MyDialog::OnOK) | |
165 | END_EVENT_TABLE() | |
166 | ||
167 | MyDialog::MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title, | |
168 | const wxPoint& pos, const wxSize& size, const long windowStyle): | |
169 | wxDialog(parent, id, title, pos, size, windowStyle) | |
170 | { | |
171 | Init(); | |
172 | } | |
173 | ||
174 | void MyDialog::OnOK(wxCommandEvent& WXUNUSED(event) ) | |
175 | { | |
176 | EndModal(wxID_OK); | |
177 | } | |
178 | ||
179 | void MyDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event) ) | |
180 | { | |
181 | EndModal(wxID_CANCEL); | |
182 | } | |
183 | ||
477350ce | 184 | void MyDialog::Init() |
0b4d4194 | 185 | { |
0b4d4194 JS |
186 | m_notebook = new wxNotebook(this, ID_NOTEBOOK); |
187 | ||
188 | wxLayoutConstraints* c = new wxLayoutConstraints; | |
189 | c->left.SameAs(this, wxLeft, 4); | |
190 | c->right.SameAs(this, wxRight, 4); | |
191 | c->top.SameAs(this, wxTop, 4); | |
192 | c->bottom.SameAs(this, wxBottom, 40); | |
193 | ||
194 | m_notebook->SetConstraints(c); | |
195 | ||
196 | wxGetApp().InitTabView(m_notebook, this); | |
197 | ||
198 | SetAutoLayout(TRUE); | |
199 | Layout(); | |
200 | ||
bb69661b | 201 | Centre(wxBOTH); |
0b4d4194 JS |
202 | } |
203 | ||
d22699b5 VZ |
204 | #else // USE_TABBED_DIALOG |
205 | ||
0b4d4194 JS |
206 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
207 | EVT_BUTTON(wxID_OK, MyFrame::OnOK) | |
29f538ce | 208 | EVT_BUTTON(ID_DELETE_PAGE, MyFrame::OnDeletePage) |
326f9654 | 209 | EVT_BUTTON(ID_ADD_PAGE, MyFrame::OnAddPage) |
477350ce | 210 | EVT_BUTTON(ID_INSERT_PAGE, MyFrame::OnInsertPage) |
33d0e17c | 211 | EVT_BUTTON(ID_NEXT_PAGE, MyFrame::OnNextPage) |
96d37807 | 212 | EVT_IDLE(MyFrame::OnIdle) |
0b4d4194 JS |
213 | END_EVENT_TABLE() |
214 | ||
215 | MyFrame::MyFrame(wxFrame* parent, const wxWindowID id, const wxString& title, | |
216 | const wxPoint& pos, const wxSize& size, const long windowStyle): | |
217 | wxFrame(parent, id, title, pos, size, windowStyle) | |
218 | { | |
219 | m_panel = (wxPanel*) NULL; | |
220 | m_notebook = (wxNotebook*) NULL; | |
221 | Init(); | |
222 | } | |
223 | ||
326f9654 RR |
224 | void MyFrame::OnAddPage(wxCommandEvent& WXUNUSED(event)) |
225 | { | |
477350ce VZ |
226 | static size_t s_pageAdded = 0; |
227 | ||
228 | wxPanel *panel = new wxPanel( m_notebook, -1 ); | |
229 | (void)new wxButton( panel, -1, "Button", wxPoint( 10,10 ), wxSize(-1,-1) ); | |
230 | ||
231 | m_notebook->AddPage( panel, wxString::Format("Added %u", ++s_pageAdded) ); | |
232 | } | |
233 | ||
234 | void MyFrame::OnInsertPage(wxCommandEvent& WXUNUSED(event)) | |
235 | { | |
236 | static size_t s_pageIns = 0; | |
237 | ||
238 | wxPanel *panel = new wxPanel( m_notebook, -1 ); | |
239 | (void)new wxButton( panel, -1, "Button", wxPoint( 10,10 ), wxSize(-1,-1) ); | |
240 | ||
241 | m_notebook->InsertPage(0, panel, wxString::Format("Inserted %u", ++s_pageIns) ); | |
242 | m_notebook->SetSelection(0); | |
326f9654 RR |
243 | } |
244 | ||
f6bcfd97 BP |
245 | wxWindow *test = NULL; |
246 | ||
29f538ce RR |
247 | void MyFrame::OnDeletePage(wxCommandEvent& WXUNUSED(event)) |
248 | { | |
f6bcfd97 BP |
249 | if (m_notebook->GetPageCount() > 0) |
250 | m_notebook->DeletePage( m_notebook->GetPageCount()-1 ); | |
251 | ||
252 | /* | |
253 | if (test) | |
254 | { | |
255 | m_notebook->AddPage( test, "Readded" ); | |
256 | test = NULL; | |
257 | } | |
258 | else | |
259 | { | |
260 | test = m_notebook->GetPage( m_notebook->GetPageCount()-1 ); | |
261 | m_notebook->RemovePage( m_notebook->GetPageCount()-1 ); | |
262 | } | |
263 | */ | |
29f538ce RR |
264 | } |
265 | ||
33d0e17c RR |
266 | void MyFrame::OnNextPage(wxCommandEvent& WXUNUSED(event)) |
267 | { | |
268 | m_notebook->AdvanceSelection(); | |
269 | } | |
270 | ||
0b4d4194 JS |
271 | void MyFrame::OnOK(wxCommandEvent& WXUNUSED(event) ) |
272 | { | |
96d37807 | 273 | Destroy(); |
0b4d4194 JS |
274 | } |
275 | ||
276 | void MyFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event) ) | |
277 | { | |
96d37807 | 278 | Destroy(); |
0b4d4194 JS |
279 | } |
280 | ||
477350ce | 281 | void MyFrame::Init() |
0b4d4194 | 282 | { |
0b4d4194 JS |
283 | m_panel = new wxPanel(this, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL|wxCLIP_CHILDREN); |
284 | ||
d22699b5 VZ |
285 | wxLayoutConstraints* c = new wxLayoutConstraints; |
286 | c->left.SameAs(this, wxLeft); | |
287 | c->right.SameAs(this, wxRight); | |
288 | c->top.SameAs(this, wxTop); | |
289 | c->bottom.SameAs(this, wxBottom); | |
290 | m_panel->SetConstraints(c); | |
291 | ||
0b4d4194 JS |
292 | m_notebook = new wxNotebook(m_panel, ID_NOTEBOOK); |
293 | ||
d22699b5 | 294 | c = new wxLayoutConstraints; |
0b4d4194 JS |
295 | c->left.SameAs(m_panel, wxLeft, 4); |
296 | c->right.SameAs(m_panel, wxRight, 4); | |
297 | c->top.SameAs(m_panel, wxTop, 4); | |
298 | c->bottom.SameAs(m_panel, wxBottom, 40); | |
299 | ||
300 | m_notebook->SetConstraints(c); | |
301 | ||
302 | wxGetApp().InitTabView(m_notebook, m_panel); | |
303 | ||
304 | m_panel->SetAutoLayout(TRUE); | |
d22699b5 | 305 | SetAutoLayout(TRUE); |
0b4d4194 | 306 | |
d22699b5 | 307 | Centre(wxBOTH); |
0b4d4194 JS |
308 | |
309 | Show(TRUE); | |
310 | } | |
311 | ||
96d37807 VZ |
312 | void MyFrame::OnIdle(wxIdleEvent& WXUNUSED(event)) |
313 | { | |
314 | static int s_nPages = -1; | |
315 | static int s_nSel = -1; | |
316 | ||
317 | int nPages = m_notebook->GetPageCount(); | |
318 | int nSel = m_notebook->GetSelection(); | |
319 | if ( nPages != s_nPages || nSel != s_nSel ) | |
320 | { | |
321 | s_nPages = nPages; | |
322 | s_nSel = nSel; | |
323 | ||
324 | wxString title; | |
325 | title.Printf("Notebook (%d pages, selection: %d)", nPages, nSel); | |
326 | ||
327 | SetTitle(title); | |
328 | } | |
329 | } | |
d22699b5 VZ |
330 | |
331 | #endif // USE_TABBED_DIALOG |