1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: SWIG interface defs for wxSplitterWindow
7 // Created: 2-June-1998
9 // Copyright: (c) 2003 by Total Control Software
10 // Licence: wxWindows license
11 /////////////////////////////////////////////////////////////////////////////
16 //---------------------------------------------------------------------------
18 MAKE_CONST_WXSTRING2(SplitterNameStr, wxT("splitter"));
20 //---------------------------------------------------------------------------
38 wxSPLIT_HORIZONTAL = 1,
45 wxSPLIT_DRAG_DRAGGING,
46 wxSPLIT_DRAG_LEFT_DOWN
49 //---------------------------------------------------------------------------
51 DocStr(wxSplitterWindow,
52 "wx.SplitterWindow manages up to two subwindows or panes, with an
53 optional vertical or horizontal split which can be used with the mouse
54 or programmatically.", "
58 ==================== ======================================
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
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.
73 ==================== ======================================
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.
86 EVT_SPLITTER_SASH_POS_CHANGED
88 changed. May be used to modify
89 the sash position before it is
90 set, or to prevent the change
93 EVT_SPLITTER_UNSPLIT The splitter has been just unsplit.
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
101 ============================== =======================================
107 MustHaveApp(wxSplitterWindow);
109 class wxSplitterWindow: public wxWindow
112 %pythonPrepend wxSplitterWindow "if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']"
113 %pythonPrepend wxSplitterWindow() ""
114 %pythonAppend wxSplitterWindow "self._setOORInfo(self)"
115 %pythonAppend wxSplitterWindow() ""
118 wxSplitterWindow(wxWindow* parent, wxWindowID id=-1,
119 const wxPoint& pos = wxDefaultPosition,
120 const wxSize& size = wxDefaultSize,
122 const wxString& name = wxPySplitterNameStr),
123 "Constructor. Creates and shows a SplitterWindow.", "");
127 "Precreate a SplitterWindow for 2-phase creation.", "",
132 bool , Create(wxWindow* parent, wxWindowID id=-1,
133 const wxPoint& pos = wxDefaultPosition,
134 const wxSize& size = wxDefaultSize,
136 const wxString& name = wxPySplitterNameStr),
137 "Create the GUI part of the SplitterWindow for the 2-phase create.", "");
142 wxWindow *, GetWindow1() const,
143 "Gets the only or left/top pane.", "");
147 wxWindow *, GetWindow2() const,
148 "Gets the right/bottom pane.", "");
152 void , SetSplitMode(int mode),
153 "Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
154 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
155 update the display.", "");
159 wxSplitMode , GetSplitMode() const,
160 "Gets the split mode", "");
164 void , Initialize(wxWindow *window),
165 "Initializes the splitter window to have one pane. This should be
166 called if you wish to initially view only a single pane in the
167 splitter window.", "");
170 // Associates the given window with window 2, drawing the appropriate sash
171 // and changing the split mode.
172 // Does nothing and returns False if the window is already split.
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.
178 virtual bool , SplitVertically(wxWindow *window1,
180 int sashPosition = 0),
181 "Initializes the left and right panes of the splitter window.",
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).
192 Returns True if successful, False otherwise (the window was already
195 SplitVertically should be called if you wish to initially view two
196 panes. It can also be called at any subsequent time, but the
197 application should check that the window is not currently split using
203 virtual bool , SplitHorizontally(wxWindow *window1,
205 int sashPosition = 0),
206 "Initializes the top and bottom panes of the splitter window.",
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
215 the total window height).
217 Returns True if successful, False otherwise (the window was already
220 SplitHorizontally should be called if you wish to initially view two
221 panes. It can also be called at any subsequent time, but the
222 application should check that the window is not currently split using
229 bool , Unsplit(wxWindow *toRemove = NULL),
230 "Unsplits the window. Pass the pane to remove, or None to remove the
231 right or bottom pane. Returns True if successful, False otherwise (the
232 window was not split).
234 This function will not actually delete the pane being
235 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
236 for the desired behaviour. By default, the pane being
237 removed is only hidden.", "");
242 bool , ReplaceWindow(wxWindow *winOld, wxWindow *winNew),
243 "This function replaces one of the windows managed by the
244 SplitterWindow with another one. It is in general better to use it
245 instead of calling Unsplit() and then resplitting the window back
246 because it will provoke much less flicker. It is valid to call this
247 function whether the splitter has two windows or only one.
249 Both parameters should be non-None and winOld must specify one of the
250 windows managed by the splitter. If the parameters are incorrect or
251 the window couldn't be replaced, False is returned. Otherwise the
252 function will return True, but please notice that it will not Destroy
253 the replaced window and you may wish to do it yourself.", "");
258 "Causes any pending sizing of the sash and child panes to take place
261 Such resizing normally takes place in idle time, in order to wait for
262 layout to be completed. However, this can cause unacceptable flicker
263 as the panes are resized after the window has been shown. To work
264 around this, you can perform window layout (for example by sending a
265 size event to the parent window), and then call this function, before
266 showing the top-level window.", "");
271 bool , IsSplit() const,
272 "Is the window split?", "");
276 void , SetSashSize(int width),
277 "Sets the sash size", "");
281 void , SetBorderSize(int width),
282 "Sets the border size", "");
286 int , GetSashSize() const,
287 "Gets the sash size", "");
291 int , GetBorderSize() const,
292 "Gets the border size", "");
296 void , SetSashPosition(int position, bool redraw = True),
297 "Sets the sash position, in pixels. If redraw is Ttrue then the panes
298 are resized and the sash and border are redrawn.", "");
302 int , GetSashPosition() const,
303 "Returns the surrent sash position.", "");
307 void , SetMinimumPaneSize(int min),
308 "Sets the minimum pane size in pixels.
310 The default minimum pane size is zero, which means that either pane
311 can be reduced to zero by dragging the sash, thus removing one of the
312 panes. To prevent this behaviour (and veto out-of-range sash
313 dragging), set a minimum size, for example 20 pixels. If the
314 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
315 the window may be unsplit even if minimum size is non-zero.", "");
318 int , GetMinimumPaneSize() const,
319 "Gets the minimum pane size in pixels.", "");
323 virtual bool , SashHitTest(int x, int y, int tolerance = 5),
324 "Tests for x, y over the sash", "");
328 virtual void , SizeWindows(),
329 "Resizes subwindows", "");
332 void SetNeedUpdating(bool needUpdating);
333 bool GetNeedUpdating() const;
335 static wxVisualAttributes
336 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
341 DocStr(wxSplitterEvent,
342 "This class represents the events generated by a splitter control.", "");
344 class wxSplitterEvent : public wxNotifyEvent
347 wxSplitterEvent(wxEventType type = wxEVT_NULL,
348 wxSplitterWindow *splitter = (wxSplitterWindow *)NULL);
352 void , SetSashPosition(int pos),
353 "This funciton is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
354 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
355 events, sets the the new sash position. In the case of _CHANGING
356 events, sets the new tracking bar position so visual feedback during
357 dragging will represent that change that will actually take place. Set
358 to -1 from the event handler code to prevent repositioning.", "");
361 int , GetSashPosition() const,
362 "Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
363 and EVT_SPLITTER_SASH_POS_CHANGED events.", "");
367 wxWindow *, GetWindowBeingRemoved() const,
368 "Returns a pointer to the window being removed when a splitter window
374 "Returns the x coordinate of the double-click point in a
375 EVT_SPLITTER_DCLICK event.", "");
379 "Returns the y coordinate of the double-click point in a
380 EVT_SPLITTER_DCLICK event.", "");
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;
393 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 1 )
394 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 1 )
395 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 1 )
396 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
397 EVT_SPLITTER_DCLICK = EVT_SPLITTER_DOUBLECLICKED
400 //---------------------------------------------------------------------------