+ SetIcon(wxICON(sample));
+
+#if wxUSE_STATUSBAR
+ CreateStatusBar(2);
+#endif // wxUSE_STATUSBAR
+
+ // Make a menubar
+ wxMenu *splitMenu = new wxMenu;
+ splitMenu->Append(SPLIT_VERTICAL,
+ _T("Split &Vertically\tCtrl-V"),
+ _T("Split vertically"));
+ splitMenu->Append(SPLIT_HORIZONTAL,
+ _T("Split &Horizontally\tCtrl-H"),
+ _T("Split horizontally"));
+ splitMenu->Append(SPLIT_UNSPLIT,
+ _T("&Unsplit\tCtrl-U"),
+ _T("Unsplit"));
+ splitMenu->AppendSeparator();
+
+ splitMenu->AppendCheckItem(SPLIT_LIVE,
+ _T("&Live update\tCtrl-L"),
+ _T("Toggle live update mode"));
+ splitMenu->AppendCheckItem(SPLIT_BORDER,
+ _T("3D &Border"),
+ _T("Toggle wxSP_BORDER flag"));
+ splitMenu->Check(SPLIT_BORDER, true);
+ splitMenu->AppendCheckItem(SPLIT_3DSASH,
+ _T("&3D Sash"),
+ _T("Toggle wxSP_3DSASH flag"));
+ splitMenu->Check(SPLIT_3DSASH, true);
+ splitMenu->Append(SPLIT_SETPOSITION,
+ _T("Set splitter &position\tCtrl-P"),
+ _T("Set the splitter position"));
+ splitMenu->Append(SPLIT_SETMINSIZE,
+ _T("Set &min size\tCtrl-M"),
+ _T("Set minimum pane size"));
+ splitMenu->Append(SPLIT_SETGRAVITY,
+ _T("Set &gravity\tCtrl-G"),
+ _T("Set gravity of sash"));
+ splitMenu->AppendSeparator();
+
+ splitMenu->Append(SPLIT_REPLACE,
+ _T("&Replace right window"),
+ _T("Replace right window"));
+ splitMenu->AppendSeparator();
+
+ splitMenu->Append(SPLIT_QUIT, _T("E&xit\tAlt-X"), _T("Exit"));
+
+ wxMenuBar *menuBar = new wxMenuBar;
+ menuBar->Append(splitMenu, _T("&Splitter"));
+
+ SetMenuBar(menuBar);
+
+ menuBar->Check(SPLIT_LIVE, true);
+ m_splitter = new MySplitterWindow(this);
+
+ m_splitter->SetSashGravity(1.0);
+
+#if 1
+ m_left = new MyCanvas(m_splitter, true);
+ m_left->SetBackgroundColour(*wxRED);
+ m_left->SetScrollbars(20, 20, 5, 5);
+ m_left->SetCursor(wxCursor(wxCURSOR_MAGNIFIER));
+
+ m_right = new MyCanvas(m_splitter, false);
+ m_right->SetBackgroundColour(*wxCYAN);
+ m_right->SetScrollbars(20, 20, 5, 5);
+#else // for testing kbd navigation inside the splitter
+ m_left = new wxTextCtrl(m_splitter, wxID_ANY, _T("first text"));
+ m_right = new wxTextCtrl(m_splitter, wxID_ANY, _T("second text"));
+#endif
+
+ // you can also do this to start with a single window
+#if 0
+ m_right->Show(false);
+ m_splitter->Initialize(m_left);
+#else
+ // you can also try -100
+ m_splitter->SplitVertically(m_left, m_right, 100);
+#endif
+
+#if wxUSE_STATUSBAR
+ SetStatusText(_T("Min pane size = 0"), 1);
+#endif // wxUSE_STATUSBAR