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