X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b2e178485a2efcc04c88fa107b354a3e14454991..17b1d76b4add82305463d10b9f65668d06169363:/samples/aui/auidemo.cpp diff --git a/samples/aui/auidemo.cpp b/samples/aui/auidemo.cpp index bf0e72093d..a3b1331d44 100644 --- a/samples/aui/auidemo.cpp +++ b/samples/aui/auidemo.cpp @@ -16,7 +16,7 @@ #pragma hdrstop #endif -#include "wx/wx.h" +#include "wx/app.h" #include "wx/grid.h" #include "wx/treectrl.h" #include "wx/spinctrl.h" @@ -26,6 +26,14 @@ #include "wx/colordlg.h" #include "wx/wxhtml.h" #include "wx/imaglist.h" +#include "wx/dataobj.h" +#include "wx/dcclient.h" +#include "wx/bmpbuttn.h" +#include "wx/menu.h" +#include "wx/toolbar.h" +#include "wx/statusbr.h" +#include "wx/msgdlg.h" +#include "wx/textdlg.h" #include "wx/aui/aui.h" #include "../sample.xpm" @@ -38,8 +46,8 @@ public: bool OnInit(); }; -DECLARE_APP(MyApp); -IMPLEMENT_APP(MyApp); +DECLARE_APP(MyApp) +IMPLEMENT_APP(MyApp) class wxSizeReportCtrl; @@ -59,6 +67,7 @@ class MyFrame : public wxFrame ID_TextContent, ID_TreeContent, ID_HTMLContent, + ID_NotebookContent, ID_SizeReportContent, ID_CreatePerspective, ID_CopyPerspectiveCode, @@ -66,6 +75,8 @@ class MyFrame : public wxFrame ID_AllowActivePane, ID_TransparentHint, ID_TransparentHintFade, + ID_DisableVenetian, + ID_DisableVenetianFade, ID_TransparentDrag, ID_NoGradient, ID_VerticalGradient, @@ -88,48 +99,51 @@ public: void DoUpdate(); private: - wxTextCtrl* CreateTextCtrl(); + wxTextCtrl* CreateTextCtrl(const wxString& text = wxEmptyString); wxGrid* CreateGrid(); wxTreeCtrl* CreateTreeCtrl(); wxSizeReportCtrl* CreateSizeReportCtrl(int width = 80, int height = 80); wxPoint GetStartPosition(); wxHtmlWindow* CreateHTMLCtrl(); + wxAuiMultiNotebook* CreateNotebook(); wxString GetIntroText(); private: - void OnEraseBackground(wxEraseEvent& event); - void OnSize(wxSizeEvent& event); - - void OnCreateTree(wxCommandEvent& event); - void OnCreateGrid(wxCommandEvent& event); - void OnCreateHTML(wxCommandEvent& event); - void OnCreateText(wxCommandEvent& event); - void OnCreateSizeReport(wxCommandEvent& event); - void OnChangeContentPane(wxCommandEvent& event); - void OnCreatePerspective(wxCommandEvent& event); - void OnCopyPerspectiveCode(wxCommandEvent& event); - void OnRestorePerspective(wxCommandEvent& event); - void OnSettings(wxCommandEvent& event); - void OnExit(wxCommandEvent& event); - void OnAbout(wxCommandEvent& event); - - void OnGradient(wxCommandEvent& event); - void OnManagerFlag(wxCommandEvent& event); - void OnUpdateUI(wxUpdateUIEvent& event); - + void OnEraseBackground(wxEraseEvent& evt); + void OnSize(wxSizeEvent& evt); + + void OnCreateTree(wxCommandEvent& evt); + void OnCreateGrid(wxCommandEvent& evt); + void OnCreateHTML(wxCommandEvent& evt); + void OnCreateNotebook(wxCommandEvent& evt); + void OnCreateText(wxCommandEvent& evt); + void OnCreateSizeReport(wxCommandEvent& evt); + void OnChangeContentPane(wxCommandEvent& evt); + void OnCreatePerspective(wxCommandEvent& evt); + void OnCopyPerspectiveCode(wxCommandEvent& evt); + void OnRestorePerspective(wxCommandEvent& evt); + void OnSettings(wxCommandEvent& evt); + void OnExit(wxCommandEvent& evt); + void OnAbout(wxCommandEvent& evt); + + void OnGradient(wxCommandEvent& evt); + void OnManagerFlag(wxCommandEvent& evt); + void OnUpdateUI(wxUpdateUIEvent& evt); + + void OnPaneClose(wxFrameManagerEvent& evt); + private: wxFrameManager m_mgr; wxArrayString m_perspectives; wxMenu* m_perspectives_menu; - DECLARE_EVENT_TABLE(); + DECLARE_EVENT_TABLE() }; - // -- wxSizeReportCtrl -- // (a utility control that always reports it's client size) @@ -203,7 +217,7 @@ private: wxFrameManager* m_mgr; - DECLARE_EVENT_TABLE(); + DECLARE_EVENT_TABLE() }; BEGIN_EVENT_TABLE(wxSizeReportCtrl, wxControl) @@ -213,10 +227,6 @@ BEGIN_EVENT_TABLE(wxSizeReportCtrl, wxControl) END_EVENT_TABLE() - - - - class SettingsPanel : public wxPanel { enum @@ -516,16 +526,11 @@ BEGIN_EVENT_TABLE(SettingsPanel, wxPanel) END_EVENT_TABLE() - - - - - bool MyApp::OnInit() { wxFrame* frame = new MyFrame(NULL, wxID_ANY, - wxT("wxAUI 0.9.2 Test Application"), + wxT("wxAUI Sample Application"), wxDefaultPosition, wxSize(800, 600)); SetTopWindow(frame); @@ -534,8 +539,6 @@ bool MyApp::OnInit() return true; } - - BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_ERASE_BACKGROUND(MyFrame::OnEraseBackground) EVT_SIZE(MyFrame::OnSize) @@ -549,6 +552,8 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(ID_AllowFloating, MyFrame::OnManagerFlag) EVT_MENU(ID_TransparentHint, MyFrame::OnManagerFlag) EVT_MENU(ID_TransparentHintFade, MyFrame::OnManagerFlag) + EVT_MENU(ID_DisableVenetian, MyFrame::OnManagerFlag) + EVT_MENU(ID_DisableVenetianFade, MyFrame::OnManagerFlag) EVT_MENU(ID_TransparentDrag, MyFrame::OnManagerFlag) EVT_MENU(ID_AllowActivePane, MyFrame::OnManagerFlag) EVT_MENU(ID_NoGradient, MyFrame::OnGradient) @@ -560,21 +565,24 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame) EVT_MENU(ID_TextContent, MyFrame::OnChangeContentPane) EVT_MENU(ID_SizeReportContent, MyFrame::OnChangeContentPane) EVT_MENU(ID_HTMLContent, MyFrame::OnChangeContentPane) + EVT_MENU(ID_NotebookContent, MyFrame::OnChangeContentPane) EVT_MENU(wxID_EXIT, MyFrame::OnExit) EVT_MENU(wxID_ABOUT, MyFrame::OnAbout) EVT_UPDATE_UI(ID_AllowFloating, MyFrame::OnUpdateUI) EVT_UPDATE_UI(ID_TransparentHint, MyFrame::OnUpdateUI) EVT_UPDATE_UI(ID_TransparentHintFade, MyFrame::OnUpdateUI) + EVT_UPDATE_UI(ID_DisableVenetian, MyFrame::OnUpdateUI) + EVT_UPDATE_UI(ID_DisableVenetianFade, MyFrame::OnUpdateUI) EVT_UPDATE_UI(ID_TransparentDrag, MyFrame::OnUpdateUI) EVT_UPDATE_UI(ID_NoGradient, MyFrame::OnUpdateUI) EVT_UPDATE_UI(ID_VerticalGradient, MyFrame::OnUpdateUI) EVT_UPDATE_UI(ID_HorizontalGradient, MyFrame::OnUpdateUI) EVT_MENU_RANGE(MyFrame::ID_FirstPerspective, MyFrame::ID_FirstPerspective+1000, MyFrame::OnRestorePerspective) + EVT_AUI_PANECLOSE(MyFrame::OnPaneClose) END_EVENT_TABLE() - MyFrame::MyFrame(wxWindow* parent, wxWindowID id, const wxString& title, @@ -584,7 +592,7 @@ MyFrame::MyFrame(wxWindow* parent, : wxFrame(parent, id, title, pos, size, style) { // tell wxFrameManager to manage this frame - m_mgr.SetFrame(this); + m_mgr.SetManagedWindow(this); // set frame icon SetIcon(wxIcon(sample_xpm)); @@ -606,12 +614,15 @@ MyFrame::MyFrame(wxWindow* parent, view_menu->Append(ID_TextContent, _("Use a Text Control for the Content Pane")); view_menu->Append(ID_HTMLContent, _("Use an HTML Control for the Content Pane")); view_menu->Append(ID_TreeContent, _("Use a Tree Control for the Content Pane")); + view_menu->Append(ID_NotebookContent, _("Use a AUI wxMultiNotebook control for the Content Pane")); view_menu->Append(ID_SizeReportContent, _("Use a Size Reporter for the Content Pane")); wxMenu* options_menu = new wxMenu; options_menu->AppendCheckItem(ID_AllowFloating, _("Allow Floating")); options_menu->AppendCheckItem(ID_TransparentHint, _("Transparent Hint")); options_menu->AppendCheckItem(ID_TransparentHintFade, _("Transparent Hint Fade-in")); + options_menu->AppendCheckItem(ID_DisableVenetian, _("Disable Venetian Blinds Hint")); + options_menu->AppendCheckItem(ID_DisableVenetianFade, _("Disable Venetian Blinds Hint Fade-in")); options_menu->AppendCheckItem(ID_TransparentDrag, _("Transparent Drag")); options_menu->AppendCheckItem(ID_AllowActivePane, _("Allow Active Pane")); options_menu->AppendSeparator(); @@ -661,7 +672,6 @@ MyFrame::MyFrame(wxWindow* parent, tb1->Realize(); - wxToolBar* tb2 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_FLAT | wxTB_NODIVIDER); tb2->SetToolBitmapSize(wxSize(16,16)); @@ -696,7 +706,6 @@ MyFrame::MyFrame(wxWindow* parent, tb3->Realize(); - wxToolBar* tb4 = new wxToolBar(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxTB_FLAT | wxTB_NODIVIDER | wxTB_HORZ_TEXT); tb4->SetToolBitmapSize(wxSize(16,16)); @@ -743,8 +752,8 @@ MyFrame::MyFrame(wxWindow* parent, Left()); m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). - Name(wxT("test5")).Caption(wxT("Pane Caption")). - Right()); + Name(wxT("test5")).Caption(wxT("No Close Button")). + Right().CloseButton(false)); m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). Name(wxT("test6")).Caption(wxT("Client Size Reporter")). @@ -763,8 +772,9 @@ MyFrame::MyFrame(wxWindow* parent, BestSize(wxSize(200,100)).MinSize(wxSize(200,100)). Bottom().Layer(1)); - m_mgr.AddPane(CreateTextCtrl(), wxPaneInfo(). - Name(wxT("test10")).Caption(wxT("Text Pane")). + wxWindow* wnd10 = CreateTextCtrl(wxT("This pane will prompt the user before hiding.")); + m_mgr.AddPane(wnd10, wxPaneInfo(). + Name(wxT("test10")).Caption(wxT("Text Pane with Hide Prompt")). Bottom().Layer(1).Position(1)); m_mgr.AddPane(CreateSizeReportCtrl(), wxPaneInfo(). @@ -793,6 +803,9 @@ MyFrame::MyFrame(wxWindow* parent, m_mgr.AddPane(CreateHTMLCtrl(), wxPaneInfo().Name(wxT("html_content")). CenterPane()); + m_mgr.AddPane(CreateNotebook(), wxPaneInfo().Name(wxT("notebook_content")). + CenterPane().PaneBorder(false)); + // add the toolbars to the manager m_mgr.AddPane(tb1, wxPaneInfo(). @@ -816,18 +829,17 @@ MyFrame::MyFrame(wxWindow* parent, LeftDockable(false).RightDockable(false)); m_mgr.AddPane(tb5, wxPaneInfo(). - Name(wxT("tb4")).Caption(wxT("Sample Vertical Toolbar")). + Name(wxT("tb5")).Caption(wxT("Sample Vertical Toolbar")). ToolbarPane().Left(). GripperTop(). TopDockable(false).BottomDockable(false)); m_mgr.AddPane(new wxButton(this, wxID_ANY, _("Test Button")), - wxPaneInfo().Name(wxT("tb5")). + wxPaneInfo().Name(wxT("tb6")). ToolbarPane().Top().Row(2).Position(1). LeftDockable(false).RightDockable(false)); - // make some default perspectives wxString perspective_all = m_mgr.SavePerspective(); @@ -838,7 +850,7 @@ MyFrame::MyFrame(wxWindow* parent, if (!all_panes.Item(i).IsToolbar()) all_panes.Item(i).Hide(); m_mgr.GetPane(wxT("tb1")).Hide(); - m_mgr.GetPane(wxT("tb5")).Hide(); + m_mgr.GetPane(wxT("tb6")).Hide(); m_mgr.GetPane(wxT("test8")).Show().Left().Layer(0).Row(0).Position(0); m_mgr.GetPane(wxT("test10")).Show().Bottom().Layer(0).Row(0).Position(0); m_mgr.GetPane(wxT("html_content")).Show(); @@ -866,7 +878,6 @@ void MyFrame::DoUpdate() m_mgr.Update(); } - void MyFrame::OnEraseBackground(wxEraseEvent& event) { event.Skip(); @@ -888,7 +899,6 @@ void MyFrame::OnSettings(wxCommandEvent& WXUNUSED(event)) m_mgr.Update(); } - void MyFrame::OnGradient(wxCommandEvent& event) { int gradient = 0; @@ -908,12 +918,12 @@ void MyFrame::OnManagerFlag(wxCommandEvent& event) { unsigned int flag = 0; -#ifndef __WXMSW__ +#if !defined(__WXMSW__) && !defined(__WXMAC__) && !defined(__WXGTK__) if (event.GetId() == ID_TransparentDrag || event.GetId() == ID_TransparentHint || event.GetId() == ID_TransparentHintFade) { - wxMessageBox(wxT("This option is presently only available on wxMSW")); + wxMessageBox(wxT("This option is presently only available on wxGTK, wxMSW and wxMac")); return; } #endif @@ -924,6 +934,8 @@ void MyFrame::OnManagerFlag(wxCommandEvent& event) case ID_TransparentDrag: flag = wxAUI_MGR_TRANSPARENT_DRAG; break; case ID_TransparentHint: flag = wxAUI_MGR_TRANSPARENT_HINT; break; case ID_TransparentHintFade: flag = wxAUI_MGR_TRANSPARENT_HINT_FADE; break; + case ID_DisableVenetian: flag = wxAUI_MGR_DISABLE_VENETIAN_BLINDS; break; + case ID_DisableVenetianFade: flag = wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE; break; case ID_AllowActivePane: flag = wxAUI_MGR_ALLOW_ACTIVE_PANE; break; } m_mgr.SetFlags(m_mgr.GetFlags() ^ flag); @@ -937,26 +949,45 @@ void MyFrame::OnUpdateUI(wxUpdateUIEvent& event) switch (event.GetId()) { case ID_NoGradient: - event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_NONE ? true : false); + event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_NONE); break; case ID_VerticalGradient: - event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_VERTICAL ? true : false); + event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_VERTICAL); break; case ID_HorizontalGradient: - event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_HORIZONTAL ? true : false); + event.Check(m_mgr.GetArtProvider()->GetMetric(wxAUI_ART_GRADIENT_TYPE) == wxAUI_GRADIENT_HORIZONTAL); break; case ID_AllowFloating: - event.Check(flags & wxAUI_MGR_ALLOW_FLOATING ? true : false); + event.Check((flags & wxAUI_MGR_ALLOW_FLOATING) != 0); break; case ID_TransparentDrag: - event.Check(flags & wxAUI_MGR_TRANSPARENT_DRAG ? true : false); + event.Check((flags & wxAUI_MGR_TRANSPARENT_DRAG) != 0); break; case ID_TransparentHint: - event.Check(flags & wxAUI_MGR_TRANSPARENT_HINT ? true : false); + event.Check((flags & wxAUI_MGR_TRANSPARENT_HINT) != 0); break; case ID_TransparentHintFade: - event.Check(flags & wxAUI_MGR_TRANSPARENT_HINT_FADE ? true : false); + event.Check((flags & wxAUI_MGR_TRANSPARENT_HINT_FADE) != 0); + break; + case ID_DisableVenetian: + event.Check((flags & wxAUI_MGR_DISABLE_VENETIAN_BLINDS) != 0); break; + case ID_DisableVenetianFade: + event.Check((flags & wxAUI_MGR_DISABLE_VENETIAN_BLINDS_FADE) != 0); + break; + } +} + +void MyFrame::OnPaneClose(wxFrameManagerEvent& evt) +{ + if (evt.pane->name == wxT("test10")) + { + int res = wxMessageBox(wxT("Are you sure you want to close/hide this pane?"), + wxT("wxAUI"), + wxYES_NO, + this); + if (res != wxYES) + evt.Veto(); } } @@ -965,7 +996,7 @@ void MyFrame::OnCreatePerspective(wxCommandEvent& WXUNUSED(event)) wxTextEntryDialog dlg(this, wxT("Enter a name for the new perspective:"), wxT("wxAUI Test")); - dlg.SetValue(wxString::Format(wxT("Perspective %d"), m_perspectives.GetCount()+1)); + dlg.SetValue(wxString::Format(wxT("Perspective %u"), unsigned(m_perspectives.GetCount() + 1))); if (dlg.ShowModal() != wxID_OK) return; @@ -1026,7 +1057,16 @@ void MyFrame::OnCreateGrid(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnCreateHTML(wxCommandEvent& WXUNUSED(event)) { m_mgr.AddPane(CreateHTMLCtrl(), wxPaneInfo(). - Name(wxT("Test")).Caption(wxT("Grid")). + Name(wxT("Test")).Caption(wxT("HTML Control")). + Float().FloatingPosition(GetStartPosition()). + FloatingSize(wxSize(300,200))); + m_mgr.Update(); +} + +void MyFrame::OnCreateNotebook(wxCommandEvent& WXUNUSED(event)) +{ + m_mgr.AddPane(CreateNotebook(), wxPaneInfo(). + Name(wxT("Test")).Caption(wxT("Notebook")). Float().FloatingPosition(GetStartPosition()). FloatingSize(wxSize(300,200))); m_mgr.Update(); @@ -1050,11 +1090,12 @@ void MyFrame::OnCreateSizeReport(wxCommandEvent& WXUNUSED(event)) void MyFrame::OnChangeContentPane(wxCommandEvent& event) { - m_mgr.GetPane(wxT("grid_content")).Show(event.GetId() == ID_GridContent ? true:false); - m_mgr.GetPane(wxT("text_content")).Show(event.GetId() == ID_TextContent ? true:false); - m_mgr.GetPane(wxT("tree_content")).Show(event.GetId() == ID_TreeContent ? true:false); - m_mgr.GetPane(wxT("sizereport_content")).Show(event.GetId() == ID_SizeReportContent ? true:false); - m_mgr.GetPane(wxT("html_content")).Show(event.GetId() == ID_HTMLContent ? true:false); + m_mgr.GetPane(wxT("grid_content")).Show(event.GetId() == ID_GridContent); + m_mgr.GetPane(wxT("text_content")).Show(event.GetId() == ID_TextContent); + m_mgr.GetPane(wxT("tree_content")).Show(event.GetId() == ID_TreeContent); + m_mgr.GetPane(wxT("sizereport_content")).Show(event.GetId() == ID_SizeReportContent); + m_mgr.GetPane(wxT("html_content")).Show(event.GetId() == ID_HTMLContent); + m_mgr.GetPane(wxT("notebook_content")).Show(event.GetId() == ID_NotebookContent); m_mgr.Update(); } @@ -1068,12 +1109,15 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) wxMessageBox(_("wxAUI Demo\nAn advanced window management library for wxWidgets\n(c) Copyright 2005-2006, Kirix Corporation"), _("About wxAUI Demo"), wxOK, this); } -wxTextCtrl* MyFrame::CreateTextCtrl() +wxTextCtrl* MyFrame::CreateTextCtrl(const wxString& ctrl_text) { - wxString text; static int n = 0; - text.Printf(wxT("This is text box %d"), ++n); + wxString text; + if (ctrl_text.Length() > 0) + text = ctrl_text; + else + text.Printf(wxT("This is text box %d"), ++n); return new wxTextCtrl(this,wxID_ANY, text, wxPoint(0,0), wxSize(150,90), @@ -1147,18 +1191,47 @@ wxHtmlWindow* MyFrame::CreateHTMLCtrl() return ctrl; } +wxAuiMultiNotebook* MyFrame::CreateNotebook() +{ + wxAuiMultiNotebook* ctrl = new wxAuiMultiNotebook( this, wxID_ANY, + wxDefaultPosition, wxSize(400,300), wxNO_BORDER ); + + wxPanel *panel = new wxPanel( ctrl, wxID_ANY ); + wxFlexGridSizer *flex = new wxFlexGridSizer( 2 ); + flex->AddGrowableRow( 0 ); + flex->AddGrowableRow( 3 ); + flex->AddGrowableCol( 1 ); + flex->Add( 5,5 ); flex->Add( 5,5 ); + flex->Add( new wxStaticText( panel, -1, wxT("wxTextCtrl:") ), 0, wxALL|wxALIGN_CENTRE, 5 ); + flex->Add( new wxTextCtrl( panel, -1, wxT(""), wxDefaultPosition, wxSize(100,-1)), + 1, wxALL|wxALIGN_CENTRE, 5 ); + flex->Add( new wxStaticText( panel, -1, wxT("wxSpinCtrl:") ), 0, wxALL|wxALIGN_CENTRE, 5 ); + flex->Add( new wxSpinCtrl( panel, -1, wxT("5"), wxDefaultPosition, wxSize(100,-1), + wxSP_ARROW_KEYS, 5, 50, 5 ), 0, wxALL|wxALIGN_CENTRE, 5 ); + flex->Add( 5,5 ); flex->Add( 5,5 ); + panel->SetSizer( flex ); + ctrl->AddPage( panel, wxT("wxPanel") ); + + ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some text"), + wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl I") ); + + ctrl->AddPage( new wxTextCtrl( ctrl, wxID_ANY, wxT("Some more text"), + wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxNO_BORDER) , wxT("wxTextCtrl II") ); + + return ctrl; +} wxString MyFrame::GetIntroText() { const char* text = "" - "

Welcome to wxAUI 0.9.2

" + "

Welcome to wxAUI

" "
Overview
" "

wxAUI is an Advanced User Interface library for the wxWidgets toolkit " "that allows developers to create high-quality, cross-platform user " "interfaces quickly and easily.

" "

Features

" - "

With wxAUI version 0.9.2, developers can create application frameworks with:

" + "

With wxAUI, developers can create application frameworks with:

" "