]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/_splitter.i
HACK: Add PLATFORM_MACOS as an option
[wxWidgets.git] / wxPython / src / _splitter.i
CommitLineData
d14a1e28
RD
1/////////////////////////////////////////////////////////////////////////////
2// Name: _splitter.i
3// Purpose: SWIG interface defs for wxSplitterWindow
4//
5// Author: Robin Dunn
6//
7// Created: 2-June-1998
8// RCS-ID: $Id$
9// Copyright: (c) 2003 by Total Control Software
10// Licence: wxWindows license
11/////////////////////////////////////////////////////////////////////////////
12
13// Not a %module
14
15
16//---------------------------------------------------------------------------
17
b2dc1044 18MAKE_CONST_WXSTRING2(SplitterNameStr, wxT("splitter"));
d14a1e28
RD
19
20//---------------------------------------------------------------------------
21%newgroup
22
23enum {
24 wxSP_NOBORDER,
25 wxSP_NOSASH,
26 wxSP_PERMIT_UNSPLIT,
27 wxSP_LIVE_UPDATE,
28 wxSP_3DSASH,
29 wxSP_3DBORDER,
cefae4bc 30 wxSP_NO_XP_THEME,
d14a1e28
RD
31 wxSP_BORDER,
32 wxSP_3D,
33};
34
35
36enum wxSplitMode
37{
38 wxSPLIT_HORIZONTAL = 1,
39 wxSPLIT_VERTICAL
40};
41
42enum
43{
44 wxSPLIT_DRAG_NONE,
45 wxSPLIT_DRAG_DRAGGING,
46 wxSPLIT_DRAG_LEFT_DOWN
47};
48
49//---------------------------------------------------------------------------
50
66394199 51DocStr(wxSplitterWindow,
d07d2bc9
RD
52"wx.SplitterWindow manages up to two subwindows or panes, with an
53optional vertical or horizontal split which can be used with the mouse
54or programmatically.", "
66394199 55
d07d2bc9
RD
56Styles
57-------
58 ==================== ======================================
66394199
RD
59 wx.SP_3D Draws a 3D effect border and sash.
60 wx.SP_3DSASH Draws a 3D effect sash.
61 wx.SP_3DBORDER Synonym for wxSP_BORDER.
62 wx.SP_BORDER Draws a standard border.
63 wx.SP_NOBORDER No border (default).
64 wx.SP_NO_XP_THEME Under Windows XP, switches off the
65 attempt to draw the splitter
66 using Windows XP theming, so the
67 borders and sash will take on the
68 pre-XP look.
69 wx.SP_PERMIT_UNSPLIT Always allow to unsplit, even with
70 the minimum pane size other than zero.
71 wx.SP_LIVE_UPDATE Don't draw XOR line but resize the
72 child windows immediately.
d07d2bc9
RD
73 ==================== ======================================
74
75Events
76------
77 ============================== =======================================
78 EVT_SPLITTER_SASH_POS_CHANGING The sash position is in the
79 process of being changed. May be
80 used to modify the position of
81 the tracking bar to properly
82 reflect the position that would
83 be set if the drag were to be
84 completed at this point.
66394199
RD
85
86 EVT_SPLITTER_SASH_POS_CHANGED
d07d2bc9
RD
87 The sash position was
88 changed. May be used to modify
89 the sash position before it is
90 set, or to prevent the change
91 from taking place.
92
93 EVT_SPLITTER_UNSPLIT The splitter has been just unsplit.
94
95 EVT_SPLITTER_DCLICK The sash was double clicked. The
96 default behaviour is to unsplit
97 the window when this happens
98 (unless the minimum pane size has
99 been set to a value greater than
100 zero.)
101 ============================== =======================================
66394199
RD
102
103");
104
d14a1e28 105
d07d2bc9 106
ab1f7d2a
RD
107MustHaveApp(wxSplitterWindow);
108
d14a1e28
RD
109class wxSplitterWindow: public wxWindow
110{
111public:
94eaeb1b 112 %pythonPrepend wxSplitterWindow "if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']"
2b9048c5
RD
113 %pythonPrepend wxSplitterWindow() ""
114 %pythonAppend wxSplitterWindow "self._setOORInfo(self)"
115 %pythonAppend wxSplitterWindow() ""
d14a1e28 116
66394199 117 DocCtorStr(
baf1aa5d 118 wxSplitterWindow(wxWindow* parent, wxWindowID id=-1,
66394199
RD
119 const wxPoint& pos = wxDefaultPosition,
120 const wxSize& size = wxDefaultSize,
121 long style=wxSP_3D,
122 const wxString& name = wxPySplitterNameStr),
d07d2bc9 123 "Constructor. Creates and shows a SplitterWindow.", "");
66394199
RD
124
125 DocCtorStrName(
126 wxSplitterWindow(),
d07d2bc9 127 "Precreate a SplitterWindow for 2-phase creation.", "",
66394199
RD
128 PreSplitterWindow);
129
130
131 DocDeclStr(
baf1aa5d 132 bool , Create(wxWindow* parent, wxWindowID id=-1,
66394199
RD
133 const wxPoint& pos = wxDefaultPosition,
134 const wxSize& size = wxDefaultSize,
135 long style=wxSP_3D,
136 const wxString& name = wxPySplitterNameStr),
d07d2bc9 137 "Create the GUI part of the SplitterWindow for the 2-phase create.", "");
66394199
RD
138
139
140
141 DocDeclStr(
142 wxWindow *, GetWindow1() const,
d07d2bc9 143 "Gets the only or left/top pane.", "");
66394199
RD
144
145
146 DocDeclStr(
147 wxWindow *, GetWindow2() const,
d07d2bc9 148 "Gets the right/bottom pane.", "");
66394199
RD
149
150
151 DocDeclStr(
152 void , SetSplitMode(int mode),
153 "Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
d07d2bc9
RD
154wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
155update the display.", "");
66394199
RD
156
157
158 DocDeclStr(
159 wxSplitMode , GetSplitMode() const,
d07d2bc9 160 "Gets the split mode", "");
66394199
RD
161
162
163 DocDeclStr(
164 void , Initialize(wxWindow *window),
d07d2bc9
RD
165 "Initializes the splitter window to have one pane. This should be
166called if you wish to initially view only a single pane in the
167splitter window.", "");
66394199 168
d14a1e28
RD
169
170 // Associates the given window with window 2, drawing the appropriate sash
171 // and changing the split mode.
dd9f7fea 172 // Does nothing and returns False if the window is already split.
d14a1e28
RD
173 // A sashPosition of 0 means choose a default sash position,
174 // negative sashPosition specifies the size of right/lower pane as it's
175 // absolute value rather than the size of left/upper pane.
66394199
RD
176
177 DocDeclStr(
178 virtual bool , SplitVertically(wxWindow *window1,
179 wxWindow *window2,
180 int sashPosition = 0),
d07d2bc9
RD
181 "Initializes the left and right panes of the splitter window.",
182 "
183 :param window1: The left pane.
184 :param window2: The right pane.
185 :param sashPosition: The initial position of the sash. If this
186 value is positive, it specifies the size of the left
187 pane. If it is negative, it is absolute value gives
188 the size of the right pane. Finally, specify 0
189 (default) to choose the default position (half of
190 the total window width).
191
192Returns True if successful, False otherwise (the window was already
193split).
194
195SplitVertically should be called if you wish to initially view two
196panes. It can also be called at any subsequent time, but the
197application should check that the window is not currently split using
198IsSplit.
199");
66394199
RD
200
201
202 DocDeclStr(
203 virtual bool , SplitHorizontally(wxWindow *window1,
204 wxWindow *window2,
205 int sashPosition = 0),
d07d2bc9
RD
206 "Initializes the top and bottom panes of the splitter window.",
207 "
208 :param window1: The top pane.
209 :param window2: The bottom pane.
210 :param sashPosition: The initial position of the sash. If this
211 value is positive, it specifies the size of the
212 upper pane. If it is negative, it is absolute value
213 gives the size of the lower pane. Finally, specify 0
214 (default) to choose the default position (half of
66394199
RD
215 the total window height).
216
d07d2bc9
RD
217Returns True if successful, False otherwise (the window was already
218split).
66394199 219
d07d2bc9
RD
220SplitHorizontally should be called if you wish to initially view two
221panes. It can also be called at any subsequent time, but the
222application should check that the window is not currently split using
223IsSplit.
224");
66394199
RD
225
226
227
228 DocDeclStr(
229 bool , Unsplit(wxWindow *toRemove = NULL),
d07d2bc9
RD
230 "Unsplits the window. Pass the pane to remove, or None to remove the
231right or bottom pane. Returns True if successful, False otherwise (the
232window was not split).
66394199
RD
233
234This function will not actually delete the pane being
235removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
236for the desired behaviour. By default, the pane being
d07d2bc9 237removed is only hidden.", "");
66394199
RD
238
239
240
241 DocDeclStr(
242 bool , ReplaceWindow(wxWindow *winOld, wxWindow *winNew),
243 "This function replaces one of the windows managed by the
d07d2bc9
RD
244SplitterWindow with another one. It is in general better to use it
245instead of calling Unsplit() and then resplitting the window back
246because it will provoke much less flicker. It is valid to call this
247function whether the splitter has two windows or only one.
248
249Both parameters should be non-None and winOld must specify one of the
250windows managed by the splitter. If the parameters are incorrect or
251the window couldn't be replaced, False is returned. Otherwise the
252function will return True, but please notice that it will not Destroy
253the replaced window and you may wish to do it yourself.", "");
66394199
RD
254
255
256 DocDeclStr(
257 void , UpdateSize(),
d07d2bc9
RD
258 "Causes any pending sizing of the sash and child panes to take place
259immediately.
66394199 260
d07d2bc9
RD
261Such resizing normally takes place in idle time, in order to wait for
262layout to be completed. However, this can cause unacceptable flicker
263as the panes are resized after the window has been shown. To work
264around this, you can perform window layout (for example by sending a
265size event to the parent window), and then call this function, before
266showing the top-level window.", "");
66394199
RD
267
268
269
270 DocDeclStr(
271 bool , IsSplit() const,
d07d2bc9 272 "Is the window split?", "");
66394199
RD
273
274
275 DocDeclStr(
276 void , SetSashSize(int width),
d07d2bc9 277 "Sets the sash size", "");
66394199
RD
278
279
280 DocDeclStr(
281 void , SetBorderSize(int width),
d07d2bc9 282 "Sets the border size", "");
66394199
RD
283
284
285 DocDeclStr(
286 int , GetSashSize() const,
d07d2bc9 287 "Gets the sash size", "");
66394199
RD
288
289
290 DocDeclStr(
291 int , GetBorderSize() const,
d07d2bc9 292 "Gets the border size", "");
66394199
RD
293
294
295 DocDeclStr(
a72f4631 296 void , SetSashPosition(int position, bool redraw = true),
d07d2bc9
RD
297 "Sets the sash position, in pixels. If redraw is Ttrue then the panes
298are resized and the sash and border are redrawn.", "");
66394199
RD
299
300
301 DocDeclStr(
302 int , GetSashPosition() const,
d07d2bc9 303 "Returns the surrent sash position.", "");
66394199
RD
304
305
306 DocDeclStr(
307 void , SetMinimumPaneSize(int min),
308 "Sets the minimum pane size in pixels.
309
d07d2bc9
RD
310The default minimum pane size is zero, which means that either pane
311can be reduced to zero by dragging the sash, thus removing one of the
312panes. To prevent this behaviour (and veto out-of-range sash
313dragging), set a minimum size, for example 20 pixels. If the
314wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
315the window may be unsplit even if minimum size is non-zero.", "");
66394199
RD
316
317 DocDeclStr(
318 int , GetMinimumPaneSize() const,
d07d2bc9 319 "Gets the minimum pane size in pixels.", "");
66394199
RD
320
321
322 DocDeclStr(
323 virtual bool , SashHitTest(int x, int y, int tolerance = 5),
d07d2bc9 324 "Tests for x, y over the sash", "");
66394199
RD
325
326
327 DocDeclStr(
328 virtual void , SizeWindows(),
d07d2bc9 329 "Resizes subwindows", "");
66394199 330
d14a1e28
RD
331
332 void SetNeedUpdating(bool needUpdating);
333 bool GetNeedUpdating() const;
880715c9
RD
334
335 static wxVisualAttributes
336 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
d14a1e28
RD
337};
338
339
340
66394199 341DocStr(wxSplitterEvent,
d07d2bc9 342 "This class represents the events generated by a splitter control.", "");
d14a1e28 343
d14a1e28
RD
344class wxSplitterEvent : public wxNotifyEvent
345{
346public:
347 wxSplitterEvent(wxEventType type = wxEVT_NULL,
348 wxSplitterWindow *splitter = (wxSplitterWindow *)NULL);
349
350
66394199
RD
351 DocDeclStr(
352 void , SetSashPosition(int pos),
d07d2bc9
RD
353 "This funciton is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
354and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
355events, sets the the new sash position. In the case of _CHANGING
356events, sets the new tracking bar position so visual feedback during
357dragging will represent that change that will actually take place. Set
358to -1 from the event handler code to prevent repositioning.", "");
66394199
RD
359
360 DocDeclStr(
361 int , GetSashPosition() const,
d07d2bc9
RD
362 "Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
363and EVT_SPLITTER_SASH_POS_CHANGED events.", "");
66394199 364
d14a1e28 365
66394199
RD
366 DocDeclStr(
367 wxWindow *, GetWindowBeingRemoved() const,
d07d2bc9
RD
368 "Returns a pointer to the window being removed when a splitter window
369is unsplit.", "");
66394199 370
d14a1e28 371
66394199
RD
372 DocDeclStr(
373 int , GetX() const,
374 "Returns the x coordinate of the double-click point in a
d07d2bc9 375EVT_SPLITTER_DCLICK event.", "");
66394199
RD
376
377 DocDeclStr(
378 int , GetY() const,
379 "Returns the y coordinate of the double-click point in a
d07d2bc9 380EVT_SPLITTER_DCLICK event.", "");
66394199 381
d14a1e28
RD
382};
383
384
385
386%constant wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED;
387%constant wxEventType wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING;
388%constant wxEventType wxEVT_COMMAND_SPLITTER_DOUBLECLICKED;
389%constant wxEventType wxEVT_COMMAND_SPLITTER_UNSPLIT;
390
391
392%pythoncode {
393EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 1 )
394EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 1 )
395EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 1 )
396EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
bb96dd93 397EVT_SPLITTER_DCLICK = EVT_SPLITTER_DOUBLECLICKED
d14a1e28
RD
398}
399
400//---------------------------------------------------------------------------
401