wxaui flags reworked a bit; allows any hinting type to be explicity invoked; turning...
[wxWidgets.git] / samples / aui / auidemo.cpp
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
7 // RCS-ID: $Id$
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__
16 #pragma hdrstop
17 #endif
18
19 #include "wx/app.h"
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"
28 #include "wx/imaglist.h"
29 #include "wx/dataobj.h"
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"
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
49 DECLARE_APP(MyApp)
50 IMPLEMENT_APP(MyApp)
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,
70 ID_NotebookContent,
71 ID_SizeReportContent,
72 ID_CreatePerspective,
73 ID_CopyPerspectiveCode,
74 ID_AllowFloating,
75 ID_AllowActivePane,
76 ID_TransparentHint,
77 ID_VenetianBlindsHint,
78 ID_RectangleHint,
79 ID_NoHint,
80 ID_HintFade,
81 ID_NoVenetianFade,
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:
104 wxTextCtrl* CreateTextCtrl(const wxString& text = wxEmptyString);
105 wxGrid* CreateGrid();
106 wxTreeCtrl* CreateTreeCtrl();
107 wxSizeReportCtrl* CreateSizeReportCtrl(int width = 80, int height = 80);
108 wxPoint GetStartPosition();
109 wxHtmlWindow* CreateHTMLCtrl();
110 wxAuiMultiNotebook* CreateNotebook();
111
112 wxString GetIntroText();
113
114 private:
115
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);
122 void OnCreateNotebook(wxCommandEvent& evt);
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
139 private:
140
141 wxFrameManager m_mgr;
142 wxArrayString m_perspectives;
143 wxMenu* m_perspectives_menu;
144
145 DECLARE_EVENT_TABLE()
146 };
147
148
149 // -- wxSizeReportCtrl --
150 // (a utility control that always reports it's client size)
151
152 class wxSizeReportCtrl : public wxControl
153 {
154 public:
155
156 wxSizeReportCtrl(wxWindow* parent, wxWindowID id = wxID_ANY,
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
167 void OnPaint(wxPaintEvent& WXUNUSED(evt))
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));
186
187 if (m_mgr)
188 {
189 wxPaneInfo pi = m_mgr->GetPane(this);
190
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));
194
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));
198
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));
202
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
209 void OnEraseBackground(wxEraseEvent& WXUNUSED(evt))
210 {
211 // intentionally empty
212 }
213
214 void OnSize(wxSizeEvent& WXUNUSED(evt))
215 {
216 Refresh();
217 }
218 private:
219
220 wxFrameManager* m_mgr;
221
222 DECLARE_EVENT_TABLE()
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
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)
254 : wxPanel(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize)
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);
263 s1->Add(new wxStaticText(this, wxID_ANY, wxT("Pane Border Size:")));
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);
272 s2->Add(new wxStaticText(this, wxID_ANY, wxT("Sash Size:")));
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);
281 s3->Add(new wxStaticText(this, wxID_ANY, wxT("Caption Size:")));
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);
295 s4->Add(new wxStaticText(this, wxID_ANY, wxT("Background Color:")));
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);
303 s5->Add(new wxStaticText(this, wxID_ANY, wxT("Sash Color:")));
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);
311 s6->Add(new wxStaticText(this, wxID_ANY, wxT("Normal Caption:")));
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);
319 s7->Add(new wxStaticText(this, wxID_ANY, wxT("Normal Caption Gradient:")));
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);
327 s8->Add(new wxStaticText(this, wxID_ANY, wxT("Normal Caption Text:")));
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);
335 s9->Add(new wxStaticText(this, wxID_ANY, wxT("Active Caption:")));
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);
343 s10->Add(new wxStaticText(this, wxID_ANY, wxT("Active Caption Gradient:")));
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);
351 s11->Add(new wxStaticText(this, wxID_ANY, wxT("Active Caption Text:")));
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);
359 s12->Add(new wxStaticText(this, wxID_ANY, wxT("Border Color:")));
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);
367 s13->Add(new wxStaticText(this, wxID_ANY, wxT("Gripper Color:")));
368 s13->Add(m_gripper_color);
369 s13->Add(1, 1, 1, wxEXPAND);
370 s13->SetItemMinSize((size_t)1, 180, 20);
371
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);
381
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));
391
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 }
411
412 void UpdateColors()
413 {
414 wxColour bk = m_frame->GetDockArt()->GetColor(wxAUI_ART_BACKGROUND_COLOUR);
415 m_background_color->SetBitmapLabel(CreateColorBitmap(bk));
416
417 wxColour cap = m_frame->GetDockArt()->GetColor(wxAUI_ART_INACTIVE_CAPTION_COLOUR);
418 m_inactive_caption_color->SetBitmapLabel(CreateColorBitmap(cap));
419
420 wxColour capgrad = m_frame->GetDockArt()->GetColor(wxAUI_ART_INACTIVE_CAPTION_GRADIENT_COLOUR);
421 m_inactive_caption_gradient_color->SetBitmapLabel(CreateColorBitmap(capgrad));
422
423 wxColour captxt = m_frame->GetDockArt()->GetColor(wxAUI_ART_INACTIVE_CAPTION_TEXT_COLOUR);
424 m_inactive_caption_text_color->SetBitmapLabel(CreateColorBitmap(captxt));
425
426 wxColour acap = m_frame->GetDockArt()->GetColor(wxAUI_ART_ACTIVE_CAPTION_COLOUR);
427 m_active_caption_color->SetBitmapLabel(CreateColorBitmap(acap));
428
429 wxColour acapgrad = m_frame->GetDockArt()->GetColor(wxAUI_ART_ACTIVE_CAPTION_GRADIENT_COLOUR);
430 m_active_caption_gradient_color->SetBitmapLabel(CreateColorBitmap(acapgrad));
431
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));
437
438 wxColour border = m_frame->GetDockArt()->GetColor(wxAUI_ART_BORDER_COLOUR);
439 m_border_color->SetBitmapLabel(CreateColorBitmap(border));
440
441 wxColour gripper = m_frame->GetDockArt()->GetColor(wxAUI_ART_GRIPPER_COLOUR);
442 m_gripper_color->SetBitmapLabel(CreateColorBitmap(gripper));
443 }
444
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;
472
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 }
488
489 m_frame->GetDockArt()->SetColor(var, dlg.GetColourData().GetColour());
490 m_frame->DoUpdate();
491 UpdateColors();
492 }
493
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;
510
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)
527 EVT_BUTTON(ID_GripperColor, SettingsPanel::OnSetColor)
528 END_EVENT_TABLE()
529
530
531 bool MyApp::OnInit()
532 {
533 wxFrame* frame = new MyFrame(NULL,
534 wxID_ANY,
535 wxT("wxAUI Sample Application"),
536 wxDefaultPosition,
537 wxSize(800, 600));
538 SetTopWindow(frame);
539 frame->Show();
540
541 return true;
542 }
543
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)
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)
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)
572 EVT_MENU(ID_NotebookContent, MyFrame::OnChangeContentPane)
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)
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)
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)
588 EVT_AUI_PANECLOSE(MyFrame::OnPaneClose)
589 END_EVENT_TABLE()
590
591
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
601 m_mgr.SetManagedWindow(this);
602
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"));
623 view_menu->Append(ID_NotebookContent, _("Use a AUI wxMultiNotebook control for the Content Pane"));
624 view_menu->Append(ID_SizeReportContent, _("Use a Size Reporter for the Content Pane"));
625
626 wxMenu* options_menu = new wxMenu;
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"));
633 options_menu->AppendCheckItem(ID_AllowFloating, _("Allow Floating"));
634 options_menu->AppendCheckItem(ID_NoVenetianFade, _("Disable Venetian Blinds Hint Fade-in"));
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"));
643
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..."));
653
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"));
659
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
672 wxToolBar* tb1 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
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
684 wxToolBar* tb2 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
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
703
704 wxToolBar* tb3 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
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
718 wxToolBar* tb4 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
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
734 wxToolBar* tb5 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize,
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());
758
759 m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo().
760 Name(wxT("test4")).Caption(wxT("Pane Caption")).
761 Left());
762
763 m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo().
764 Name(wxT("test5")).Caption(wxT("No Close Button")).
765 Right().CloseButton(false));
766
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));
774
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
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")).
787 Bottom().Layer(1).Position(1));
788
789 m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo().
790 Name(wxT("test11")).Caption(wxT("Fixed Pane")).
791 Bottom().Layer(1).Position(2).Fixed());
792
793
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());
805
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());
814
815 m_mgr.AddPane(CreateNotebook(), wxPaneInfo().Name(wxT("notebook_content")).
816 CenterPane().PaneBorder(false));
817
818 // add the toolbars to the manager
819
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));
829
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));
834
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));
839
840 m_mgr.AddPane(tb5, wxPaneInfo().
841 Name(wxT("tb5")).Caption(wxT("Sample Vertical Toolbar")).
842 ToolbarPane().Left().
843 GripperTop().
844 TopDockable(false).BottomDockable(false));
845
846 m_mgr.AddPane(new wxButton(this, wxID_ANY, _("Test Button")),
847 wxPaneInfo().Name(wxT("tb6")).
848 ToolbarPane().Top().Row(2).Position(1).
849 LeftDockable(false).RightDockable(false));
850
851
852 // make some default perspectives
853
854 wxString perspective_all = m_mgr.SavePerspective();
855
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();
862 m_mgr.GetPane(wxT("tb6")).Hide();
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);
865 m_mgr.GetPane(wxT("html_content")).Show();
866 wxString perspective_default = m_mgr.SavePerspective();
867
868 m_perspectives.Add(perspective_default);
869 m_perspectives.Add(perspective_all);
870
871 // "commit" all changes made to wxFrameManager
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
890 void MyFrame::OnEraseBackground(wxEraseEvent& event)
891 {
892 event.Skip();
893 }
894
895 void MyFrame::OnSize(wxSizeEvent& event)
896 {
897 event.Skip();
898 }
899
900 void MyFrame::OnSettings(wxCommandEvent& WXUNUSED(event))
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
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;
929
930 #if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXGTK__)
931 if (event.GetId() == ID_TransparentDrag ||
932 event.GetId() == ID_TransparentHint ||
933 event.GetId() == ID_HintFade)
934 {
935 wxMessageBox(wxT("This option is presently only available on wxGTK, wxMSW and wxMac"));
936 return;
937 }
938 #endif
939
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)
955 {
956 case ID_AllowFloating: flag = wxAUI_MGR_ALLOW_FLOATING; break;
957 case ID_TransparentDrag: flag = wxAUI_MGR_TRANSPARENT_DRAG; break;
958 case ID_HintFade: flag = wxAUI_MGR_HINT_FADE; break;
959 case ID_NoVenetianFade: flag = wxAUI_MGR_NO_VENETIAN_BLINDS_FADE; break;
960 case ID_AllowActivePane: flag = wxAUI_MGR_ALLOW_ACTIVE_PANE; break;
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);
969 }
970
971 m_mgr.Update();
972 }
973
974 void MyFrame::OnUpdateUI(wxUpdateUIEvent& event)
975 {
976 unsigned int flags = m_mgr.GetFlags();
977
978 switch (event.GetId())
979 {
980 case ID_NoGradient:
981 event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_NONE);
982 break;
983 case ID_VerticalGradient:
984 event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_VERTICAL);
985 break;
986 case ID_HorizontalGradient:
987 event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_HORIZONTAL);
988 break;
989 case ID_AllowFloating:
990 event.Check((flags & wxAUI_MGR_ALLOW_FLOATING) != 0);
991 break;
992 case ID_TransparentDrag:
993 event.Check((flags & wxAUI_MGR_TRANSPARENT_DRAG) != 0);
994 break;
995 case ID_TransparentHint:
996 event.Check((flags & wxAUI_MGR_TRANSPARENT_HINT) != 0);
997 break;
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);
1003 break;
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);
1011 break;
1012 case ID_NoVenetianFade:
1013 event.Check((flags & wxAUI_MGR_NO_VENETIAN_BLINDS_FADE) != 0);
1014 break;
1015 }
1016 }
1017
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
1031 void MyFrame::OnCreatePerspective(wxCommandEvent& WXUNUSED(event))
1032 {
1033 wxTextEntryDialog dlg(this, wxT("Enter a name for the new perspective:"),
1034 wxT("wxAUI Test"));
1035
1036 dlg.SetValue(wxString::Format(wxT("Perspective %u"), unsigned(m_perspectives.GetCount() + 1)));
1037 if (dlg.ShowModal() != wxID_OK)
1038 return;
1039
1040 if (m_perspectives.GetCount() == 0)
1041 {
1042 m_perspectives_menu->AppendSeparator();
1043 }
1044
1045 m_perspectives_menu->Append(ID_FirstPerspective + m_perspectives.GetCount(), dlg.GetValue());
1046 m_perspectives.Add(m_mgr.SavePerspective());
1047 }
1048
1049 void MyFrame::OnCopyPerspectiveCode(wxCommandEvent& WXUNUSED(event))
1050 {
1051 wxString s = m_mgr.SavePerspective();
1052
1053 #if wxUSE_CLIPBOARD
1054 if (wxTheClipboard->Open())
1055 {
1056 wxTheClipboard->SetData(new wxTextDataObject(s));
1057 wxTheClipboard->Close();
1058 }
1059 #endif
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
1076 void MyFrame::OnCreateTree(wxCommandEvent& WXUNUSED(event))
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
1085 void MyFrame::OnCreateGrid(wxCommandEvent& WXUNUSED(event))
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
1094 void MyFrame::OnCreateHTML(wxCommandEvent& WXUNUSED(event))
1095 {
1096 m_mgr.AddPane(CreateHTMLCtrl(), wxPaneInfo().
1097 Name(wxT("Test")).Caption(wxT("HTML Control")).
1098 Float().FloatingPosition(GetStartPosition()).
1099 FloatingSize(wxSize(300,200)));
1100 m_mgr.Update();
1101 }
1102
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
1112 void MyFrame::OnCreateText(wxCommandEvent& WXUNUSED(event))
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
1120 void MyFrame::OnCreateSizeReport(wxCommandEvent& WXUNUSED(event))
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 {
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);
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
1149 wxTextCtrl* MyFrame::CreateTextCtrl(const wxString& ctrl_text)
1150 {
1151 static int n = 0;
1152
1153 wxString text;
1154 if (ctrl_text.Length() > 0)
1155 text = ctrl_text;
1156 else
1157 text.Printf(wxT("This is text box %d"), ++n);
1158
1159 return new wxTextCtrl(this,wxID_ANY, text,
1160 wxPoint(0,0), wxSize(150,90),
1161 wxNO_BORDER | wxTE_MULTILINE);
1162 }
1163
1164
1165 wxGrid* MyFrame::CreateGrid()
1166 {
1167 wxGrid* grid = new wxGrid(this, wxID_ANY,
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 {
1177 wxTreeCtrl* tree = new wxTreeCtrl(this, wxID_ANY,
1178 wxPoint(0,0), wxSize(160,250),
1179 wxTR_DEFAULT_STYLE | wxNO_BORDER);
1180
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
1196
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 {
1216 wxSizeReportCtrl* ctrl = new wxSizeReportCtrl(this, wxID_ANY,
1217 wxDefaultPosition,
1218 wxSize(width, height), &m_mgr);
1219 return ctrl;
1220 }
1221
1222 wxHtmlWindow* MyFrame::CreateHTMLCtrl()
1223 {
1224 wxHtmlWindow* ctrl = new wxHtmlWindow(this, wxID_ANY,
1225 wxDefaultPosition,
1226 wxSize(400,300));
1227 ctrl->SetPage(GetIntroText());
1228 return ctrl;
1229 }
1230
1231 wxAuiMultiNotebook* MyFrame::CreateNotebook()
1232 {
1233 wxAuiMultiNotebook* ctrl = new wxAuiMultiNotebook( this, wxID_ANY,
1234 wxDefaultPosition, wxSize(400,300), wxNO_BORDER );
1235
1236 wxPanel *panel = new wxPanel( ctrl, wxID_ANY );
1237 wxFlexGridSizer *flex = new wxFlexGridSizer( 2 );
1238 flex->AddGrowableRow( 0 );
1239 flex->AddGrowableRow( 3 );
1240 flex->AddGrowableCol( 1 );
1241 flex->Add( 5,5 ); flex->Add( 5,5 );
1242 flex->Add( new wxStaticText( panel, -1, wxT("wxTextCtrl:") ), 0, wxALL|wxALIGN_CENTRE, 5 );
1243 flex->Add( new wxTextCtrl( panel, -1, wxT(""), wxDefaultPosition, wxSize(100,-1)),
1244 1, wxALL|wxALIGN_CENTRE, 5 );
1245 flex->Add( new wxStaticText( panel, -1, wxT("wxSpinCtrl:") ), 0, wxALL|wxALIGN_CENTRE, 5 );
1246 flex->Add( new wxSpinCtrl( panel, -1, wxT("5"), wxDefaultPosition, wxSize(100,-1),
1247 wxSP_ARROW_KEYS, 5, 50, 5 ), 0, wxALL|wxALIGN_CENTRE, 5 );
1248 flex->Add( 5,5 ); flex->Add( 5,5 );
1249 panel->SetSizer( flex );
1250 ctrl->AddPage( panel, wxT("wxPanel") );
1251
1252 ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some text"),
1253 wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl I") );
1254
1255 ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"),
1256 wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl II") );
1257
1258 return ctrl;
1259 }
1260
1261 wxString MyFrame::GetIntroText()
1262 {
1263 const char* text =
1264 "<html><body>"
1265 "<h3>Welcome to wxAUI</h3>"
1266 "<br/><b>Overview</b><br/>"
1267 "<p>wxAUI is an Advanced User Interface library for the wxWidgets toolkit "
1268 "that allows developers to create high-quality, cross-platform user "
1269 "interfaces quickly and easily.</p>"
1270 "<p><b>Features</b></p>"
1271 "<p>With wxAUI, developers can create application frameworks with:</p>"
1272 "<ul>"
1273 "<li>Native, dockable floating frames</li>"
1274 "<li>Perspective saving and loading</li>"
1275 "<li>Native toolbars incorporating real-time, &quot;spring-loaded&quot; dragging</li>"
1276 "<li>Customizable floating/docking behavior</li>"
1277 "<li>Completely customizable look-and-feel</li>"
1278 "<li>Optional transparent window effects (while dragging or docking)</li>"
1279 "</ul>"
1280 "<p><b>What's new in 0.9.2?</b></p>"
1281 "<p>The following features/fixes have been added since the last version of wxAUI:</p>"
1282 "<ul>"
1283 "<li>Support for wxMac</li>"
1284 "<li>Updates for wxWidgets 2.6.3</li>"
1285 "<li>Fix to pass more unused events through</li>"
1286 "<li>Fix to allow floating windows to receive idle events</li>"
1287 "<li>Fix for minimizing/maximizing problem with transparent hint pane</li>"
1288 "<li>Fix to not paint empty hint rectangles</li>"
1289 "<li>Fix for 64-bit compilation</li>"
1290 "</ul>"
1291 "<p><b>What changed in 0.9.1?</b></p>"
1292 "<p>The following features/fixes were added in wxAUI 0.9.1:</p>"
1293 "<ul>"
1294 "<li>Support for MDI frames</li>"
1295 "<li>Gradient captions option</li>"
1296 "<li>Active/Inactive panes option</li>"
1297 "<li>Fix for screen artifacts/paint problems</li>"
1298 "<li>Fix for hiding/showing floated window problem</li>"
1299 "<li>Fix for floating pane sizing problem</li>"
1300 "<li>Fix for drop position problem when dragging around center pane margins</li>"
1301 "<li>LF-only text file formatting for source code</li>"
1302 "</ul>"
1303 "<p>See README.txt for more information.</p>"
1304 "</body></html>";
1305
1306 return wxString::FromAscii(text);
1307 }