]>
Commit | Line | Data |
---|---|---|
50acee04 JS |
1 | /////////////////////////////////////////////////////////////////////////////// |
2 | // Name: auidemo.cpp | |
3 | // Purpose: wxaui: wx advanced user interface - sample/test program | |
4 | // Author: Benjamin I. Williams | |
5 | // Modified by: | |
6 | // Created: 2005-10-03 | |
bfeed34c | 7 | // RCS-ID: $Id$ |
50acee04 JS |
8 | // Copyright: (C) Copyright 2005, Kirix Corporation, All Rights Reserved. |
9 | // Licence: wxWindows Library Licence, Version 3.1 | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // For compilers that support precompilation, includes "wx/wx.h". | |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
bfeed34c | 16 | #pragma hdrstop |
50acee04 JS |
17 | #endif |
18 | ||
87d658e5 | 19 | #include "wx/app.h" |
50acee04 JS |
20 | #include "wx/grid.h" |
21 | #include "wx/treectrl.h" | |
22 | #include "wx/spinctrl.h" | |
23 | #include "wx/artprov.h" | |
24 | #include "wx/clipbrd.h" | |
25 | #include "wx/image.h" | |
26 | #include "wx/colordlg.h" | |
27 | #include "wx/wxhtml.h" | |
3a745867 | 28 | #include "wx/imaglist.h" |
6c73e20d | 29 | #include "wx/dataobj.h" |
87d658e5 PC |
30 | #include "wx/dcclient.h" |
31 | #include "wx/bmpbuttn.h" | |
32 | #include "wx/menu.h" | |
33 | #include "wx/toolbar.h" | |
34 | #include "wx/statusbr.h" | |
35 | #include "wx/msgdlg.h" | |
36 | #include "wx/textdlg.h" | |
50acee04 JS |
37 | |
38 | #include "wx/aui/aui.h" | |
39 | #include "../sample.xpm" | |
40 | ||
41 | // -- application -- | |
42 | ||
43 | class MyApp : public wxApp | |
44 | { | |
45 | public: | |
46 | bool OnInit(); | |
47 | }; | |
48 | ||
004f4002 VZ |
49 | DECLARE_APP(MyApp) |
50 | IMPLEMENT_APP(MyApp) | |
50acee04 JS |
51 | |
52 | ||
53 | class wxSizeReportCtrl; | |
54 | ||
55 | // -- frame -- | |
56 | ||
57 | class MyFrame : public wxFrame | |
58 | { | |
59 | enum | |
60 | { | |
61 | ID_CreateTree = wxID_HIGHEST+1, | |
62 | ID_CreateGrid, | |
63 | ID_CreateText, | |
64 | ID_CreateHTML, | |
65 | ID_CreateSizeReport, | |
66 | ID_GridContent, | |
67 | ID_TextContent, | |
68 | ID_TreeContent, | |
69 | ID_HTMLContent, | |
df00bdf7 | 70 | ID_NotebookContent, |
50acee04 JS |
71 | ID_SizeReportContent, |
72 | ID_CreatePerspective, | |
73 | ID_CopyPerspectiveCode, | |
74 | ID_AllowFloating, | |
75 | ID_AllowActivePane, | |
76 | ID_TransparentHint, | |
cf6fec73 BW |
77 | ID_VenetianBlindsHint, |
78 | ID_RectangleHint, | |
79 | ID_NoHint, | |
80 | ID_HintFade, | |
81 | ID_NoVenetianFade, | |
50acee04 JS |
82 | ID_TransparentDrag, |
83 | ID_NoGradient, | |
84 | ID_VerticalGradient, | |
85 | ID_HorizontalGradient, | |
86 | ID_Settings, | |
87 | ID_FirstPerspective = ID_CreatePerspective+1000 | |
88 | }; | |
89 | ||
90 | public: | |
91 | MyFrame(wxWindow* parent, | |
92 | wxWindowID id, | |
93 | const wxString& title, | |
94 | const wxPoint& pos = wxDefaultPosition, | |
95 | const wxSize& size = wxDefaultSize, | |
96 | long style = wxDEFAULT_FRAME_STYLE | wxSUNKEN_BORDER); | |
97 | ||
98 | ~MyFrame(); | |
99 | ||
100 | wxDockArt* GetDockArt(); | |
101 | void DoUpdate(); | |
102 | ||
103 | private: | |
58754643 | 104 | wxTextCtrl* CreateTextCtrl(const wxString& text = wxEmptyString); |
50acee04 JS |
105 | wxGrid* CreateGrid(); |
106 | wxTreeCtrl* CreateTreeCtrl(); | |
107 | wxSizeReportCtrl* CreateSizeReportCtrl(int width = 80, int height = 80); | |
108 | wxPoint GetStartPosition(); | |
dbd2f790 | 109 | wxHtmlWindow* CreateHTMLCtrl(wxWindow* parent = NULL); |
df00bdf7 | 110 | wxAuiMultiNotebook* CreateNotebook(); |
50acee04 JS |
111 | |
112 | wxString GetIntroText(); | |
113 | ||
114 | private: | |
115 | ||
58754643 BW |
116 | void OnEraseBackground(wxEraseEvent& evt); |
117 | void OnSize(wxSizeEvent& evt); | |
118 | ||
119 | void OnCreateTree(wxCommandEvent& evt); | |
120 | void OnCreateGrid(wxCommandEvent& evt); | |
121 | void OnCreateHTML(wxCommandEvent& evt); | |
df00bdf7 | 122 | void OnCreateNotebook(wxCommandEvent& evt); |
58754643 BW |
123 | void OnCreateText(wxCommandEvent& evt); |
124 | void OnCreateSizeReport(wxCommandEvent& evt); | |
125 | void OnChangeContentPane(wxCommandEvent& evt); | |
126 | void OnCreatePerspective(wxCommandEvent& evt); | |
127 | void OnCopyPerspectiveCode(wxCommandEvent& evt); | |
128 | void OnRestorePerspective(wxCommandEvent& evt); | |
129 | void OnSettings(wxCommandEvent& evt); | |
130 | void OnExit(wxCommandEvent& evt); | |
131 | void OnAbout(wxCommandEvent& evt); | |
132 | ||
133 | void OnGradient(wxCommandEvent& evt); | |
134 | void OnManagerFlag(wxCommandEvent& evt); | |
135 | void OnUpdateUI(wxUpdateUIEvent& evt); | |
136 | ||
137 | void OnPaneClose(wxFrameManagerEvent& evt); | |
138 | ||
50acee04 JS |
139 | private: |
140 | ||
141 | wxFrameManager m_mgr; | |
142 | wxArrayString m_perspectives; | |
143 | wxMenu* m_perspectives_menu; | |
bfeed34c | 144 | |
6dcf9888 | 145 | DECLARE_EVENT_TABLE() |
50acee04 JS |
146 | }; |
147 | ||
148 | ||
50acee04 JS |
149 | // -- wxSizeReportCtrl -- |
150 | // (a utility control that always reports it's client size) | |
151 | ||
152 | class wxSizeReportCtrl : public wxControl | |
153 | { | |
154 | public: | |
155 | ||
bfeed34c | 156 | wxSizeReportCtrl(wxWindow* parent, wxWindowID id = wxID_ANY, |
50acee04 JS |
157 | const wxPoint& pos = wxDefaultPosition, |
158 | const wxSize& size = wxDefaultSize, | |
159 | wxFrameManager* mgr = NULL) | |
160 | : wxControl(parent, id, pos, size, wxNO_BORDER) | |
161 | { | |
162 | m_mgr = mgr; | |
163 | } | |
164 | ||
165 | private: | |
166 | ||
bfeed34c | 167 | void OnPaint(wxPaintEvent& WXUNUSED(evt)) |
50acee04 JS |
168 | { |
169 | wxPaintDC dc(this); | |
170 | wxSize size = GetClientSize(); | |
171 | wxString s; | |
172 | int h, w, height; | |
173 | ||
174 | s.Printf(wxT("Size: %d x %d"), size.x, size.y); | |
175 | ||
176 | dc.SetFont(*wxNORMAL_FONT); | |
177 | dc.GetTextExtent(s, &w, &height); | |
178 | height += 3; | |
179 | dc.SetBrush(*wxWHITE_BRUSH); | |
180 | dc.SetPen(*wxWHITE_PEN); | |
181 | dc.DrawRectangle(0, 0, size.x, size.y); | |
182 | dc.SetPen(*wxLIGHT_GREY_PEN); | |
183 | dc.DrawLine(0, 0, size.x, size.y); | |
184 | dc.DrawLine(0, size.y, size.x, 0); | |
185 | dc.DrawText(s, (size.x-w)/2, ((size.y-(height*5))/2)); | |
bfeed34c | 186 | |
50acee04 JS |
187 | if (m_mgr) |
188 | { | |
189 | wxPaneInfo pi = m_mgr->GetPane(this); | |
bfeed34c | 190 | |
50acee04 JS |
191 | s.Printf(wxT("Layer: %d"), pi.dock_layer); |
192 | dc.GetTextExtent(s, &w, &h); | |
193 | dc.DrawText(s, (size.x-w)/2, ((size.y-(height*5))/2)+(height*1)); | |
bfeed34c | 194 | |
50acee04 JS |
195 | s.Printf(wxT("Dock: %d Row: %d"), pi.dock_direction, pi.dock_row); |
196 | dc.GetTextExtent(s, &w, &h); | |
197 | dc.DrawText(s, (size.x-w)/2, ((size.y-(height*5))/2)+(height*2)); | |
bfeed34c | 198 | |
50acee04 JS |
199 | s.Printf(wxT("Position: %d"), pi.dock_pos); |
200 | dc.GetTextExtent(s, &w, &h); | |
201 | dc.DrawText(s, (size.x-w)/2, ((size.y-(height*5))/2)+(height*3)); | |
bfeed34c | 202 | |
50acee04 JS |
203 | s.Printf(wxT("Proportion: %d"), pi.dock_proportion); |
204 | dc.GetTextExtent(s, &w, &h); | |
205 | dc.DrawText(s, (size.x-w)/2, ((size.y-(height*5))/2)+(height*4)); | |
206 | } | |
207 | } | |
208 | ||
bfeed34c | 209 | void OnEraseBackground(wxEraseEvent& WXUNUSED(evt)) |
50acee04 JS |
210 | { |
211 | // intentionally empty | |
212 | } | |
213 | ||
bfeed34c | 214 | void OnSize(wxSizeEvent& WXUNUSED(evt)) |
50acee04 JS |
215 | { |
216 | Refresh(); | |
217 | } | |
218 | private: | |
219 | ||
220 | wxFrameManager* m_mgr; | |
bfeed34c | 221 | |
6dcf9888 | 222 | DECLARE_EVENT_TABLE() |
50acee04 JS |
223 | }; |
224 | ||
225 | BEGIN_EVENT_TABLE(wxSizeReportCtrl, wxControl) | |
226 | EVT_PAINT(wxSizeReportCtrl::OnPaint) | |
227 | EVT_SIZE(wxSizeReportCtrl::OnSize) | |
228 | EVT_ERASE_BACKGROUND(wxSizeReportCtrl::OnEraseBackground) | |
229 | END_EVENT_TABLE() | |
230 | ||
231 | ||
50acee04 JS |
232 | class SettingsPanel : public wxPanel |
233 | { | |
234 | enum | |
235 | { | |
236 | ID_PaneBorderSize = wxID_HIGHEST+1, | |
237 | ID_SashSize, | |
238 | ID_CaptionSize, | |
239 | ID_BackgroundColor, | |
240 | ID_SashColor, | |
241 | ID_InactiveCaptionColor, | |
242 | ID_InactiveCaptionGradientColor, | |
243 | ID_InactiveCaptionTextColor, | |
244 | ID_ActiveCaptionColor, | |
245 | ID_ActiveCaptionGradientColor, | |
246 | ID_ActiveCaptionTextColor, | |
247 | ID_BorderColor, | |
248 | ID_GripperColor | |
249 | }; | |
250 | ||
251 | public: | |
252 | ||
253 | SettingsPanel(wxWindow* parent, MyFrame* frame) | |
bfeed34c | 254 | : wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize) |
50acee04 JS |
255 | { |
256 | //wxBoxSizer* vert = new wxBoxSizer(wxVERTICAL); | |
257 | ||
258 | //vert->Add(1, 1, 1, wxEXPAND); | |
259 | ||
260 | wxBoxSizer* s1 = new wxBoxSizer(wxHORIZONTAL); | |
261 | m_border_size = new wxSpinCtrl(this, ID_PaneBorderSize, wxEmptyString, wxDefaultPosition, wxSize(50,20)); | |
262 | s1->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 263 | s1->Add(new wxStaticText(this, wxID_ANY, wxT("Pane Border Size:"))); |
50acee04 JS |
264 | s1->Add(m_border_size); |
265 | s1->Add(1, 1, 1, wxEXPAND); | |
266 | s1->SetItemMinSize((size_t)1, 180, 20); | |
267 | //vert->Add(s1, 0, wxEXPAND | wxLEFT | wxBOTTOM, 5); | |
268 | ||
269 | wxBoxSizer* s2 = new wxBoxSizer(wxHORIZONTAL); | |
270 | m_sash_size = new wxSpinCtrl(this, ID_SashSize, wxEmptyString, wxDefaultPosition, wxSize(50,20)); | |
271 | s2->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 272 | s2->Add(new wxStaticText(this, wxID_ANY, wxT("Sash Size:"))); |
50acee04 JS |
273 | s2->Add(m_sash_size); |
274 | s2->Add(1, 1, 1, wxEXPAND); | |
275 | s2->SetItemMinSize((size_t)1, 180, 20); | |
276 | //vert->Add(s2, 0, wxEXPAND | wxLEFT | wxBOTTOM, 5); | |
277 | ||
278 | wxBoxSizer* s3 = new wxBoxSizer(wxHORIZONTAL); | |
279 | m_caption_size = new wxSpinCtrl(this, ID_CaptionSize, wxEmptyString, wxDefaultPosition, wxSize(50,20)); | |
280 | s3->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 281 | s3->Add(new wxStaticText(this, wxID_ANY, wxT("Caption Size:"))); |
50acee04 JS |
282 | s3->Add(m_caption_size); |
283 | s3->Add(1, 1, 1, wxEXPAND); | |
284 | s3->SetItemMinSize((size_t)1, 180, 20); | |
285 | //vert->Add(s3, 0, wxEXPAND | wxLEFT | wxBOTTOM, 5); | |
286 | ||
287 | //vert->Add(1, 1, 1, wxEXPAND); | |
288 | ||
289 | ||
290 | wxBitmap b = CreateColorBitmap(*wxBLACK); | |
291 | ||
292 | wxBoxSizer* s4 = new wxBoxSizer(wxHORIZONTAL); | |
293 | m_background_color = new wxBitmapButton(this, ID_BackgroundColor, b, wxDefaultPosition, wxSize(50,25)); | |
294 | s4->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 295 | s4->Add(new wxStaticText(this, wxID_ANY, wxT("Background Color:"))); |
50acee04 JS |
296 | s4->Add(m_background_color); |
297 | s4->Add(1, 1, 1, wxEXPAND); | |
298 | s4->SetItemMinSize((size_t)1, 180, 20); | |
299 | ||
300 | wxBoxSizer* s5 = new wxBoxSizer(wxHORIZONTAL); | |
301 | m_sash_color = new wxBitmapButton(this, ID_SashColor, b, wxDefaultPosition, wxSize(50,25)); | |
302 | s5->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 303 | s5->Add(new wxStaticText(this, wxID_ANY, wxT("Sash Color:"))); |
50acee04 JS |
304 | s5->Add(m_sash_color); |
305 | s5->Add(1, 1, 1, wxEXPAND); | |
306 | s5->SetItemMinSize((size_t)1, 180, 20); | |
307 | ||
308 | wxBoxSizer* s6 = new wxBoxSizer(wxHORIZONTAL); | |
309 | m_inactive_caption_color = new wxBitmapButton(this, ID_InactiveCaptionColor, b, wxDefaultPosition, wxSize(50,25)); | |
310 | s6->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 311 | s6->Add(new wxStaticText(this, wxID_ANY, wxT("Normal Caption:"))); |
50acee04 JS |
312 | s6->Add(m_inactive_caption_color); |
313 | s6->Add(1, 1, 1, wxEXPAND); | |
314 | s6->SetItemMinSize((size_t)1, 180, 20); | |
315 | ||
316 | wxBoxSizer* s7 = new wxBoxSizer(wxHORIZONTAL); | |
317 | m_inactive_caption_gradient_color = new wxBitmapButton(this, ID_InactiveCaptionGradientColor, b, wxDefaultPosition, wxSize(50,25)); | |
318 | s7->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 319 | s7->Add(new wxStaticText(this, wxID_ANY, wxT("Normal Caption Gradient:"))); |
50acee04 JS |
320 | s7->Add(m_inactive_caption_gradient_color); |
321 | s7->Add(1, 1, 1, wxEXPAND); | |
322 | s7->SetItemMinSize((size_t)1, 180, 20); | |
323 | ||
324 | wxBoxSizer* s8 = new wxBoxSizer(wxHORIZONTAL); | |
325 | m_inactive_caption_text_color = new wxBitmapButton(this, ID_InactiveCaptionTextColor, b, wxDefaultPosition, wxSize(50,25)); | |
326 | s8->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 327 | s8->Add(new wxStaticText(this, wxID_ANY, wxT("Normal Caption Text:"))); |
50acee04 JS |
328 | s8->Add(m_inactive_caption_text_color); |
329 | s8->Add(1, 1, 1, wxEXPAND); | |
330 | s8->SetItemMinSize((size_t)1, 180, 20); | |
331 | ||
332 | wxBoxSizer* s9 = new wxBoxSizer(wxHORIZONTAL); | |
333 | m_active_caption_color = new wxBitmapButton(this, ID_ActiveCaptionColor, b, wxDefaultPosition, wxSize(50,25)); | |
334 | s9->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 335 | s9->Add(new wxStaticText(this, wxID_ANY, wxT("Active Caption:"))); |
50acee04 JS |
336 | s9->Add(m_active_caption_color); |
337 | s9->Add(1, 1, 1, wxEXPAND); | |
338 | s9->SetItemMinSize((size_t)1, 180, 20); | |
339 | ||
340 | wxBoxSizer* s10 = new wxBoxSizer(wxHORIZONTAL); | |
341 | m_active_caption_gradient_color = new wxBitmapButton(this, ID_ActiveCaptionGradientColor, b, wxDefaultPosition, wxSize(50,25)); | |
342 | s10->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 343 | s10->Add(new wxStaticText(this, wxID_ANY, wxT("Active Caption Gradient:"))); |
50acee04 JS |
344 | s10->Add(m_active_caption_gradient_color); |
345 | s10->Add(1, 1, 1, wxEXPAND); | |
346 | s10->SetItemMinSize((size_t)1, 180, 20); | |
347 | ||
348 | wxBoxSizer* s11 = new wxBoxSizer(wxHORIZONTAL); | |
349 | m_active_caption_text_color = new wxBitmapButton(this, ID_ActiveCaptionTextColor, b, wxDefaultPosition, wxSize(50,25)); | |
350 | s11->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 351 | s11->Add(new wxStaticText(this, wxID_ANY, wxT("Active Caption Text:"))); |
50acee04 JS |
352 | s11->Add(m_active_caption_text_color); |
353 | s11->Add(1, 1, 1, wxEXPAND); | |
354 | s11->SetItemMinSize((size_t)1, 180, 20); | |
355 | ||
356 | wxBoxSizer* s12 = new wxBoxSizer(wxHORIZONTAL); | |
357 | m_border_color = new wxBitmapButton(this, ID_BorderColor, b, wxDefaultPosition, wxSize(50,25)); | |
358 | s12->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 359 | s12->Add(new wxStaticText(this, wxID_ANY, wxT("Border Color:"))); |
50acee04 JS |
360 | s12->Add(m_border_color); |
361 | s12->Add(1, 1, 1, wxEXPAND); | |
362 | s12->SetItemMinSize((size_t)1, 180, 20); | |
363 | ||
364 | wxBoxSizer* s13 = new wxBoxSizer(wxHORIZONTAL); | |
365 | m_gripper_color = new wxBitmapButton(this, ID_GripperColor, b, wxDefaultPosition, wxSize(50,25)); | |
366 | s13->Add(1, 1, 1, wxEXPAND); | |
bfeed34c | 367 | s13->Add(new wxStaticText(this, wxID_ANY, wxT("Gripper Color:"))); |
50acee04 JS |
368 | s13->Add(m_gripper_color); |
369 | s13->Add(1, 1, 1, wxEXPAND); | |
370 | s13->SetItemMinSize((size_t)1, 180, 20); | |
bfeed34c | 371 | |
50acee04 JS |
372 | wxGridSizer* grid_sizer = new wxGridSizer(2); |
373 | grid_sizer->SetHGap(5); | |
374 | grid_sizer->Add(s1); grid_sizer->Add(s4); | |
375 | grid_sizer->Add(s2); grid_sizer->Add(s5); | |
376 | grid_sizer->Add(s3); grid_sizer->Add(s13); | |
377 | grid_sizer->Add(1,1); grid_sizer->Add(s12); | |
378 | grid_sizer->Add(s6); grid_sizer->Add(s9); | |
379 | grid_sizer->Add(s7); grid_sizer->Add(s10); | |
380 | grid_sizer->Add(s8); grid_sizer->Add(s11); | |
bfeed34c | 381 | |
50acee04 JS |
382 | wxBoxSizer* cont_sizer = new wxBoxSizer(wxVERTICAL); |
383 | cont_sizer->Add(grid_sizer, 1, wxEXPAND | wxALL, 5); | |
384 | SetSizer(cont_sizer); | |
385 | GetSizer()->SetSizeHints(this); | |
386 | ||
387 | m_frame = frame; | |
388 | m_border_size->SetValue(frame->GetDockArt()->GetMetric(wxAUI_ART_PANE_BORDER_SIZE)); | |
389 | m_sash_size->SetValue(frame->GetDockArt()->GetMetric(wxAUI_ART_SASH_SIZE)); | |
390 | m_caption_size->SetValue(frame->GetDockArt()->GetMetric(wxAUI_ART_CAPTION_SIZE)); | |
bfeed34c | 391 | |
50acee04 JS |
392 | UpdateColors(); |
393 | } | |
394 | ||
395 | private: | |
396 | ||
397 | wxBitmap CreateColorBitmap(const wxColour& c) | |
398 | { | |
399 | wxImage image; | |
400 | image.Create(25,14); | |
401 | for (int x = 0; x < 25; ++x) | |
402 | for (int y = 0; y < 14; ++y) | |
403 | { | |
404 | wxColour pixcol = c; | |
405 | if (x == 0 || x == 24 || y == 0 || y == 13) | |
406 | pixcol = *wxBLACK; | |
407 | image.SetRGB(x, y, pixcol.Red(), pixcol.Green(), pixcol.Blue()); | |
408 | } | |
409 | return wxBitmap(image); | |
410 | } | |
bfeed34c | 411 | |
50acee04 JS |
412 | void UpdateColors() |
413 | { | |
414 | wxColour bk = m_frame->GetDockArt()->GetColor(wxAUI_ART_BACKGROUND_COLOUR); | |
415 | m_background_color->SetBitmapLabel(CreateColorBitmap(bk)); | |
bfeed34c | 416 | |
50acee04 JS |
417 | wxColour cap = m_frame->GetDockArt()->GetColor(wxAUI_ART_INACTIVE_CAPTION_COLOUR); |
418 | m_inactive_caption_color->SetBitmapLabel(CreateColorBitmap(cap)); | |
bfeed34c | 419 | |
50acee04 JS |
420 | wxColour capgrad = m_frame->GetDockArt()->GetColor(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR); |
421 | m_inactive_caption_gradient_color->SetBitmapLabel(CreateColorBitmap(capgrad)); | |
bfeed34c | 422 | |
50acee04 JS |
423 | wxColour captxt = m_frame->GetDockArt()->GetColor(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR); |
424 | m_inactive_caption_text_color->SetBitmapLabel(CreateColorBitmap(captxt)); | |
bfeed34c | 425 | |
50acee04 JS |
426 | wxColour acap = m_frame->GetDockArt()->GetColor(wxAUI_ART_ACTIVE_CAPTION_COLOUR); |
427 | m_active_caption_color->SetBitmapLabel(CreateColorBitmap(acap)); | |
bfeed34c | 428 | |
50acee04 JS |
429 | wxColour acapgrad = m_frame->GetDockArt()->GetColor(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR); |
430 | m_active_caption_gradient_color->SetBitmapLabel(CreateColorBitmap(acapgrad)); | |
bfeed34c | 431 | |
50acee04 JS |
432 | wxColour acaptxt = m_frame->GetDockArt()->GetColor(wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR); |
433 | m_active_caption_text_color->SetBitmapLabel(CreateColorBitmap(acaptxt)); | |
434 | ||
435 | wxColour sash = m_frame->GetDockArt()->GetColor(wxAUI_ART_SASH_COLOUR); | |
436 | m_sash_color->SetBitmapLabel(CreateColorBitmap(sash)); | |
bfeed34c | 437 | |
50acee04 JS |
438 | wxColour border = m_frame->GetDockArt()->GetColor(wxAUI_ART_BORDER_COLOUR); |
439 | m_border_color->SetBitmapLabel(CreateColorBitmap(border)); | |
bfeed34c | 440 | |
50acee04 JS |
441 | wxColour gripper = m_frame->GetDockArt()->GetColor(wxAUI_ART_GRIPPER_COLOUR); |
442 | m_gripper_color->SetBitmapLabel(CreateColorBitmap(gripper)); | |
443 | } | |
bfeed34c | 444 | |
50acee04 JS |
445 | void OnPaneBorderSize(wxSpinEvent& event) |
446 | { | |
447 | m_frame->GetDockArt()->SetMetric(wxAUI_ART_PANE_BORDER_SIZE, | |
448 | event.GetPosition()); | |
449 | m_frame->DoUpdate(); | |
450 | } | |
451 | ||
452 | void OnSashSize(wxSpinEvent& event) | |
453 | { | |
454 | m_frame->GetDockArt()->SetMetric(wxAUI_ART_SASH_SIZE, | |
455 | event.GetPosition()); | |
456 | m_frame->DoUpdate(); | |
457 | } | |
458 | ||
459 | void OnCaptionSize(wxSpinEvent& event) | |
460 | { | |
461 | m_frame->GetDockArt()->SetMetric(wxAUI_ART_CAPTION_SIZE, | |
462 | event.GetPosition()); | |
463 | m_frame->DoUpdate(); | |
464 | } | |
465 | ||
466 | void OnSetColor(wxCommandEvent& event) | |
467 | { | |
468 | wxColourDialog dlg(m_frame); | |
469 | dlg.SetTitle(_("Color Picker")); | |
470 | if (dlg.ShowModal() != wxID_OK) | |
471 | return; | |
bfeed34c | 472 | |
50acee04 JS |
473 | int var = 0; |
474 | switch (event.GetId()) | |
475 | { | |
476 | case ID_BackgroundColor: var = wxAUI_ART_BACKGROUND_COLOUR; break; | |
477 | case ID_SashColor: var = wxAUI_ART_SASH_COLOUR; break; | |
478 | case ID_InactiveCaptionColor: var = wxAUI_ART_INACTIVE_CAPTION_COLOUR; break; | |
479 | case ID_InactiveCaptionGradientColor: var = wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR; break; | |
480 | case ID_InactiveCaptionTextColor: var = wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR; break; | |
481 | case ID_ActiveCaptionColor: var = wxAUI_ART_ACTIVE_CAPTION_COLOUR; break; | |
482 | case ID_ActiveCaptionGradientColor: var = wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR; break; | |
483 | case ID_ActiveCaptionTextColor: var = wxAUI_ART_ACTIVE_CAPTION_TEXT_COLOUR; break; | |
484 | case ID_BorderColor: var = wxAUI_ART_BORDER_COLOUR; break; | |
485 | case ID_GripperColor: var = wxAUI_ART_GRIPPER_COLOUR; break; | |
486 | default: return; | |
487 | } | |
bfeed34c | 488 | |
50acee04 JS |
489 | m_frame->GetDockArt()->SetColor(var, dlg.GetColourData().GetColour()); |
490 | m_frame->DoUpdate(); | |
491 | UpdateColors(); | |
492 | } | |
bfeed34c | 493 | |
50acee04 JS |
494 | private: |
495 | ||
496 | MyFrame* m_frame; | |
497 | wxSpinCtrl* m_border_size; | |
498 | wxSpinCtrl* m_sash_size; | |
499 | wxSpinCtrl* m_caption_size; | |
500 | wxBitmapButton* m_inactive_caption_text_color; | |
501 | wxBitmapButton* m_inactive_caption_gradient_color; | |
502 | wxBitmapButton* m_inactive_caption_color; | |
503 | wxBitmapButton* m_active_caption_text_color; | |
504 | wxBitmapButton* m_active_caption_gradient_color; | |
505 | wxBitmapButton* m_active_caption_color; | |
506 | wxBitmapButton* m_sash_color; | |
507 | wxBitmapButton* m_background_color; | |
508 | wxBitmapButton* m_border_color; | |
509 | wxBitmapButton* m_gripper_color; | |
bfeed34c | 510 | |
50acee04 JS |
511 | DECLARE_EVENT_TABLE() |
512 | }; | |
513 | ||
514 | BEGIN_EVENT_TABLE(SettingsPanel, wxPanel) | |
515 | EVT_SPINCTRL(ID_PaneBorderSize, SettingsPanel::OnPaneBorderSize) | |
516 | EVT_SPINCTRL(ID_SashSize, SettingsPanel::OnSashSize) | |
517 | EVT_SPINCTRL(ID_CaptionSize, SettingsPanel::OnCaptionSize) | |
518 | EVT_BUTTON(ID_BackgroundColor, SettingsPanel::OnSetColor) | |
519 | EVT_BUTTON(ID_SashColor, SettingsPanel::OnSetColor) | |
520 | EVT_BUTTON(ID_InactiveCaptionColor, SettingsPanel::OnSetColor) | |
521 | EVT_BUTTON(ID_InactiveCaptionGradientColor, SettingsPanel::OnSetColor) | |
522 | EVT_BUTTON(ID_InactiveCaptionTextColor, SettingsPanel::OnSetColor) | |
523 | EVT_BUTTON(ID_ActiveCaptionColor, SettingsPanel::OnSetColor) | |
524 | EVT_BUTTON(ID_ActiveCaptionGradientColor, SettingsPanel::OnSetColor) | |
525 | EVT_BUTTON(ID_ActiveCaptionTextColor, SettingsPanel::OnSetColor) | |
526 | EVT_BUTTON(ID_BorderColor, SettingsPanel::OnSetColor) | |
bfeed34c | 527 | EVT_BUTTON(ID_GripperColor, SettingsPanel::OnSetColor) |
50acee04 JS |
528 | END_EVENT_TABLE() |
529 | ||
530 | ||
50acee04 JS |
531 | bool MyApp::OnInit() |
532 | { | |
533 | wxFrame* frame = new MyFrame(NULL, | |
534 | wxID_ANY, | |
70476471 | 535 | wxT("wxAUI Sample Application"), |
50acee04 JS |
536 | wxDefaultPosition, |
537 | wxSize(800, 600)); | |
538 | SetTopWindow(frame); | |
539 | frame->Show(); | |
540 | ||
541 | return true; | |
542 | } | |
543 | ||
50acee04 JS |
544 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
545 | EVT_ERASE_BACKGROUND(MyFrame::OnEraseBackground) | |
546 | EVT_SIZE(MyFrame::OnSize) | |
547 | EVT_MENU(MyFrame::ID_CreateTree, MyFrame::OnCreateTree) | |
548 | EVT_MENU(MyFrame::ID_CreateGrid, MyFrame::OnCreateGrid) | |
549 | EVT_MENU(MyFrame::ID_CreateText, MyFrame::OnCreateText) | |
550 | EVT_MENU(MyFrame::ID_CreateHTML, MyFrame::OnCreateHTML) | |
551 | EVT_MENU(MyFrame::ID_CreateSizeReport, MyFrame::OnCreateSizeReport) | |
552 | EVT_MENU(MyFrame::ID_CreatePerspective, MyFrame::OnCreatePerspective) | |
553 | EVT_MENU(MyFrame::ID_CopyPerspectiveCode, MyFrame::OnCopyPerspectiveCode) | |
554 | EVT_MENU(ID_AllowFloating, MyFrame::OnManagerFlag) | |
555 | EVT_MENU(ID_TransparentHint, MyFrame::OnManagerFlag) | |
cf6fec73 BW |
556 | EVT_MENU(ID_VenetianBlindsHint, MyFrame::OnManagerFlag) |
557 | EVT_MENU(ID_RectangleHint, MyFrame::OnManagerFlag) | |
558 | EVT_MENU(ID_NoHint, MyFrame::OnManagerFlag) | |
559 | EVT_MENU(ID_HintFade, MyFrame::OnManagerFlag) | |
560 | EVT_MENU(ID_NoVenetianFade, MyFrame::OnManagerFlag) | |
50acee04 JS |
561 | EVT_MENU(ID_TransparentDrag, MyFrame::OnManagerFlag) |
562 | EVT_MENU(ID_AllowActivePane, MyFrame::OnManagerFlag) | |
563 | EVT_MENU(ID_NoGradient, MyFrame::OnGradient) | |
564 | EVT_MENU(ID_VerticalGradient, MyFrame::OnGradient) | |
565 | EVT_MENU(ID_HorizontalGradient, MyFrame::OnGradient) | |
566 | EVT_MENU(ID_Settings, MyFrame::OnSettings) | |
567 | EVT_MENU(ID_GridContent, MyFrame::OnChangeContentPane) | |
568 | EVT_MENU(ID_TreeContent, MyFrame::OnChangeContentPane) | |
569 | EVT_MENU(ID_TextContent, MyFrame::OnChangeContentPane) | |
570 | EVT_MENU(ID_SizeReportContent, MyFrame::OnChangeContentPane) | |
571 | EVT_MENU(ID_HTMLContent, MyFrame::OnChangeContentPane) | |
df00bdf7 | 572 | EVT_MENU(ID_NotebookContent, MyFrame::OnChangeContentPane) |
50acee04 JS |
573 | EVT_MENU(wxID_EXIT, MyFrame::OnExit) |
574 | EVT_MENU(wxID_ABOUT, MyFrame::OnAbout) | |
575 | EVT_UPDATE_UI(ID_AllowFloating, MyFrame::OnUpdateUI) | |
576 | EVT_UPDATE_UI(ID_TransparentHint, MyFrame::OnUpdateUI) | |
cf6fec73 BW |
577 | EVT_UPDATE_UI(ID_VenetianBlindsHint, MyFrame::OnUpdateUI) |
578 | EVT_UPDATE_UI(ID_RectangleHint, MyFrame::OnUpdateUI) | |
579 | EVT_UPDATE_UI(ID_NoHint, MyFrame::OnUpdateUI) | |
580 | EVT_UPDATE_UI(ID_HintFade, MyFrame::OnUpdateUI) | |
581 | EVT_UPDATE_UI(ID_NoVenetianFade, MyFrame::OnUpdateUI) | |
50acee04 JS |
582 | EVT_UPDATE_UI(ID_TransparentDrag, MyFrame::OnUpdateUI) |
583 | EVT_UPDATE_UI(ID_NoGradient, MyFrame::OnUpdateUI) | |
584 | EVT_UPDATE_UI(ID_VerticalGradient, MyFrame::OnUpdateUI) | |
585 | EVT_UPDATE_UI(ID_HorizontalGradient, MyFrame::OnUpdateUI) | |
586 | EVT_MENU_RANGE(MyFrame::ID_FirstPerspective, MyFrame::ID_FirstPerspective+1000, | |
587 | MyFrame::OnRestorePerspective) | |
58754643 | 588 | EVT_AUI_PANECLOSE(MyFrame::OnPaneClose) |
50acee04 JS |
589 | END_EVENT_TABLE() |
590 | ||
591 | ||
50acee04 JS |
592 | MyFrame::MyFrame(wxWindow* parent, |
593 | wxWindowID id, | |
594 | const wxString& title, | |
595 | const wxPoint& pos, | |
596 | const wxSize& size, | |
597 | long style) | |
598 | : wxFrame(parent, id, title, pos, size, style) | |
599 | { | |
600 | // tell wxFrameManager to manage this frame | |
461125ea | 601 | m_mgr.SetManagedWindow(this); |
bfeed34c | 602 | |
50acee04 JS |
603 | // set frame icon |
604 | SetIcon(wxIcon(sample_xpm)); | |
605 | ||
606 | // create menu | |
607 | wxMenuBar* mb = new wxMenuBar; | |
608 | ||
609 | wxMenu* file_menu = new wxMenu; | |
610 | file_menu->Append(wxID_EXIT, _("Exit")); | |
611 | ||
612 | wxMenu* view_menu = new wxMenu; | |
613 | view_menu->Append(ID_CreateText, _("Create Text Control")); | |
614 | view_menu->Append(ID_CreateHTML, _("Create HTML Control")); | |
615 | view_menu->Append(ID_CreateTree, _("Create Tree")); | |
616 | view_menu->Append(ID_CreateGrid, _("Create Grid")); | |
617 | view_menu->Append(ID_CreateSizeReport, _("Create Size Reporter")); | |
618 | view_menu->AppendSeparator(); | |
619 | view_menu->Append(ID_GridContent, _("Use a Grid for the Content Pane")); | |
620 | view_menu->Append(ID_TextContent, _("Use a Text Control for the Content Pane")); | |
621 | view_menu->Append(ID_HTMLContent, _("Use an HTML Control for the Content Pane")); | |
622 | view_menu->Append(ID_TreeContent, _("Use a Tree Control for the Content Pane")); | |
df00bdf7 | 623 | view_menu->Append(ID_NotebookContent, _("Use a AUI wxMultiNotebook control for the Content Pane")); |
bfeed34c WS |
624 | view_menu->Append(ID_SizeReportContent, _("Use a Size Reporter for the Content Pane")); |
625 | ||
50acee04 | 626 | wxMenu* options_menu = new wxMenu; |
cf6fec73 BW |
627 | options_menu->AppendRadioItem(ID_TransparentHint, _("Transparent Hint")); |
628 | options_menu->AppendRadioItem(ID_VenetianBlindsHint, _("Venetian Blinds Hint")); | |
629 | options_menu->AppendRadioItem(ID_RectangleHint, _("Rectangle Hint")); | |
630 | options_menu->AppendRadioItem(ID_NoHint, _("No Hint")); | |
631 | options_menu->AppendSeparator(); | |
632 | options_menu->AppendCheckItem(ID_HintFade, _("Hint Fade-in")); | |
50acee04 | 633 | options_menu->AppendCheckItem(ID_AllowFloating, _("Allow Floating")); |
cf6fec73 | 634 | options_menu->AppendCheckItem(ID_NoVenetianFade, _("Disable Venetian Blinds Hint Fade-in")); |
50acee04 JS |
635 | options_menu->AppendCheckItem(ID_TransparentDrag, _("Transparent Drag")); |
636 | options_menu->AppendCheckItem(ID_AllowActivePane, _("Allow Active Pane")); | |
637 | options_menu->AppendSeparator(); | |
638 | options_menu->AppendRadioItem(ID_NoGradient, _("No Caption Gradient")); | |
639 | options_menu->AppendRadioItem(ID_VerticalGradient, _("Vertical Caption Gradient")); | |
640 | options_menu->AppendRadioItem(ID_HorizontalGradient, _("Horizontal Caption Gradient")); | |
641 | options_menu->AppendSeparator(); | |
642 | options_menu->Append(ID_Settings, _("Settings Pane")); | |
bfeed34c | 643 | |
50acee04 JS |
644 | m_perspectives_menu = new wxMenu; |
645 | m_perspectives_menu->Append(ID_CreatePerspective, _("Create Perspective")); | |
646 | m_perspectives_menu->Append(ID_CopyPerspectiveCode, _("Copy Perspective Data To Clipboard")); | |
647 | m_perspectives_menu->AppendSeparator(); | |
648 | m_perspectives_menu->Append(ID_FirstPerspective+0, _("Default Startup")); | |
649 | m_perspectives_menu->Append(ID_FirstPerspective+1, _("All Panes")); | |
650 | ||
651 | wxMenu* help_menu = new wxMenu; | |
652 | help_menu->Append(wxID_ABOUT, _("About...")); | |
bfeed34c | 653 | |
50acee04 JS |
654 | mb->Append(file_menu, _("File")); |
655 | mb->Append(view_menu, _("View")); | |
656 | mb->Append(m_perspectives_menu, _("Perspectives")); | |
657 | mb->Append(options_menu, _("Options")); | |
658 | mb->Append(help_menu, _("Help")); | |
bfeed34c | 659 | |
50acee04 JS |
660 | SetMenuBar(mb); |
661 | ||
662 | CreateStatusBar(); | |
663 | GetStatusBar()->SetStatusText(_("Ready")); | |
664 | ||
665 | ||
666 | // min size for the frame itself isn't completely done. | |
667 | // see the end up wxFrameManager::Update() for the test | |
668 | // code. For now, just hard code a frame minimum size | |
669 | SetMinSize(wxSize(400,300)); | |
670 | ||
671 | // create some toolbars | |
bfeed34c | 672 | wxToolBar* tb1 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, |
50acee04 JS |
673 | wxTB_FLAT | wxTB_NODIVIDER); |
674 | tb1->SetToolBitmapSize(wxSize(48,48)); | |
675 | tb1->AddTool(101, wxT("Test"), wxArtProvider::GetBitmap(wxART_ERROR)); | |
676 | tb1->AddSeparator(); | |
677 | tb1->AddTool(102, wxT("Test"), wxArtProvider::GetBitmap(wxART_QUESTION)); | |
678 | tb1->AddTool(103, wxT("Test"), wxArtProvider::GetBitmap(wxART_INFORMATION)); | |
679 | tb1->AddTool(103, wxT("Test"), wxArtProvider::GetBitmap(wxART_WARNING)); | |
680 | tb1->AddTool(103, wxT("Test"), wxArtProvider::GetBitmap(wxART_MISSING_IMAGE)); | |
681 | tb1->Realize(); | |
682 | ||
683 | ||
bfeed34c | 684 | wxToolBar* tb2 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, |
50acee04 JS |
685 | wxTB_FLAT | wxTB_NODIVIDER); |
686 | tb2->SetToolBitmapSize(wxSize(16,16)); | |
687 | ||
688 | wxBitmap tb2_bmp1 = wxArtProvider::GetBitmap(wxART_QUESTION, wxART_OTHER, wxSize(16,16)); | |
689 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
690 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
691 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
692 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
693 | tb2->AddSeparator(); | |
694 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
695 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
696 | tb2->AddSeparator(); | |
697 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
698 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
699 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
700 | tb2->AddTool(101, wxT("Test"), tb2_bmp1); | |
701 | tb2->Realize(); | |
702 | ||
bfeed34c WS |
703 | |
704 | wxToolBar* tb3 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, | |
50acee04 JS |
705 | wxTB_FLAT | wxTB_NODIVIDER); |
706 | tb3->SetToolBitmapSize(wxSize(16,16)); | |
707 | wxBitmap tb3_bmp1 = wxArtProvider::GetBitmap(wxART_FOLDER, wxART_OTHER, wxSize(16,16)); | |
708 | tb3->AddTool(101, wxT("Test"), tb3_bmp1); | |
709 | tb3->AddTool(101, wxT("Test"), tb3_bmp1); | |
710 | tb3->AddTool(101, wxT("Test"), tb3_bmp1); | |
711 | tb3->AddTool(101, wxT("Test"), tb3_bmp1); | |
712 | tb3->AddSeparator(); | |
713 | tb3->AddTool(101, wxT("Test"), tb3_bmp1); | |
714 | tb3->AddTool(101, wxT("Test"), tb3_bmp1); | |
715 | tb3->Realize(); | |
716 | ||
717 | ||
bfeed34c | 718 | wxToolBar* tb4 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, |
50acee04 JS |
719 | wxTB_FLAT | wxTB_NODIVIDER | wxTB_HORZ_TEXT); |
720 | tb4->SetToolBitmapSize(wxSize(16,16)); | |
721 | wxBitmap tb4_bmp1 = wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_OTHER, wxSize(16,16)); | |
722 | tb4->AddTool(101, wxT("Item 1"), tb4_bmp1); | |
723 | tb4->AddTool(101, wxT("Item 2"), tb4_bmp1); | |
724 | tb4->AddTool(101, wxT("Item 3"), tb4_bmp1); | |
725 | tb4->AddTool(101, wxT("Item 4"), tb4_bmp1); | |
726 | tb4->AddSeparator(); | |
727 | tb4->AddTool(101, wxT("Item 5"), tb4_bmp1); | |
728 | tb4->AddTool(101, wxT("Item 6"), tb4_bmp1); | |
729 | tb4->AddTool(101, wxT("Item 7"), tb4_bmp1); | |
730 | tb4->AddTool(101, wxT("Item 8"), tb4_bmp1); | |
731 | tb4->Realize(); | |
732 | ||
733 | // create some toolbars | |
bfeed34c | 734 | wxToolBar* tb5 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, |
50acee04 JS |
735 | wxTB_FLAT | wxTB_NODIVIDER | wxTB_VERTICAL); |
736 | tb5->SetToolBitmapSize(wxSize(48,48)); | |
737 | tb5->AddTool(101, wxT("Test"), wxArtProvider::GetBitmap(wxART_ERROR)); | |
738 | tb5->AddSeparator(); | |
739 | tb5->AddTool(102, wxT("Test"), wxArtProvider::GetBitmap(wxART_QUESTION)); | |
740 | tb5->AddTool(103, wxT("Test"), wxArtProvider::GetBitmap(wxART_INFORMATION)); | |
741 | tb5->AddTool(103, wxT("Test"), wxArtProvider::GetBitmap(wxART_WARNING)); | |
742 | tb5->AddTool(103, wxT("Test"), wxArtProvider::GetBitmap(wxART_MISSING_IMAGE)); | |
743 | tb5->Realize(); | |
744 | ||
745 | ||
746 | // add a bunch of panes | |
747 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). | |
748 | Name(wxT("test1")).Caption(wxT("Pane Caption")). | |
749 | Top()); | |
750 | ||
751 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). | |
752 | Name(wxT("test2")).Caption(wxT("Client Size Reporter")). | |
753 | Bottom().Position(1)); | |
754 | ||
755 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). | |
756 | Name(wxT("test3")).Caption(wxT("Client Size Reporter")). | |
757 | Bottom()); | |
bfeed34c | 758 | |
50acee04 JS |
759 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). |
760 | Name(wxT("test4")).Caption(wxT("Pane Caption")). | |
761 | Left()); | |
bfeed34c | 762 | |
50acee04 | 763 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). |
31ec1d03 BW |
764 | Name(wxT("test5")).Caption(wxT("No Close Button")). |
765 | Right().CloseButton(false)); | |
bfeed34c | 766 | |
50acee04 JS |
767 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). |
768 | Name(wxT("test6")).Caption(wxT("Client Size Reporter")). | |
769 | Right().Row(1)); | |
770 | ||
771 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). | |
772 | Name(wxT("test7")).Caption(wxT("Client Size Reporter")). | |
773 | Left().Layer(1)); | |
bfeed34c | 774 | |
50acee04 JS |
775 | m_mgr.AddPane(CreateTreeCtrl(), wxPaneInfo(). |
776 | Name(wxT("test8")).Caption(wxT("Tree Pane")). | |
777 | Left().Layer(1).Position(1)); | |
778 | ||
779 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). | |
780 | Name(wxT("test9")).Caption(wxT("Min Size 200x100")). | |
781 | BestSize(wxSize(200,100)).MinSize(wxSize(200,100)). | |
782 | Bottom().Layer(1)); | |
783 | ||
58754643 BW |
784 | wxWindow* wnd10 = CreateTextCtrl(wxT("This pane will prompt the user before hiding.")); |
785 | m_mgr.AddPane(wnd10, wxPaneInfo(). | |
786 | Name(wxT("test10")).Caption(wxT("Text Pane with Hide Prompt")). | |
50acee04 | 787 | Bottom().Layer(1).Position(1)); |
bfeed34c | 788 | |
50acee04 JS |
789 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). |
790 | Name(wxT("test11")).Caption(wxT("Fixed Pane")). | |
791 | Bottom().Layer(1).Position(2).Fixed()); | |
792 | ||
bfeed34c | 793 | |
50acee04 JS |
794 | m_mgr.AddPane(new SettingsPanel(this,this), wxPaneInfo(). |
795 | Name(wxT("settings")).Caption(wxT("Dock Manager Settings")). | |
796 | Dockable(false).Float().Hide()); | |
797 | ||
798 | // create some center panes | |
799 | ||
800 | m_mgr.AddPane(CreateGrid(), wxPaneInfo().Name(wxT("grid_content")). | |
801 | CenterPane().Hide()); | |
802 | ||
803 | m_mgr.AddPane(CreateTreeCtrl(), wxPaneInfo().Name(wxT("tree_content")). | |
804 | CenterPane().Hide()); | |
bfeed34c | 805 | |
50acee04 JS |
806 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo().Name(wxT("sizereport_content")). |
807 | CenterPane().Hide()); | |
808 | ||
809 | m_mgr.AddPane(CreateTextCtrl(), wxPaneInfo().Name(wxT("text_content")). | |
810 | CenterPane().Hide()); | |
811 | ||
812 | m_mgr.AddPane(CreateHTMLCtrl(), wxPaneInfo().Name(wxT("html_content")). | |
813 | CenterPane()); | |
bfeed34c | 814 | |
df00bdf7 | 815 | m_mgr.AddPane(CreateNotebook(), wxPaneInfo().Name(wxT("notebook_content")). |
2e5c35af | 816 | CenterPane().PaneBorder(false)); |
df00bdf7 | 817 | |
50acee04 | 818 | // add the toolbars to the manager |
bfeed34c | 819 | |
50acee04 JS |
820 | m_mgr.AddPane(tb1, wxPaneInfo(). |
821 | Name(wxT("tb1")).Caption(wxT("Big Toolbar")). | |
822 | ToolbarPane().Top(). | |
823 | LeftDockable(false).RightDockable(false)); | |
824 | ||
825 | m_mgr.AddPane(tb2, wxPaneInfo(). | |
826 | Name(wxT("tb2")).Caption(wxT("Toolbar 2")). | |
827 | ToolbarPane().Top().Row(1). | |
828 | LeftDockable(false).RightDockable(false)); | |
bfeed34c | 829 | |
50acee04 JS |
830 | m_mgr.AddPane(tb3, wxPaneInfo(). |
831 | Name(wxT("tb3")).Caption(wxT("Toolbar 3")). | |
832 | ToolbarPane().Top().Row(1).Position(1). | |
833 | LeftDockable(false).RightDockable(false)); | |
bfeed34c | 834 | |
50acee04 JS |
835 | m_mgr.AddPane(tb4, wxPaneInfo(). |
836 | Name(wxT("tb4")).Caption(wxT("Sample Bookmark Toolbar")). | |
837 | ToolbarPane().Top().Row(2). | |
838 | LeftDockable(false).RightDockable(false)); | |
bfeed34c | 839 | |
50acee04 | 840 | m_mgr.AddPane(tb5, wxPaneInfo(). |
2c26bdee | 841 | Name(wxT("tb5")).Caption(wxT("Sample Vertical Toolbar")). |
50acee04 JS |
842 | ToolbarPane().Left(). |
843 | GripperTop(). | |
844 | TopDockable(false).BottomDockable(false)); | |
bfeed34c WS |
845 | |
846 | m_mgr.AddPane(new wxButton(this, wxID_ANY, _("Test Button")), | |
2c26bdee | 847 | wxPaneInfo().Name(wxT("tb6")). |
50acee04 JS |
848 | ToolbarPane().Top().Row(2).Position(1). |
849 | LeftDockable(false).RightDockable(false)); | |
850 | ||
851 | ||
50acee04 | 852 | // make some default perspectives |
bfeed34c | 853 | |
50acee04 | 854 | wxString perspective_all = m_mgr.SavePerspective(); |
bfeed34c | 855 | |
50acee04 JS |
856 | int i, count; |
857 | wxPaneInfoArray& all_panes = m_mgr.GetAllPanes(); | |
858 | for (i = 0, count = all_panes.GetCount(); i < count; ++i) | |
859 | if (!all_panes.Item(i).IsToolbar()) | |
860 | all_panes.Item(i).Hide(); | |
861 | m_mgr.GetPane(wxT("tb1")).Hide(); | |
60fa553c | 862 | m_mgr.GetPane(wxT("tb6")).Hide(); |
50acee04 JS |
863 | m_mgr.GetPane(wxT("test8")).Show().Left().Layer(0).Row(0).Position(0); |
864 | m_mgr.GetPane(wxT("test10")).Show().Bottom().Layer(0).Row(0).Position(0); | |
dbd2f790 | 865 | m_mgr.GetPane(wxT("notebook_content")).Show(); |
50acee04 | 866 | wxString perspective_default = m_mgr.SavePerspective(); |
bfeed34c | 867 | |
50acee04 JS |
868 | m_perspectives.Add(perspective_default); |
869 | m_perspectives.Add(perspective_all); | |
870 | ||
bfeed34c | 871 | // "commit" all changes made to wxFrameManager |
50acee04 JS |
872 | m_mgr.Update(); |
873 | } | |
874 | ||
875 | MyFrame::~MyFrame() | |
876 | { | |
877 | m_mgr.UnInit(); | |
878 | } | |
879 | ||
880 | wxDockArt* MyFrame::GetDockArt() | |
881 | { | |
882 | return m_mgr.GetArtProvider(); | |
883 | } | |
884 | ||
885 | void MyFrame::DoUpdate() | |
886 | { | |
887 | m_mgr.Update(); | |
888 | } | |
889 | ||
50acee04 JS |
890 | void MyFrame::OnEraseBackground(wxEraseEvent& event) |
891 | { | |
892 | event.Skip(); | |
893 | } | |
894 | ||
895 | void MyFrame::OnSize(wxSizeEvent& event) | |
896 | { | |
897 | event.Skip(); | |
898 | } | |
899 | ||
bfeed34c | 900 | void MyFrame::OnSettings(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
901 | { |
902 | // show the settings pane, and float it | |
903 | wxPaneInfo& floating_pane = m_mgr.GetPane(wxT("settings")).Float().Show(); | |
904 | ||
905 | if (floating_pane.floating_pos == wxDefaultPosition) | |
906 | floating_pane.FloatingPosition(GetStartPosition()); | |
907 | ||
908 | m_mgr.Update(); | |
909 | } | |
910 | ||
50acee04 JS |
911 | void MyFrame::OnGradient(wxCommandEvent& event) |
912 | { | |
913 | int gradient = 0; | |
914 | ||
915 | switch (event.GetId()) | |
916 | { | |
917 | case ID_NoGradient: gradient = wxAUI_GRADIENT_NONE; break; | |
918 | case ID_VerticalGradient: gradient = wxAUI_GRADIENT_VERTICAL; break; | |
919 | case ID_HorizontalGradient: gradient = wxAUI_GRADIENT_HORIZONTAL; break; | |
920 | } | |
921 | ||
922 | m_mgr.GetArtProvider()->SetMetric(wxAUI_ART_GRADIENT_TYPE, gradient); | |
923 | m_mgr.Update(); | |
924 | } | |
925 | ||
926 | void MyFrame::OnManagerFlag(wxCommandEvent& event) | |
927 | { | |
928 | unsigned int flag = 0; | |
bfeed34c | 929 | |
7a5b04a6 | 930 | #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXGTK__) |
50acee04 JS |
931 | if (event.GetId() == ID_TransparentDrag || |
932 | event.GetId() == ID_TransparentHint || | |
cf6fec73 | 933 | event.GetId() == ID_HintFade) |
50acee04 | 934 | { |
7a5b04a6 | 935 | wxMessageBox(wxT("This option is presently only available on wxGTK, wxMSW and wxMac")); |
50acee04 JS |
936 | return; |
937 | } | |
bfeed34c WS |
938 | #endif |
939 | ||
cf6fec73 BW |
940 | int id = event.GetId(); |
941 | ||
942 | if (id == ID_TransparentHint || | |
943 | id == ID_VenetianBlindsHint || | |
944 | id == ID_RectangleHint || | |
945 | id == ID_NoHint) | |
946 | { | |
947 | unsigned int flags = m_mgr.GetFlags(); | |
948 | flags &= ~wxAUI_MGR_TRANSPARENT_HINT; | |
949 | flags &= ~wxAUI_MGR_VENETIAN_BLINDS_HINT; | |
950 | flags &= ~wxAUI_MGR_RECTANGLE_HINT; | |
951 | m_mgr.SetFlags(flags); | |
952 | } | |
953 | ||
954 | switch (id) | |
50acee04 JS |
955 | { |
956 | case ID_AllowFloating: flag = wxAUI_MGR_ALLOW_FLOATING; break; | |
957 | case ID_TransparentDrag: flag = wxAUI_MGR_TRANSPARENT_DRAG; break; | |
cf6fec73 BW |
958 | case ID_HintFade: flag = wxAUI_MGR_HINT_FADE; break; |
959 | case ID_NoVenetianFade: flag = wxAUI_MGR_NO_VENETIAN_BLINDS_FADE; break; | |
50acee04 | 960 | case ID_AllowActivePane: flag = wxAUI_MGR_ALLOW_ACTIVE_PANE; break; |
cf6fec73 BW |
961 | case ID_TransparentHint: flag = wxAUI_MGR_TRANSPARENT_HINT; break; |
962 | case ID_VenetianBlindsHint: flag = wxAUI_MGR_VENETIAN_BLINDS_HINT; break; | |
963 | case ID_RectangleHint: flag = wxAUI_MGR_RECTANGLE_HINT; break; | |
964 | } | |
965 | ||
966 | if (flag) | |
967 | { | |
968 | m_mgr.SetFlags(m_mgr.GetFlags() ^ flag); | |
50acee04 | 969 | } |
cf6fec73 | 970 | |
50acee04 JS |
971 | m_mgr.Update(); |
972 | } | |
973 | ||
974 | void MyFrame::OnUpdateUI(wxUpdateUIEvent& event) | |
975 | { | |
976 | unsigned int flags = m_mgr.GetFlags(); | |
bfeed34c | 977 | |
50acee04 JS |
978 | switch (event.GetId()) |
979 | { | |
980 | case ID_NoGradient: | |
87d658e5 | 981 | event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_NONE); |
50acee04 JS |
982 | break; |
983 | case ID_VerticalGradient: | |
87d658e5 | 984 | event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_VERTICAL); |
50acee04 JS |
985 | break; |
986 | case ID_HorizontalGradient: | |
87d658e5 | 987 | event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_HORIZONTAL); |
50acee04 JS |
988 | break; |
989 | case ID_AllowFloating: | |
87d658e5 | 990 | event.Check((flags & wxAUI_MGR_ALLOW_FLOATING) != 0); |
50acee04 JS |
991 | break; |
992 | case ID_TransparentDrag: | |
87d658e5 | 993 | event.Check((flags & wxAUI_MGR_TRANSPARENT_DRAG) != 0); |
50acee04 JS |
994 | break; |
995 | case ID_TransparentHint: | |
87d658e5 | 996 | event.Check((flags & wxAUI_MGR_TRANSPARENT_HINT) != 0); |
50acee04 | 997 | break; |
cf6fec73 BW |
998 | case ID_VenetianBlindsHint: |
999 | event.Check((flags & wxAUI_MGR_VENETIAN_BLINDS_HINT) != 0); | |
1000 | break; | |
1001 | case ID_RectangleHint: | |
1002 | event.Check((flags & wxAUI_MGR_RECTANGLE_HINT) != 0); | |
50acee04 | 1003 | break; |
cf6fec73 BW |
1004 | case ID_NoHint: |
1005 | event.Check(((wxAUI_MGR_TRANSPARENT_HINT | | |
1006 | wxAUI_MGR_VENETIAN_BLINDS_HINT | | |
1007 | wxAUI_MGR_RECTANGLE_HINT) & flags) == 0); | |
1008 | break; | |
1009 | case ID_HintFade: | |
1010 | event.Check((flags & wxAUI_MGR_HINT_FADE) != 0); | |
70476471 | 1011 | break; |
cf6fec73 BW |
1012 | case ID_NoVenetianFade: |
1013 | event.Check((flags & wxAUI_MGR_NO_VENETIAN_BLINDS_FADE) != 0); | |
70476471 | 1014 | break; |
50acee04 JS |
1015 | } |
1016 | } | |
1017 | ||
58754643 BW |
1018 | void MyFrame::OnPaneClose(wxFrameManagerEvent& evt) |
1019 | { | |
1020 | if (evt.pane->name == wxT("test10")) | |
1021 | { | |
1022 | int res = wxMessageBox(wxT("Are you sure you want to close/hide this pane?"), | |
1023 | wxT("wxAUI"), | |
1024 | wxYES_NO, | |
1025 | this); | |
1026 | if (res != wxYES) | |
1027 | evt.Veto(); | |
1028 | } | |
1029 | } | |
1030 | ||
bfeed34c | 1031 | void MyFrame::OnCreatePerspective(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1032 | { |
1033 | wxTextEntryDialog dlg(this, wxT("Enter a name for the new perspective:"), | |
1034 | wxT("wxAUI Test")); | |
bfeed34c | 1035 | |
b143cf70 | 1036 | dlg.SetValue(wxString::Format(wxT("Perspective %u"), unsigned(m_perspectives.GetCount() + 1))); |
50acee04 JS |
1037 | if (dlg.ShowModal() != wxID_OK) |
1038 | return; | |
bfeed34c | 1039 | |
50acee04 JS |
1040 | if (m_perspectives.GetCount() == 0) |
1041 | { | |
1042 | m_perspectives_menu->AppendSeparator(); | |
1043 | } | |
bfeed34c | 1044 | |
50acee04 JS |
1045 | m_perspectives_menu->Append(ID_FirstPerspective + m_perspectives.GetCount(), dlg.GetValue()); |
1046 | m_perspectives.Add(m_mgr.SavePerspective()); | |
1047 | } | |
1048 | ||
bfeed34c | 1049 | void MyFrame::OnCopyPerspectiveCode(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1050 | { |
1051 | wxString s = m_mgr.SavePerspective(); | |
bfeed34c | 1052 | |
b2e17848 | 1053 | #if wxUSE_CLIPBOARD |
50acee04 JS |
1054 | if (wxTheClipboard->Open()) |
1055 | { | |
1056 | wxTheClipboard->SetData(new wxTextDataObject(s)); | |
1057 | wxTheClipboard->Close(); | |
1058 | } | |
b2e17848 | 1059 | #endif |
50acee04 JS |
1060 | } |
1061 | ||
1062 | void MyFrame::OnRestorePerspective(wxCommandEvent& event) | |
1063 | { | |
1064 | m_mgr.LoadPerspective(m_perspectives.Item(event.GetId() - ID_FirstPerspective)); | |
1065 | } | |
1066 | ||
1067 | ||
1068 | wxPoint MyFrame::GetStartPosition() | |
1069 | { | |
1070 | static int x = 0; | |
1071 | x += 20; | |
1072 | wxPoint pt = ClientToScreen(wxPoint(0,0)); | |
1073 | return wxPoint(pt.x + x, pt.y + x); | |
1074 | } | |
1075 | ||
bfeed34c | 1076 | void MyFrame::OnCreateTree(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1077 | { |
1078 | m_mgr.AddPane(CreateTreeCtrl(), wxPaneInfo(). | |
1079 | Name(wxT("Test")).Caption(wxT("Tree Control")). | |
1080 | Float().FloatingPosition(GetStartPosition()). | |
1081 | FloatingSize(wxSize(150,300))); | |
1082 | m_mgr.Update(); | |
1083 | } | |
1084 | ||
bfeed34c | 1085 | void MyFrame::OnCreateGrid(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1086 | { |
1087 | m_mgr.AddPane(CreateGrid(), wxPaneInfo(). | |
1088 | Name(wxT("Test")).Caption(wxT("Grid")). | |
1089 | Float().FloatingPosition(GetStartPosition()). | |
1090 | FloatingSize(wxSize(300,200))); | |
1091 | m_mgr.Update(); | |
1092 | } | |
1093 | ||
bfeed34c | 1094 | void MyFrame::OnCreateHTML(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1095 | { |
1096 | m_mgr.AddPane(CreateHTMLCtrl(), wxPaneInfo(). | |
87d658e5 | 1097 | Name(wxT("Test")).Caption(wxT("HTML Control")). |
50acee04 JS |
1098 | Float().FloatingPosition(GetStartPosition()). |
1099 | FloatingSize(wxSize(300,200))); | |
1100 | m_mgr.Update(); | |
1101 | } | |
1102 | ||
df00bdf7 RR |
1103 | void MyFrame::OnCreateNotebook(wxCommandEvent& WXUNUSED(event)) |
1104 | { | |
1105 | m_mgr.AddPane(CreateNotebook(), wxPaneInfo(). | |
1106 | Name(wxT("Test")).Caption(wxT("Notebook")). | |
1107 | Float().FloatingPosition(GetStartPosition()). | |
1108 | FloatingSize(wxSize(300,200))); | |
1109 | m_mgr.Update(); | |
1110 | } | |
1111 | ||
bfeed34c | 1112 | void MyFrame::OnCreateText(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1113 | { |
1114 | m_mgr.AddPane(CreateTextCtrl(), wxPaneInfo(). | |
1115 | Name(wxT("Test")).Caption(wxT("Text Control")). | |
1116 | Float().FloatingPosition(GetStartPosition())); | |
1117 | m_mgr.Update(); | |
1118 | } | |
1119 | ||
bfeed34c | 1120 | void MyFrame::OnCreateSizeReport(wxCommandEvent& WXUNUSED(event)) |
50acee04 JS |
1121 | { |
1122 | m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). | |
1123 | Name(wxT("Test")).Caption(wxT("Client Size Reporter")). | |
1124 | Float().FloatingPosition(GetStartPosition())); | |
1125 | m_mgr.Update(); | |
1126 | } | |
1127 | ||
1128 | void MyFrame::OnChangeContentPane(wxCommandEvent& event) | |
1129 | { | |
87d658e5 PC |
1130 | m_mgr.GetPane(wxT("grid_content")).Show(event.GetId() == ID_GridContent); |
1131 | m_mgr.GetPane(wxT("text_content")).Show(event.GetId() == ID_TextContent); | |
1132 | m_mgr.GetPane(wxT("tree_content")).Show(event.GetId() == ID_TreeContent); | |
1133 | m_mgr.GetPane(wxT("sizereport_content")).Show(event.GetId() == ID_SizeReportContent); | |
1134 | m_mgr.GetPane(wxT("html_content")).Show(event.GetId() == ID_HTMLContent); | |
1135 | m_mgr.GetPane(wxT("notebook_content")).Show(event.GetId() == ID_NotebookContent); | |
50acee04 JS |
1136 | m_mgr.Update(); |
1137 | } | |
1138 | ||
1139 | void MyFrame::OnExit(wxCommandEvent& WXUNUSED(event)) | |
1140 | { | |
1141 | Close(true); | |
1142 | } | |
1143 | ||
1144 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
1145 | { | |
1146 | wxMessageBox(_("wxAUI Demo\nAn advanced window management library for wxWidgets\n(c) Copyright 2005-2006, Kirix Corporation"), _("About wxAUI Demo"), wxOK, this); | |
1147 | } | |
1148 | ||
58754643 | 1149 | wxTextCtrl* MyFrame::CreateTextCtrl(const wxString& ctrl_text) |
50acee04 | 1150 | { |
50acee04 JS |
1151 | static int n = 0; |
1152 | ||
58754643 BW |
1153 | wxString text; |
1154 | if (ctrl_text.Length() > 0) | |
1155 | text = ctrl_text; | |
87d658e5 | 1156 | else |
58754643 | 1157 | text.Printf(wxT("This is text box %d"), ++n); |
50acee04 | 1158 | |
bfeed34c | 1159 | return new wxTextCtrl(this,wxID_ANY, text, |
50acee04 JS |
1160 | wxPoint(0,0), wxSize(150,90), |
1161 | wxNO_BORDER | wxTE_MULTILINE); | |
1162 | } | |
1163 | ||
1164 | ||
1165 | wxGrid* MyFrame::CreateGrid() | |
1166 | { | |
bfeed34c | 1167 | wxGrid* grid = new wxGrid(this, wxID_ANY, |
50acee04 JS |
1168 | wxPoint(0,0), |
1169 | wxSize(150,250), | |
1170 | wxNO_BORDER | wxWANTS_CHARS); | |
1171 | grid->CreateGrid(50, 20); | |
1172 | return grid; | |
1173 | } | |
1174 | ||
1175 | wxTreeCtrl* MyFrame::CreateTreeCtrl() | |
1176 | { | |
bfeed34c | 1177 | wxTreeCtrl* tree = new wxTreeCtrl(this, wxID_ANY, |
50acee04 JS |
1178 | wxPoint(0,0), wxSize(160,250), |
1179 | wxTR_DEFAULT_STYLE | wxNO_BORDER); | |
bfeed34c | 1180 | |
50acee04 JS |
1181 | wxTreeItemId root = tree->AddRoot(wxT("wxAUI Project")); |
1182 | wxArrayTreeItemIds items; | |
1183 | ||
1184 | ||
1185 | wxImageList* imglist = new wxImageList(16, 16, true, 2); | |
1186 | imglist->Add(wxArtProvider::GetBitmap(wxART_FOLDER, wxART_OTHER, wxSize(16,16))); | |
1187 | imglist->Add(wxArtProvider::GetBitmap(wxART_NORMAL_FILE, wxART_OTHER, wxSize(16,16))); | |
1188 | tree->AssignImageList(imglist); | |
1189 | ||
1190 | items.Add(tree->AppendItem(root, wxT("Item 1"), 0)); | |
1191 | items.Add(tree->AppendItem(root, wxT("Item 2"), 0)); | |
1192 | items.Add(tree->AppendItem(root, wxT("Item 3"), 0)); | |
1193 | items.Add(tree->AppendItem(root, wxT("Item 4"), 0)); | |
1194 | items.Add(tree->AppendItem(root, wxT("Item 5"), 0)); | |
1195 | ||
bfeed34c | 1196 | |
50acee04 JS |
1197 | int i, count; |
1198 | for (i = 0, count = items.Count(); i < count; ++i) | |
1199 | { | |
1200 | wxTreeItemId id = items.Item(i); | |
1201 | tree->AppendItem(id, wxT("Subitem 1"), 1); | |
1202 | tree->AppendItem(id, wxT("Subitem 2"), 1); | |
1203 | tree->AppendItem(id, wxT("Subitem 3"), 1); | |
1204 | tree->AppendItem(id, wxT("Subitem 4"), 1); | |
1205 | tree->AppendItem(id, wxT("Subitem 5"), 1); | |
1206 | } | |
1207 | ||
1208 | ||
1209 | tree->Expand(root); | |
1210 | ||
1211 | return tree; | |
1212 | } | |
1213 | ||
1214 | wxSizeReportCtrl* MyFrame::CreateSizeReportCtrl(int width, int height) | |
1215 | { | |
bfeed34c | 1216 | wxSizeReportCtrl* ctrl = new wxSizeReportCtrl(this, wxID_ANY, |
50acee04 JS |
1217 | wxDefaultPosition, |
1218 | wxSize(width, height), &m_mgr); | |
1219 | return ctrl; | |
1220 | } | |
1221 | ||
dbd2f790 | 1222 | wxHtmlWindow* MyFrame::CreateHTMLCtrl(wxWindow* parent) |
50acee04 | 1223 | { |
dbd2f790 BW |
1224 | if (!parent) |
1225 | parent = this; | |
1226 | ||
1227 | wxHtmlWindow* ctrl = new wxHtmlWindow(parent, wxID_ANY, | |
50acee04 JS |
1228 | wxDefaultPosition, |
1229 | wxSize(400,300)); | |
1230 | ctrl->SetPage(GetIntroText()); | |
1231 | return ctrl; | |
1232 | } | |
1233 | ||
df00bdf7 RR |
1234 | wxAuiMultiNotebook* MyFrame::CreateNotebook() |
1235 | { | |
1236 | wxAuiMultiNotebook* ctrl = new wxAuiMultiNotebook( this, wxID_ANY, | |
2e5c35af | 1237 | wxDefaultPosition, wxSize(400,300), wxNO_BORDER ); |
df00bdf7 | 1238 | |
dbd2f790 BW |
1239 | ctrl->AddPage(CreateHTMLCtrl(ctrl), wxT("Welcome")); |
1240 | ||
df00bdf7 RR |
1241 | wxPanel *panel = new wxPanel( ctrl, wxID_ANY ); |
1242 | wxFlexGridSizer *flex = new wxFlexGridSizer( 2 ); | |
1243 | flex->AddGrowableRow( 0 ); | |
1244 | flex->AddGrowableRow( 3 ); | |
1245 | flex->AddGrowableCol( 1 ); | |
1246 | flex->Add( 5,5 ); flex->Add( 5,5 ); | |
1247 | flex->Add( new wxStaticText( panel, -1, wxT("wxTextCtrl:") ), 0, wxALL|wxALIGN_CENTRE, 5 ); | |
2e5c35af | 1248 | flex->Add( new wxTextCtrl( panel, -1, wxT(""), wxDefaultPosition, wxSize(100,-1)), |
df00bdf7 RR |
1249 | 1, wxALL|wxALIGN_CENTRE, 5 ); |
1250 | flex->Add( new wxStaticText( panel, -1, wxT("wxSpinCtrl:") ), 0, wxALL|wxALIGN_CENTRE, 5 ); | |
1251 | flex->Add( new wxSpinCtrl( panel, -1, wxT("5"), wxDefaultPosition, wxSize(100,-1), | |
1252 | wxSP_ARROW_KEYS, 5, 50, 5 ), 0, wxALL|wxALIGN_CENTRE, 5 ); | |
1253 | flex->Add( 5,5 ); flex->Add( 5,5 ); | |
1254 | panel->SetSizer( flex ); | |
1255 | ctrl->AddPage( panel, wxT("wxPanel") ); | |
1256 | ||
1257 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some text"), | |
4953f8cf | 1258 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 1") ); |
df00bdf7 RR |
1259 | |
1260 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), | |
4953f8cf BW |
1261 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 2") ); |
1262 | ||
1263 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), | |
1264 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 3") ); | |
1265 | ||
1266 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), | |
1267 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 4") ); | |
1268 | ||
1269 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), | |
1270 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 5") ); | |
df00bdf7 | 1271 | |
4953f8cf BW |
1272 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), |
1273 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 6") ); | |
1274 | ||
1275 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), | |
1276 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 7") ); | |
1277 | ||
1278 | ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), | |
1279 | wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl 8") ); | |
1280 | ||
df00bdf7 RR |
1281 | return ctrl; |
1282 | } | |
50acee04 JS |
1283 | |
1284 | wxString MyFrame::GetIntroText() | |
1285 | { | |
1286 | const char* text = | |
1287 | "<html><body>" | |
70476471 | 1288 | "<h3>Welcome to wxAUI</h3>" |
50acee04 JS |
1289 | "<br/><b>Overview</b><br/>" |
1290 | "<p>wxAUI is an Advanced User Interface library for the wxWidgets toolkit " | |
1291 | "that allows developers to create high-quality, cross-platform user " | |
1292 | "interfaces quickly and easily.</p>" | |
1293 | "<p><b>Features</b></p>" | |
70476471 | 1294 | "<p>With wxAUI, developers can create application frameworks with:</p>" |
50acee04 JS |
1295 | "<ul>" |
1296 | "<li>Native, dockable floating frames</li>" | |
1297 | "<li>Perspective saving and loading</li>" | |
1298 | "<li>Native toolbars incorporating real-time, "spring-loaded" dragging</li>" | |
1299 | "<li>Customizable floating/docking behavior</li>" | |
1300 | "<li>Completely customizable look-and-feel</li>" | |
1301 | "<li>Optional transparent window effects (while dragging or docking)</li>" | |
1302 | "</ul>" | |
1303 | "<p><b>What's new in 0.9.2?</b></p>" | |
1304 | "<p>The following features/fixes have been added since the last version of wxAUI:</p>" | |
1305 | "<ul>" | |
1306 | "<li>Support for wxMac</li>" | |
1307 | "<li>Updates for wxWidgets 2.6.3</li>" | |
1308 | "<li>Fix to pass more unused events through</li>" | |
1309 | "<li>Fix to allow floating windows to receive idle events</li>" | |
1310 | "<li>Fix for minimizing/maximizing problem with transparent hint pane</li>" | |
1311 | "<li>Fix to not paint empty hint rectangles</li>" | |
1312 | "<li>Fix for 64-bit compilation</li>" | |
1313 | "</ul>" | |
1314 | "<p><b>What changed in 0.9.1?</b></p>" | |
1315 | "<p>The following features/fixes were added in wxAUI 0.9.1:</p>" | |
1316 | "<ul>" | |
1317 | "<li>Support for MDI frames</li>" | |
1318 | "<li>Gradient captions option</li>" | |
1319 | "<li>Active/Inactive panes option</li>" | |
1320 | "<li>Fix for screen artifacts/paint problems</li>" | |
1321 | "<li>Fix for hiding/showing floated window problem</li>" | |
1322 | "<li>Fix for floating pane sizing problem</li>" | |
1323 | "<li>Fix for drop position problem when dragging around center pane margins</li>" | |
1324 | "<li>LF-only text file formatting for source code</li>" | |
1325 | "</ul>" | |
1326 | "<p>See README.txt for more information.</p>" | |
1327 | "</body></html>"; | |
1328 | ||
1329 | return wxString::FromAscii(text); | |
1330 | } |