]> git.saurik.com Git - wxWidgets.git/blame - samples/notebook/test.cpp
ignore these
[wxWidgets.git] / samples / notebook / test.cpp
CommitLineData
0b4d4194
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: test.cpp
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__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
20#include "wx/wx.h"
21#endif
22
0b4d4194
JS
23#include "test.h"
24
25// If 1, use a dialog. Otherwise use a frame.
26#define USE_TABBED_DIALOG 0
27
28MyDialog* dialog = (MyDialog *) NULL;
29MyFrame* frame = (MyFrame *) NULL;
30
31IMPLEMENT_APP(MyApp)
32
33bool MyApp::OnInit(void)
34{
35 // Create the main window
36#if USE_TABBED_DIALOG
37 dialog = new MyDialog((wxFrame *) NULL, -1, (char *) "Notebook", wxPoint(-1, -1), wxSize(365, 390), wxDIALOG_MODAL|wxDEFAULT_DIALOG_STYLE);
38
39 dialog->ShowModal();
40
41 // Quit immediately the dialog has been dismissed
42 return FALSE;
43#else
e3e717ec 44 frame = new MyFrame((wxFrame*) NULL, -1, "Notebook", wxPoint(-1, -1), wxSize(365, 390) );
0b4d4194 45
f60d0f94 46 // Problem with generic wxNotebook implementation whereby it doesn't size properly unless
ee4c6942
JS
47 // you set the size again
48#if defined(__WIN16__)
49 int width, height;
50 frame->GetSize(& width, & height);
51 frame->SetSize(-1, -1, width, height);
5dcf05ae
JS
52#endif
53
0b4d4194
JS
54 return TRUE;
55#endif
56}
57
58void MyApp::InitTabView(wxNotebook* notebook, wxWindow* window)
59{
0b4d4194 60 m_okButton = new wxButton(window, wxID_OK, "Close", wxPoint(-1, -1), wxSize(80, 25));
29f538ce 61 m_cancelButton = new wxButton(window, ID_DELETE_PAGE, "Delete page", wxPoint(-1, -1), wxSize(80, 25));
326f9654 62 m_addPageButton = new wxButton(window, ID_ADD_PAGE, "Add page", wxPoint(-1, -1), wxSize(80, 25));
0b4d4194
JS
63 m_okButton->SetDefault();
64
65 wxLayoutConstraints* c = new wxLayoutConstraints;
66 c->right.SameAs(window, wxRight, 4);
67 c->bottom.SameAs(window, wxBottom, 4);
68 c->height.AsIs();
69 c->width.AsIs();
326f9654 70 m_addPageButton->SetConstraints(c);
0b4d4194
JS
71
72 c = new wxLayoutConstraints;
326f9654 73 c->right.SameAs(m_addPageButton, wxLeft, 4);
0b4d4194
JS
74 c->bottom.SameAs(window, wxBottom, 4);
75 c->height.AsIs();
76 c->width.AsIs();
77 m_cancelButton->SetConstraints(c);
78
79 c = new wxLayoutConstraints;
80 c->right.SameAs(m_cancelButton, wxLeft, 4);
81 c->bottom.SameAs(window, wxBottom, 4);
82 c->height.AsIs();
83 c->width.AsIs();
84 m_okButton->SetConstraints(c);
85
86 // Add some panels
87 wxPanel *panel1 = new wxPanel(notebook, -1);
02800301 88 // panel1->SetBackgroundColour(wxColour("RED"));
0b4d4194
JS
89 (void)new wxButton(panel1, -1, "Press me", wxPoint(10, 10));
90 (void)new wxTextCtrl(panel1, -1, "1234", wxPoint(10, 40), wxSize(120, 150));
e3e717ec 91
5dcf05ae 92 notebook->AddPage(panel1, "Cat", TRUE);
0b4d4194
JS
93
94 wxPanel *panel2 = new wxPanel(notebook, -1);
e3e717ec 95 panel2->SetAutoLayout(TRUE);
02800301 96 panel2->SetBackgroundColour(wxColour("BLUE"));
0b4d4194
JS
97
98 wxString animals[] = { "Fox", "Hare", "Rabbit", "Sabre-toothed tiger", "T Rex" };
bb69661b
VZ
99 wxRadioBox *radiobox = new wxRadioBox(panel2, -1, "Choose one",
100 wxDefaultPosition, wxDefaultSize, 5, animals);
e3e717ec
VZ
101
102 c = new wxLayoutConstraints;
103 c->left.SameAs(panel2, wxLeft, 4);
104 c->top.SameAs(panel2, wxTop, 4);
105 c->height.PercentOf(panel2, wxHeight, 50);
106 c->right.SameAs(panel2, wxRight, 4);
bb69661b 107 radiobox->SetConstraints(c);
0b4d4194 108
bb69661b
VZ
109 wxRadioBox *radiobox2 = new wxRadioBox(panel2, -1, "Choose one",
110 wxDefaultPosition, wxDefaultSize,
111 5, animals,
112 2, wxRA_SPECIFY_ROWS);
e3e717ec 113 c = new wxLayoutConstraints;
bb69661b
VZ
114 c->left.SameAs(radiobox, wxLeft);
115 c->height.AsIs();
116 c->top.Below(radiobox, 4);
117 c->right.SameAs(radiobox, wxRight);
118 radiobox2->SetConstraints(c);
0b4d4194
JS
119
120 notebook->AddPage(panel2, "Dog");
e3e717ec 121
02800301
JS
122 wxPanel *panel3 = new wxPanel(notebook, -1);
123 panel3->SetBackgroundColour(wxColour("WHITE"));
124 notebook->AddPage(panel3, "Goat");
125
126 wxPanel *panel4 = new wxPanel(notebook, -1);
127 panel4->SetBackgroundColour(wxColour("YELLOW"));
128 notebook->AddPage(panel4, "Sheep");
e3e717ec 129
29f538ce
RR
130 wxPanel *panel5 = new wxPanel(notebook, -1);
131 panel5->SetBackgroundColour(wxColour("MAGENTA"));
132 (void)new wxStaticText(panel5, -1, "This page has been inserted, not added", wxPoint(10, 10) );
133 notebook->InsertPage(0, panel5, "Sheep");
e3e717ec
VZ
134
135 notebook->SetSelection(2);
0b4d4194
JS
136}
137
138BEGIN_EVENT_TABLE(MyDialog, wxDialog)
139 EVT_BUTTON(wxID_OK, MyDialog::OnOK)
140 EVT_BUTTON(wxID_CANCEL, MyDialog::OnOK)
141END_EVENT_TABLE()
142
143MyDialog::MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
144 const wxPoint& pos, const wxSize& size, const long windowStyle):
145 wxDialog(parent, id, title, pos, size, windowStyle)
146{
147 Init();
148}
149
150void MyDialog::OnOK(wxCommandEvent& WXUNUSED(event) )
151{
152 EndModal(wxID_OK);
153}
154
155void MyDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event) )
156{
157 EndModal(wxID_CANCEL);
158}
159
160void MyDialog::Init(void)
161{
0b4d4194
JS
162 m_notebook = new wxNotebook(this, ID_NOTEBOOK);
163
164 wxLayoutConstraints* c = new wxLayoutConstraints;
165 c->left.SameAs(this, wxLeft, 4);
166 c->right.SameAs(this, wxRight, 4);
167 c->top.SameAs(this, wxTop, 4);
168 c->bottom.SameAs(this, wxBottom, 40);
169
170 m_notebook->SetConstraints(c);
171
172 wxGetApp().InitTabView(m_notebook, this);
173
174 SetAutoLayout(TRUE);
175 Layout();
176
bb69661b 177 Centre(wxBOTH);
0b4d4194
JS
178}
179
180BEGIN_EVENT_TABLE(MyFrame, wxFrame)
181 EVT_BUTTON(wxID_OK, MyFrame::OnOK)
29f538ce 182 EVT_BUTTON(ID_DELETE_PAGE, MyFrame::OnDeletePage)
326f9654 183 EVT_BUTTON(ID_ADD_PAGE, MyFrame::OnAddPage)
0b4d4194 184 EVT_SIZE(MyFrame::OnSize)
96d37807 185 EVT_IDLE(MyFrame::OnIdle)
0b4d4194
JS
186END_EVENT_TABLE()
187
188MyFrame::MyFrame(wxFrame* parent, const wxWindowID id, const wxString& title,
189 const wxPoint& pos, const wxSize& size, const long windowStyle):
190 wxFrame(parent, id, title, pos, size, windowStyle)
191{
192 m_panel = (wxPanel*) NULL;
193 m_notebook = (wxNotebook*) NULL;
194 Init();
195}
196
326f9654
RR
197void MyFrame::OnAddPage(wxCommandEvent& WXUNUSED(event))
198{
199 wxPanel *panel = new wxPanel( m_notebook, -1 );
200 (void)new wxButton( panel, -1, "Button", wxPoint( 10,10 ), wxSize(-1,-1) );
201 m_notebook->AddPage( panel, "Added" );
012a03e0 202// m_notebook->SetSelection( m_notebook->GetPageCount()-1 );
326f9654
RR
203}
204
29f538ce
RR
205void MyFrame::OnDeletePage(wxCommandEvent& WXUNUSED(event))
206{
96d37807 207 m_notebook->DeletePage( m_notebook->GetPageCount()-1 );
29f538ce
RR
208}
209
0b4d4194
JS
210void MyFrame::OnOK(wxCommandEvent& WXUNUSED(event) )
211{
96d37807 212 Destroy();
0b4d4194
JS
213}
214
215void MyFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event) )
216{
96d37807 217 Destroy();
0b4d4194
JS
218}
219
220void MyFrame::Init(void)
221{
0b4d4194
JS
222 m_panel = new wxPanel(this, -1, wxDefaultPosition, wxDefaultSize, wxTAB_TRAVERSAL|wxCLIP_CHILDREN);
223
224 // Note, omit the wxTAB_STYLE_COLOUR_INTERIOR, so we will guarantee a match
225 // with the panel background, and save a bit of time.
226 m_notebook = new wxNotebook(m_panel, ID_NOTEBOOK);
227
228 wxLayoutConstraints* c = new wxLayoutConstraints;
229 c->left.SameAs(m_panel, wxLeft, 4);
230 c->right.SameAs(m_panel, wxRight, 4);
231 c->top.SameAs(m_panel, wxTop, 4);
232 c->bottom.SameAs(m_panel, wxBottom, 40);
233
234 m_notebook->SetConstraints(c);
235
236 wxGetApp().InitTabView(m_notebook, m_panel);
237
238 m_panel->SetAutoLayout(TRUE);
239
240 m_panel->Layout();
241
242 this->Centre(wxBOTH);
243
244 Show(TRUE);
245}
246
247void MyFrame::OnSize(wxSizeEvent& event)
248{
249 wxFrame::OnSize(event);
250 m_panel->Layout();
251}
252
96d37807
VZ
253void MyFrame::OnIdle(wxIdleEvent& WXUNUSED(event))
254{
255 static int s_nPages = -1;
256 static int s_nSel = -1;
257
258 int nPages = m_notebook->GetPageCount();
259 int nSel = m_notebook->GetSelection();
260 if ( nPages != s_nPages || nSel != s_nSel )
261 {
262 s_nPages = nPages;
263 s_nSel = nSel;
264
265 wxString title;
266 title.Printf("Notebook (%d pages, selection: %d)", nPages, nSel);
267
268 SetTitle(title);
269 }
270}