Classes: \helpref{wxSplitterWindow}{wxsplitterwindow}
-The following screenshot shows the appearance of a splitter window with a vertical split.
+The following screenshot shows the appearance of a splitter window with a horizontal split.
$$\image{8cm;0cm}{splitter.eps}$$
The style wxSP\_3D has been used to show a 3D border and 3D sash.
-\subsection{Example}
+\subsection{Example}\label{wxsplitterwindowexample}
The following fragment shows how to create a splitter window, creating two
subwindows and hiding one of them.
rightWindow = new MyWindow(splitter);
rightWindow->SetScrollbars(20, 20, 50, 50);
- rightWindow->Show(FALSE);
+ rightWindow->Show(false);
splitter->Initialize(leftWindow);
{
if ( splitter->IsSplit() )
splitter->Unsplit();
- leftWindow->Show(TRUE);
- rightWindow->Show(TRUE);
+ leftWindow->Show(true);
+ rightWindow->Show(true);
splitter->SplitVertically( leftWindow, rightWindow );
}
{
if ( splitter->IsSplit() )
splitter->Unsplit();
- leftWindow->Show(TRUE);
- rightWindow->Show(TRUE);
+ leftWindow->Show(true);
+ rightWindow->Show(true);
splitter->SplitHorizontally( leftWindow, rightWindow );
}