]> git.saurik.com Git - wxWidgets.git/blame - interface/wx/splitter.h
Remove non-existent wxPGChoices methods from the documentation.
[wxWidgets.git] / interface / wx / splitter.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: splitter.h
e54c96f1 3// Purpose: interface of wxSplitterWindow
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
526954c5 6// Licence: wxWindows licence
23324ae1
FM
7/////////////////////////////////////////////////////////////////////////////
8
8ff9b17d 9
7106fc46
RD
10#define wxSP_NOBORDER 0x0000
11#define wxSP_THIN_SASH 0x0000 // NB: the default is 3D sash
12#define wxSP_NOSASH 0x0010
13#define wxSP_PERMIT_UNSPLIT 0x0040
14#define wxSP_LIVE_UPDATE 0x0080
15#define wxSP_3DSASH 0x0100
16#define wxSP_3DBORDER 0x0200
17#define wxSP_NO_XP_THEME 0x0400
18#define wxSP_BORDER wxSP_3DBORDER
19#define wxSP_3D (wxSP_3DBORDER | wxSP_3DSASH)
20
21
8ff9b17d
RD
22enum wxSplitMode
23{
24 wxSPLIT_HORIZONTAL = 1,
25 wxSPLIT_VERTICAL
26};
27
28enum
29{
30 wxSPLIT_DRAG_NONE,
31 wxSPLIT_DRAG_DRAGGING,
32 wxSPLIT_DRAG_LEFT_DOWN
33};
34
23324ae1
FM
35/**
36 @class wxSplitterWindow
7c913512 37
e725ba4f
FM
38 This class manages up to two subwindows. The current view can be split
39 into two programmatically (perhaps from a menu command), and unsplit
23324ae1 40 either programmatically or via the wxSplitterWindow user interface.
7c913512 41
23324ae1 42 @beginStyleTable
8c6791e4 43 @style{wxSP_3D}
23324ae1 44 Draws a 3D effect border and sash.
278f584f
VZ
45 @style{wxSP_THIN_SASH}
46 Draws a thin sash.
8c6791e4 47 @style{wxSP_3DSASH}
278f584f 48 Draws a 3D effect sash (part of default style).
8c6791e4 49 @style{wxSP_3DBORDER}
23324ae1 50 Synonym for wxSP_BORDER.
8c6791e4 51 @style{wxSP_BORDER}
23324ae1 52 Draws a standard border.
8c6791e4 53 @style{wxSP_NOBORDER}
23324ae1 54 No border (default).
8c6791e4 55 @style{wxSP_NO_XP_THEME}
23324ae1
FM
56 Under Windows XP, switches off the attempt to draw the splitter
57 using Windows XP theming, so the borders and sash will take on the
58 pre-XP look.
8c6791e4 59 @style{wxSP_PERMIT_UNSPLIT}
e725ba4f 60 Always allow to unsplit, even with the minimum pane size other than zero.
8c6791e4 61 @style{wxSP_LIVE_UPDATE}
23324ae1
FM
62 Don't draw XOR line but resize the child windows immediately.
63 @endStyleTable
7c913512 64
e725ba4f 65
3051a44a 66 @beginEventEmissionTable{wxSplitterEvent}
e725ba4f
FM
67 @event{EVT_SPLITTER_SASH_POS_CHANGING(id, func)}
68 The sash position is in the process of being changed.
69 May be used to modify the position of the tracking bar to properly
70 reflect the position that would be set if the drag were to be completed
3a194bda 71 at this point. Processes a @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event.
e725ba4f
FM
72 @event{EVT_SPLITTER_SASH_POS_CHANGED(id, func)}
73 The sash position was changed. May be used to modify the sash position
74 before it is set, or to prevent the change from taking place.
3a194bda 75 Processes a @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event.
e725ba4f 76 @event{EVT_SPLITTER_UNSPLIT(id, func)}
3a194bda 77 The splitter has been just unsplit. Processes a @c wxEVT_COMMAND_SPLITTER_UNSPLIT event.
e725ba4f
FM
78 @event{EVT_SPLITTER_DCLICK(id, func)}
79 The sash was double clicked. The default behaviour is to unsplit the
80 window when this happens (unless the minimum pane size has been set
3a194bda 81 to a value greater than zero). Processes a @c wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event.
e725ba4f
FM
82 @endEventTable
83
84
23324ae1
FM
85 @library{wxcore}
86 @category{miscwnd}
7c913512 87
e725ba4f 88 @see wxSplitterEvent, @ref overview_splitterwindow
23324ae1
FM
89*/
90class wxSplitterWindow : public wxWindow
91{
92public:
671600d8
RR
93 /**
94 Default constructor
95 */
96 wxSplitterWindow();
e725ba4f 97
23324ae1
FM
98 /**
99 Constructor for creating the window.
3c4f71cc 100
7c913512 101 @param parent
4cc4bfaf 102 The parent of the splitter window.
7c913512 103 @param id
4cc4bfaf 104 The window identifier.
7c913512 105 @param pos
4cc4bfaf 106 The window position.
7c913512 107 @param size
4cc4bfaf 108 The window size.
7c913512 109 @param style
4cc4bfaf 110 The window style. See wxSplitterWindow.
7c913512 111 @param name
4cc4bfaf 112 The window name.
3c4f71cc 113
e725ba4f
FM
114 @remarks
115 After using this constructor, you must create either one or two
116 subwindows with the splitter window as parent, and then call one
117 of Initialize(), SplitVertically() and SplitHorizontally() in order
118 to set the pane(s).
119 You can create two windows, with one hidden when not being shown;
120 or you can create and delete the second pane on demand.
3c4f71cc 121
e725ba4f 122 @see Initialize(), SplitVertically(), SplitHorizontally(), Create()
23324ae1 123 */
11e3af6e 124 wxSplitterWindow(wxWindow* parent, wxWindowID id = wxID_ANY,
e725ba4f 125 const wxPoint& pos = wxDefaultPosition,
7c913512 126 const wxSize& size = wxDefaultSize,
4cc4bfaf 127 long style = wxSP_3D,
7c913512 128 const wxString& name = "splitterWindow");
23324ae1
FM
129
130 /**
131 Destroys the wxSplitterWindow and its children.
132 */
adaaa686 133 virtual ~wxSplitterWindow();
23324ae1
FM
134
135 /**
e725ba4f
FM
136 Creation function, for two-step construction.
137 See wxSplitterWindow() for details.
23324ae1 138 */
5267aefd 139 bool Create(wxWindow* parent, wxWindowID id = wxID_ANY,
23324ae1 140 const wxPoint& point = wxDefaultPosition,
5267aefd
FM
141 const wxSize& size = wxDefaultSize, long style = wxSP_3D,
142 const wxString& name = "splitter");
23324ae1
FM
143
144 /**
145 Returns the current minimum pane size (defaults to zero).
3c4f71cc 146
4cc4bfaf 147 @see SetMinimumPaneSize()
23324ae1 148 */
328f5751 149 int GetMinimumPaneSize() const;
23324ae1
FM
150
151 /**
152 Returns the current sash gravity.
3c4f71cc 153
4cc4bfaf 154 @see SetSashGravity()
23324ae1 155 */
adaaa686 156 double GetSashGravity() const;
23324ae1
FM
157
158 /**
159 Returns the current sash position.
3c4f71cc 160
4cc4bfaf 161 @see SetSashPosition()
23324ae1 162 */
adaaa686 163 int GetSashPosition() const;
23324ae1 164
26696222
VZ
165 /**
166 Returns the sash size in pixels.
167
168 The size of the sash is its width for a vertically split window and its
169 height for a horizontally split one. Its other direction is the same as
170 the client size of the window in the corresponding direction.
171
172 The sash size is platform-dependent because it conforms to the current
173 platform look-and-feel and cannot be changed.
174 */
175 int GetSashSize() const;
176
23324ae1
FM
177 /**
178 Gets the split mode.
3c4f71cc 179
e725ba4f 180 @see SetSplitMode(), SplitVertically(), SplitHorizontally().
23324ae1 181 */
5267aefd 182 wxSplitMode GetSplitMode() const;
23324ae1
FM
183
184 /**
185 Returns the left/top or only pane.
186 */
328f5751 187 wxWindow* GetWindow1() const;
23324ae1
FM
188
189 /**
190 Returns the right/bottom pane.
191 */
328f5751 192 wxWindow* GetWindow2() const;
23324ae1
FM
193
194 /**
e725ba4f
FM
195 Initializes the splitter window to have one pane.
196 The child window is shown if it is currently hidden.
3c4f71cc 197
7c913512 198 @param window
4cc4bfaf 199 The pane for the unsplit window.
3c4f71cc 200
23324ae1 201 @remarks This should be called if you wish to initially view only a
4cc4bfaf 202 single pane in the splitter window.
3c4f71cc 203
4cc4bfaf 204 @see SplitVertically(), SplitHorizontally()
23324ae1
FM
205 */
206 void Initialize(wxWindow* window);
207
208 /**
209 Returns @true if the window is split, @false otherwise.
210 */
328f5751 211 bool IsSplit() const;
23324ae1
FM
212
213 /**
214 Application-overridable function called when the sash is double-clicked with
215 the left mouse button.
3c4f71cc 216
7c913512 217 @param x
4cc4bfaf 218 The x position of the mouse cursor.
7c913512 219 @param y
4cc4bfaf 220 The y position of the mouse cursor.
3c4f71cc 221
23324ae1 222 @remarks The default implementation of this function calls Unsplit if the
4cc4bfaf 223 minimum pane size is zero.
3c4f71cc 224
4cc4bfaf 225 @see Unsplit()
23324ae1
FM
226 */
227 virtual void OnDoubleClickSash(int x, int y);
228
229 /**
7c913512 230 Application-overridable function called when the sash position is changed by
23324ae1 231 user. It may return @false to prevent the change or @true to allow it.
3c4f71cc 232
7c913512 233 @param newSashPosition
4cc4bfaf 234 The new sash position (always positive or zero)
3c4f71cc 235
23324ae1 236 @remarks The default implementation of this function verifies that the
4cc4bfaf
FM
237 sizes of both panes of the splitter are greater than
238 minimum pane size.
23324ae1
FM
239 */
240 virtual bool OnSashPositionChange(int newSashPosition);
241
242 /**
243 Application-overridable function called when the window is unsplit, either
244 programmatically or using the wxSplitterWindow user interface.
3c4f71cc 245
7c913512 246 @param removed
4cc4bfaf 247 The window being removed.
3c4f71cc 248
23324ae1 249 @remarks The default implementation of this function simply hides
4cc4bfaf 250 removed. You may wish to delete the window.
23324ae1
FM
251 */
252 virtual void OnUnsplit(wxWindow* removed);
253
254 /**
255 This function replaces one of the windows managed by the wxSplitterWindow with
256 another one. It is in general better to use it instead of calling Unsplit()
257 and then resplitting the window back because it will provoke much less flicker
258 (if any). It is valid to call this function whether the splitter has two
259 windows or only one.
e725ba4f 260
4cc4bfaf 261 Both parameters should be non-@NULL and @a winOld must specify one of the
23324ae1
FM
262 windows managed by the splitter. If the parameters are incorrect or the window
263 couldn't be replaced, @false is returned. Otherwise the function will return
264 @true, but please notice that it will not delete the replaced window and you
265 may wish to do it yourself.
3c4f71cc 266
4cc4bfaf 267 @see GetMinimumPaneSize()
23324ae1 268 */
4cc4bfaf 269 bool ReplaceWindow(wxWindow* winOld, wxWindow* winNew);
23324ae1
FM
270
271 /**
272 Sets the minimum pane size.
3c4f71cc 273
7c913512 274 @param paneSize
4cc4bfaf 275 Minimum pane size in pixels.
3c4f71cc 276
23324ae1 277 @remarks The default minimum pane size is zero, which means that either
4cc4bfaf
FM
278 pane can be reduced to zero by dragging the sash, thus
279 removing one of the panes. To prevent this behaviour
280 (and veto out-of-range sash dragging), set a minimum
281 size, for example 20 pixels. If the wxSP_PERMIT_UNSPLIT
282 style is used when a splitter window is created, the
283 window may be unsplit even if minimum size is non-zero.
3c4f71cc 284
4cc4bfaf 285 @see GetMinimumPaneSize()
23324ae1
FM
286 */
287 void SetMinimumPaneSize(int paneSize);
288
289 /**
7c913512 290 Sets the sash gravity.
3c4f71cc 291
7c913512 292 @param gravity
4cc4bfaf 293 The sash gravity. Value between 0.0 and 1.0.
3c4f71cc 294
e725ba4f
FM
295 @remarks
296 Gravity is real factor which controls position of sash while resizing
297 wxSplitterWindow. Gravity tells wxSplitterWindow how much will left/top
298 window grow while resizing.
299 Example values:
300 - 0.0: only the bottom/right window is automatically resized
301 - 0.5: both windows grow by equal size
302 - 1.0: only left/top window grows
303 Gravity should be a real value between 0.0 and 1.0.
304 Default value of sash gravity is 0.0.
305 That value is compatible with previous (before gravity was introduced)
306 behaviour of wxSplitterWindow.
307
4cc4bfaf 308 @see GetSashGravity()
23324ae1
FM
309 */
310 void SetSashGravity(double gravity);
311
312 /**
313 Sets the sash position.
3c4f71cc 314
7c913512 315 @param position
4cc4bfaf 316 The sash position in pixels.
7c913512 317 @param redraw
4cc4bfaf 318 If @true, resizes the panes and redraws the sash and border.
3c4f71cc 319
23324ae1 320 @remarks Does not currently check for an out-of-range value.
3c4f71cc 321
4cc4bfaf 322 @see GetSashPosition()
23324ae1 323 */
5267aefd 324 void SetSashPosition(int position, bool redraw = true);
23324ae1 325
23324ae1
FM
326 /**
327 Sets the split mode.
3c4f71cc 328
7c913512 329 @param mode
4cc4bfaf 330 Can be wxSPLIT_VERTICAL or wxSPLIT_HORIZONTAL.
3c4f71cc 331
23324ae1 332 @remarks Only sets the internal variable; does not update the display.
3c4f71cc 333
e725ba4f 334 @see GetSplitMode(), SplitVertically(), SplitHorizontally().
23324ae1
FM
335 */
336 void SetSplitMode(int mode);
337
338 /**
e725ba4f
FM
339 Initializes the top and bottom panes of the splitter window.
340 The child windows are shown if they are currently hidden.
3c4f71cc 341
7c913512 342 @param window1
4cc4bfaf 343 The top pane.
7c913512 344 @param window2
4cc4bfaf 345 The bottom pane.
7c913512 346 @param sashPosition
e725ba4f
FM
347 The initial position of the sash. If this value is positive,
348 it specifies the size of the upper pane. If it is negative, its
349 absolute value gives the size of the lower pane.
350 Finally, specify 0 (default) to choose the default position
351 (half of the total window height).
3c4f71cc 352
e725ba4f 353 @return @true if successful, @false otherwise (the window was already split).
3c4f71cc 354
23324ae1 355 @remarks This should be called if you wish to initially view two panes.
e725ba4f
FM
356 It can also be called at any subsequent time, but the application
357 should check that the window is not currently split using IsSplit().
3c4f71cc 358
e725ba4f 359 @see SplitVertically(), IsSplit(), Unsplit()
23324ae1 360 */
fadc2df6
FM
361 virtual bool SplitHorizontally(wxWindow* window1, wxWindow* window2,
362 int sashPosition = 0);
23324ae1
FM
363
364 /**
e725ba4f
FM
365 Initializes the left and right panes of the splitter window.
366 The child windows are shown if they are currently hidden.
3c4f71cc 367
7c913512 368 @param window1
4cc4bfaf 369 The left pane.
7c913512 370 @param window2
4cc4bfaf 371 The right pane.
7c913512 372 @param sashPosition
e725ba4f
FM
373 The initial position of the sash. If this value is positive, it
374 specifies the size of the left pane. If it is negative, it is
375 absolute value gives the size of the right pane.
376 Finally, specify 0 (default) to choose the default position
377 (half of the total window width).
3c4f71cc 378
e725ba4f 379 @return @true if successful, @false otherwise (the window was already split).
3c4f71cc 380
23324ae1 381 @remarks This should be called if you wish to initially view two panes.
4cc4bfaf 382 It can also be called at any subsequent time, but the
e725ba4f
FM
383 application should check that the window is not currently
384 split using IsSplit().
3c4f71cc 385
e725ba4f 386 @see SplitHorizontally(), IsSplit(), Unsplit().
23324ae1 387 */
fadc2df6
FM
388 virtual bool SplitVertically(wxWindow* window1, wxWindow* window2,
389 int sashPosition = 0);
23324ae1
FM
390
391 /**
392 Unsplits the window.
3c4f71cc 393
7c913512 394 @param toRemove
4cc4bfaf 395 The pane to remove, or @NULL to remove the right or bottom pane.
3c4f71cc 396
d29a9a8a 397 @return @true if successful, @false otherwise (the window was not split).
3c4f71cc 398
23324ae1 399 @remarks This call will not actually delete the pane being removed; it
e725ba4f 400 calls OnUnsplit() which can be overridden for the desired
4cc4bfaf 401 behaviour. By default, the pane being removed is hidden.
3c4f71cc 402
e725ba4f 403 @see SplitHorizontally(), SplitVertically(), IsSplit(), OnUnsplit()
23324ae1 404 */
4cc4bfaf 405 bool Unsplit(wxWindow* toRemove = NULL);
23324ae1
FM
406
407 /**
408 Causes any pending sizing of the sash and child panes to take place
409 immediately.
e725ba4f
FM
410
411 Such resizing normally takes place in idle time, in order to wait for
412 layout to be completed. However, this can cause unacceptable flicker as
413 the panes are resized after the window has been shown.
414 To work around this, you can perform window layout (for example by
415 sending a size event to the parent window), and then call this function,
416 before showing the top-level window.
23324ae1
FM
417 */
418 void UpdateSize();
419};
420
421
e54c96f1 422
23324ae1
FM
423/**
424 @class wxSplitterEvent
7c913512 425
e725ba4f
FM
426 This class represents the events generated by a splitter control.
427
428 Also there is only one event class, the data associated to the different events
429 is not the same and so not all accessor functions may be called for each event.
430 The documentation mentions the kind of event(s) for which the given accessor
23324ae1
FM
431 function makes sense: calling it for other types of events will result
432 in assert failure (in debug mode) and will return meaningless results.
7c913512 433
e725ba4f
FM
434 @beginEventTable{wxSplitterEvent}
435 @event{EVT_SPLITTER_SASH_POS_CHANGING(id, func)}
436 The sash position is in the process of being changed.
437 May be used to modify the position of the tracking bar to properly
438 reflect the position that would be set if the drag were to be completed
3a194bda 439 at this point. Processes a @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING event.
e725ba4f
FM
440 @event{EVT_SPLITTER_SASH_POS_CHANGED(id, func)}
441 The sash position was changed. May be used to modify the sash position
442 before it is set, or to prevent the change from taking place.
3a194bda 443 Processes a @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED event.
e725ba4f 444 @event{EVT_SPLITTER_UNSPLIT(id, func)}
3a194bda 445 The splitter has been just unsplit. Processes a @c wxEVT_COMMAND_SPLITTER_UNSPLIT event.
e725ba4f
FM
446 @event{EVT_SPLITTER_DCLICK(id, func)}
447 The sash was double clicked. The default behaviour is to unsplit the
448 window when this happens (unless the minimum pane size has been set
3a194bda 449 to a value greater than zero). Processes a @c wxEVT_COMMAND_SPLITTER_DOUBLECLICKED event.
e725ba4f
FM
450 @endEventTable
451
23324ae1
FM
452 @library{wxcore}
453 @category{events}
7c913512 454
830b7aa7 455 @see wxSplitterWindow, @ref overview_events
23324ae1
FM
456*/
457class wxSplitterEvent : public wxNotifyEvent
458{
459public:
460 /**
461 Constructor. Used internally by wxWidgets only.
462 */
4cc4bfaf
FM
463 wxSplitterEvent(wxEventType eventType = wxEVT_NULL,
464 wxSplitterWindow* splitter = NULL);
23324ae1
FM
465
466 /**
467 Returns the new sash position.
e725ba4f 468
23324ae1 469 May only be called while processing
e725ba4f
FM
470 @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING and
471 @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED events.
23324ae1 472 */
328f5751 473 int GetSashPosition() const;
23324ae1
FM
474
475 /**
476 Returns a pointer to the window being removed when a splitter window
477 is unsplit.
e725ba4f 478
23324ae1 479 May only be called while processing
e725ba4f 480 @c wxEVT_COMMAND_SPLITTER_UNSPLIT events.
23324ae1 481 */
328f5751 482 wxWindow* GetWindowBeingRemoved() const;
23324ae1
FM
483
484 /**
485 Returns the x coordinate of the double-click point.
e725ba4f 486
23324ae1 487 May only be called while processing
e725ba4f 488 @c wxEVT_COMMAND_SPLITTER_DOUBLECLICKED events.
23324ae1 489 */
328f5751 490 int GetX() const;
23324ae1
FM
491
492 /**
493 Returns the y coordinate of the double-click point.
e725ba4f 494
23324ae1 495 May only be called while processing
e725ba4f 496 @c wxEVT_COMMAND_SPLITTER_DOUBLECLICKED events.
23324ae1 497 */
328f5751 498 int GetY() const;
23324ae1
FM
499
500 /**
e725ba4f
FM
501 In the case of @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED events,
502 sets the new sash position.
503 In the case of @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING events,
504 sets the new tracking bar position so visual feedback during dragging will
23324ae1
FM
505 represent that change that will actually take place. Set to -1 from
506 the event handler code to prevent repositioning.
e725ba4f 507
23324ae1 508 May only be called while processing
e725ba4f
FM
509 @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING and
510 @c wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED events.
3c4f71cc 511
7c913512 512 @param pos
4cc4bfaf 513 New sash position.
23324ae1
FM
514 */
515 void SetSashPosition(int pos);
516};
e54c96f1 517
7106fc46
RD
518
519wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED;
520wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING;
521wxEventType wxEVT_COMMAND_SPLITTER_DOUBLECLICKED;
522wxEventType wxEVT_COMMAND_SPLITTER_UNSPLIT;