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