]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/splitter.tex
* Stream doc.
[wxWidgets.git] / docs / latex / wx / splitter.tex
CommitLineData
a660d684
KB
1\section{\class{wxSplitterWindow}}\label{wxsplitterwindow}
2
3\overview{wxSplitterWindow overview}{wxsplitterwindowoverview}
4
5This class manages up to two subwindows. The current view can be
6split into two programmatically (perhaps from a menu command), and unsplit
7either programmatically or via the wxSplitterWindow user interface.
8
9Appropriate 3D shading for the Windows 95 user interface is an option.
10
11\wxheading{Window styles}
12
13\begin{twocollist}\itemsep=0pt
14\twocolitem{\windowstyle{wxSP\_3D}}{Draws a 3D effect border and sash.}
15\twocolitem{\windowstyle{wxSP\_BORDER}}{Draws a thin black border around the window, and a black sash.}
16\twocolitem{\windowstyle{wxSP\_NOBORDER}}{No border, and a black sash.}
17\end{twocollist}
18
19See also \helpref{window styles overview}{windowstyles}.
20
21\wxheading{Derived from}
22
23\helpref{wxWindow}{wxwindow}\\
24\helpref{wxEvtHandler}{wxevthandler}\\
25\helpref{wxObject}{wxobject}
26
27\latexignore{\rtfignore{\wxheading{Members}}}
28
29\membersection{wxSplitterWindow::wxSplitterWindow}\label{wxsplitterwindowconstr}
30
31\func{}{wxSplitterWindow}{\void}
32
33Default constructor.
34
eaaa6a06 35\func{}{wxSplitterWindow}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id}, \param{int }{x},\rtfsp
a660d684 36\param{const wxPoint\& }{point = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
eaaa6a06 37\param{long }{style=wxSP\_3D}, \param{const wxString\&}{ name = "splitterWindow"}}
a660d684
KB
38
39Constructor for creating the window.
40
41\wxheading{Parameters}
42
43\docparam{parent}{The parent of the splitter window.}
44
45\docparam{id}{The window identifier.}
46
47\docparam{pos}{The window position.}
48
49\docparam{size}{The window size.}
50
51\docparam{style}{The window style. See \helpref{wxSplitterWindow}{wxsplitterwindow}.}
52
53\docparam{name}{The window name.}
54
55\wxheading{Remarks}
56
57After using this constructor, you must create either one or two subwindows
58with the splitter window as parent, and then call one of \helpref{wxSplitterWindow::Initialize}{wxsplitterwindowinitialize},\rtfsp
59\helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically} and \helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally} in
60order to set the pane(s).
61
62You can create two windows, with one hidden when not being shown; or you can
63create and delete the second pane on demand.
64
65\wxheading{See also}
66
67\helpref{wxSplitterWindow::Initialize}{wxsplitterwindowinitialize}, \helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically},\rtfsp
68\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally},\rtfsp
69\helpref{wxSplitterWindow::Create}{wxsplitterwindowcreate}
70
71\membersection{wxSplitterWindow::\destruct{wxSplitterWindow}}
72
73\func{}{\destruct{wxSplitterWindow}}{\void}
74
75Destroys the wxSplitterWindow and its children.
76
77\membersection{wxSplitterWindow::Create}\label{wxsplitterwindowcreate}
78
eaaa6a06 79\func{bool}{Create}{\param{wxWindow*}{ parent}, \param{wxWindowID}{ id}, \param{int }{x},\rtfsp
a660d684 80\param{const wxPoint\& }{point = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize},\rtfsp
eaaa6a06 81\param{long }{style=wxSP\_3D}, \param{const wxString\&}{ name = "splitterWindow"}}
a660d684
KB
82
83Creation function, for two-step construction. See \helpref{wxSplitterWindow::wxSplitterWindow}{wxsplitterwindowconstr} for
84details.
85
86\membersection{wxSplitterWindow::GetMinimumPaneSize}\label{wxsplitterwindowgetminimumpanesize}
87
88\constfunc{int}{GetMinimumPaneSize}{\void}
89
90Returns the current minimum pane size (defaults to zero).
91
92\wxheading{See also}
93
94\helpref{wxSplitterWindow::SetMinimumPaneSize}{wxsplitterwindowsetminimumpanesize}
95
96\membersection{wxSplitterWindow::GetSashPosition}\label{wxsplitterwindowgetsashposition}
97
98\func{int}{GetSashPosition}{\void}
99
100Returns the current sash position.
101
102\wxheading{See also}
103
104\helpref{wxSplitterWindow::SetSashPosition}{wxsplitterwindowsetsashposition}
105
106\membersection{wxSplitterWindow::GetSplitMode}\label{wxsplitterwindowgetsplitmode}
107
108\constfunc{int}{GetSplitMode}{\void}
109
110Gets the split mode.
111
112\wxheading{See also}
113
114\helpref{wxSplitterWindow::SetSplitMode}{wxsplitterwindowsetsplitmode}, \helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically},\rtfsp
115\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally}.
116
117\membersection{wxSplitterWindow::GetWindow1}\label{wxsplitterwindowgetwindow1}
118
119\constfunc{wxWindow*}{GetWindow1}{\void}
120
121Returns the left/top or only pane.
122
123\membersection{wxSplitterWindow::GetWindow2}\label{wxsplitterwindowgetwindow2}
124
125\constfunc{wxWindow*}{GetWindow2}{\void}
126
127Returns the right/bottom pane.
128
129\membersection{wxSplitterWindow::Initialize}\label{wxsplitterwindowinitialize}
130
131\func{void}{Initialize}{\param{wxWindow* }{window}}
132
133Initializes the splitter window to have one pane.
134
135\wxheading{Parameters}
136
137\docparam{window}{The pane for the unsplit window.}
138
139\wxheading{Remarks}
140
141This should be called if you wish to initially view only a single pane in the splitter window.
142
143\wxheading{See also}
144
145\helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically},\rtfsp
4b5f3fe6 146\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally}
a660d684
KB
147
148\membersection{wxSplitterWindow::IsSplit}\label{wxsplitterwindowissplit}
149
150\constfunc{bool}{IsSplit}{\void}
151
152Returns TRUE if the window is split, FALSE otherwise.
153
154\membersection{wxSplitterWindow::OnDoubleClickSash}\label{wxsplitterwindowondoubleclicksash}
155
156\func{virtual void}{OnDoubleClickSash}{\param{int }{x}, \param{int }{y}}
157
158Application-overridable function called when the sash is double-clicked with
159the left mouse button.
160
161\wxheading{Parameters}
162
163\docparam{x}{The x position of the mouse cursor.}
164
165\docparam{y}{The y position of the mouse cursor.}
166
167\wxheading{Remarks}
168
169The default implementation of this function calls \helpref{Unsplit}{wxsplitterwindowunsplit} if
170the minimum pane size is zero.
171
172\wxheading{See also}
173
174\helpref{wxSplitterWindow::Unsplit}{wxsplitterwindowunsplit}
175
176\membersection{wxSplitterWindow::OnUnsplit}\label{wxsplitterwindowonunsplit}
177
178\func{virtual void}{OnUnsplit}{\param{wxWindow* }{removed}}
179
180Application-overridable function called when the window is unsplit, either
181programmatically or using the wxSplitterWindow user interface.
182
183\wxheading{Parameters}
184
185\docparam{removed}{The window being removed.}
186
187\wxheading{Remarks}
188
189The default implementation of this function simply hides {\it removed}. You
190may wish to delete the window.
191
0d559d69
VZ
192\membersection{wxSplitterWindow::OnSashPositionChange}\label{wxsplitterwindowonsashpositionchange}
193
4b5f3fe6 194\func{virtual bool}{OnSashPositionChange}{\param{int }{newSashPosition}}
0d559d69
VZ
195
196Application-overridable function called when the sash position is changed by
197user. It may return FALSE to prevent the change or TRUE to allow it.
198
199\wxheading{Parameters}
200
201\docparam{newSashPosition}{The new sash position (always positive or zero)}
202
203\wxheading{Remarks}
204
205The default implementation of this function verifies that the sizes of both
206panes of the splitter are greater than minimum pane size.
207
3ad5e06b
VZ
208\membersection{wxSplitterWindow::ReplaceWindow}\label{wxsplitterwindowreplacewindow}
209
210\func{bool}{ReplaceWindow}{\param{wxWindow * }{winOld}, \param{wxWindow * }{winNew}}
211
212This function replaces one of the windows managed by the wxSplitterWindow with
213another one. It is in general better to use it instead of calling Unsplit()
214and then resplitting the window back because it will provoke much less flicker
215(if any). It is valid to call this function whether the splitter has two
216windows or only one.
217
218Both parameters should be non NULL and {\it winOld} must specify one of the
219windows managed by the splitter. If the parameters are incorrect or the window
220couldn't be replaced, FALSE is returned. Otherwise the function will return
221TRUE, but please notice that it will not delete the replaced window and you
222may wish to do it yourself.
223
a660d684
KB
224\wxheading{See also}
225
0d559d69 226\helpref{wxSplitterWindow::GetMinimumPaneSize}{wxsplitterwindowgetminimumpanesize}
a660d684 227
3ad5e06b
VZ
228\wxheading{See also}
229
230\helpref{wxSplitterWindow::Unsplit}{wxsplitterwindowunsplit}\\
231\helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically}\\
232\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally}
233
a660d684
KB
234\membersection{wxSplitterWindow::SetSashPosition}\label{wxsplitterwindowsetsashposition}
235
eaaa6a06 236\func{void}{SetSashPosition}{\param{int }{position}, \param{const bool}{ redraw = TRUE}}
a660d684
KB
237
238Sets the sash position.
239
240\wxheading{Parameters}
241
242\docparam{position}{The sash position in pixels.}
243
244\docparam{redraw}{If TRUE, resizes the panes and redraws the sash and border.}
245
246\wxheading{Remarks}
247
248Does not currently check for an out-of-range value.
249
250\wxheading{See also}
251
252\helpref{wxSplitterWindow::GetSashPosition}{wxsplitterwindowgetsashposition}
253
254\membersection{wxSplitterWindow::SetMinimumPaneSize}\label{wxsplitterwindowsetminimumpanesize}
255
eaaa6a06 256\func{void}{SetMinimumPaneSize}{\param{int }{paneSize}}
a660d684
KB
257
258Sets the minimum pane size.
259
260\wxheading{Parameters}
261
262\docparam{paneSize}{Minimum pane size in pixels.}
263
264\wxheading{Remarks}
265
266The default minimum pane size is zero, which means that either pane can be reduced to zero by dragging
267the sash, thus removing one of the panes. To prevent this behaviour (and veto out-of-range sash dragging),
268set a minimum size, for example 20 pixels.
269
270\wxheading{See also}
271
272\helpref{wxSplitterWindow::GetMinimumPaneSize}{wxsplitterwindowgetminimumpanesize}
273
274\membersection{wxSplitterWindow::SetSplitMode}\label{wxsplitterwindowsetsplitmode}
275
eaaa6a06 276\func{void}{SetSplitMode}{\param{int }{mode}}
a660d684
KB
277
278Sets the split mode.
279
280\wxheading{Parameters}
281
282\docparam{mode}{Can be wxSPLIT\_VERTICAL or wxSPLIT\_HORIZONTAL.}
283
284\wxheading{Remarks}
285
286Only sets the internal variable; does not update the display.
287
288\wxheading{See also}
289
290\helpref{wxSplitterWindow::GetSplitMode}{wxsplitterwindowgetsplitmode}, \helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically},\rtfsp
291\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally}.
292
293\membersection{wxSplitterWindow::SplitHorizontally}\label{wxsplitterwindowsplithorizontally}
294
295\func{bool}{SplitHorizontally}{\param{wxWindow* }{window1}, \param{wxWindow* }{window2},
0d559d69 296 \param{int}{ sashPosition = 0}}
a660d684
KB
297
298Initializes the top and bottom panes of the splitter window.
299
300\wxheading{Parameters}
301
302\docparam{window1}{The top pane.}
303
304\docparam{window2}{The bottom pane.}
305
0d559d69
VZ
306\docparam{sashPosition}{The initial position of the sash. If this value is
307positive, it specifies the size of the upper pane. If it's negative, it's
308absolute value gives the size of the lower pane. Finally, specify 0 (default)
309to choose the default position (half of the total window height).}
a660d684
KB
310
311\wxheading{Return value}
312
313TRUE if successful, FALSE otherwise (the window was already split).
314
315\wxheading{Remarks}
316
0d559d69
VZ
317This should be called if you wish to initially view two panes. It can also be
318called at any subsequent time, but the application should check that the
319window is not currently split using \helpref{IsSplit}{wxsplitterwindowissplit}.
a660d684
KB
320
321\wxheading{See also}
322
323\helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically}, \helpref{wxSplitterWindow::IsSplit}{wxsplitterwindowissplit},\rtfsp
4b5f3fe6 324\helpref{wxSplitterWindow::Unsplit}{wxsplitterwindowunsplit}
a660d684
KB
325
326\membersection{wxSplitterWindow::SplitVertically}\label{wxsplitterwindowsplitvertically}
327
328\func{bool}{SplitVertically}{\param{wxWindow* }{window1}, \param{wxWindow* }{window2},
0d559d69 329 \param{int}{ sashPosition = 0}}
a660d684
KB
330
331Initializes the left and right panes of the splitter window.
332
333\wxheading{Parameters}
334
335\docparam{window1}{The left pane.}
336
337\docparam{window2}{The right pane.}
338
0d559d69
VZ
339\docparam{sashPosition}{The initial position of the sash. If this value is
340positive, it specifies the size of the left pane. If it's negative, it's
341absolute value gives the size of the right pane. Finally, specify 0 (default)
342to choose the default position (half of the total window width).}
a660d684
KB
343
344\wxheading{Return value}
345
346TRUE if successful, FALSE otherwise (the window was already split).
347
348\wxheading{Remarks}
349
350This should be called if you wish to initially view two panes. It can also be called at any subsequent time,
351but the application should check that the window is not currently split using \helpref{IsSplit}{wxsplitterwindowissplit}.
352
353\wxheading{See also}
354
355\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally}, \helpref{wxSplitterWindow::IsSplit}{wxsplitterwindowissplit},\rtfsp
356\helpref{wxSplitterWindow::Unsplit}{wxsplitterwindowunsplit}.
357
358\membersection{wxSplitterWindow::Unsplit}\label{wxsplitterwindowunsplit}
359
360\func{bool}{Unsplit}{\param{wxWindow* }{toRemove = NULL}}
361
362Unsplits the window.
363
364\wxheading{Parameters}
365
366\docparam{toRemove}{The pane to remove, or NULL to remove the right or bottom pane.}
367
368\wxheading{Return value}
369
370TRUE if successful, FALSE otherwise (the window was not split).
371
372\wxheading{Remarks}
373
374This call will not actually delete the pane being removed; it calls \helpref{OnUnsplit}{wxsplitterwindowonunsplit}\rtfsp
375which can be overridden for the desired behaviour. By default, the pane being removed is hidden.
376
377\wxheading{See also}
378
379\helpref{wxSplitterWindow::SplitHorizontally}{wxsplitterwindowsplithorizontally}, \helpref{wxSplitterWindow::SplitVertically}{wxsplitterwindowsplitvertically},\rtfsp
380\helpref{wxSplitterWindow::IsSplit}{wxsplitterwindowissplit}, \helpref{wxSplitterWindow::OnUnsplit}{wxsplitterwindowonunsplit}
381
382
383