1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/splitter.h
3 // Purpose: wxSplitterWindow class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERIC_SPLITTER_H_
13 #define _WX_GENERIC_SPLITTER_H_
15 #include "wx/window.h" // base class declaration
16 #include "wx/containr.h" // wxControlContainer
18 class WXDLLIMPEXP_FWD_CORE wxSplitterEvent
;
20 // ---------------------------------------------------------------------------
22 // ---------------------------------------------------------------------------
26 wxSPLIT_HORIZONTAL
= 1,
33 wxSPLIT_DRAG_DRAGGING
,
34 wxSPLIT_DRAG_LEFT_DOWN
37 // ---------------------------------------------------------------------------
38 // wxSplitterWindow maintains one or two panes, with
39 // an optional vertical or horizontal split which
40 // can be used with the mouse or programmatically.
41 // ---------------------------------------------------------------------------
44 // 1) Perhaps make the borders sensitive to dragging in order to create a split.
45 // The MFC splitter window manages scrollbars as well so is able to
46 // put sash buttons on the scrollbars, but we probably don't want to go down
48 // 2) for wxWidgets 2.0, we must find a way to set the WS_CLIPCHILDREN style
49 // to prevent flickering. (WS_CLIPCHILDREN doesn't work in all cases so can't be
52 class WXDLLIMPEXP_CORE wxSplitterWindow
: public wxNavigationEnabled
<wxWindow
>
56 ////////////////////////////////////////////////////////////////////////////
59 // Default constructor
66 wxSplitterWindow(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
67 const wxPoint
& pos
= wxDefaultPosition
,
68 const wxSize
& size
= wxDefaultSize
,
70 const wxString
& name
= wxT("splitter"))
73 Create(parent
, id
, pos
, size
, style
, name
);
76 virtual ~wxSplitterWindow();
78 bool Create(wxWindow
*parent
, wxWindowID id
= wxID_ANY
,
79 const wxPoint
& pos
= wxDefaultPosition
,
80 const wxSize
& size
= wxDefaultSize
,
82 const wxString
& name
= wxT("splitter"));
84 // Gets the only or left/top pane
85 wxWindow
*GetWindow1() const { return m_windowOne
; }
87 // Gets the right/bottom pane
88 wxWindow
*GetWindow2() const { return m_windowTwo
; }
90 // Sets the split mode
91 void SetSplitMode(int mode
)
93 wxASSERT_MSG( mode
== wxSPLIT_VERTICAL
|| mode
== wxSPLIT_HORIZONTAL
,
94 wxT("invalid split mode") );
96 m_splitMode
= (wxSplitMode
)mode
;
99 // Gets the split mode
100 wxSplitMode
GetSplitMode() const { return m_splitMode
; }
102 // Initialize with one window
103 void Initialize(wxWindow
*window
);
105 // Associates the given window with window 2, drawing the appropriate sash
106 // and changing the split mode.
107 // Does nothing and returns false if the window is already split.
108 // A sashPosition of 0 means choose a default sash position,
109 // negative sashPosition specifies the size of right/lower pane as it's
110 // absolute value rather than the size of left/upper pane.
111 virtual bool SplitVertically(wxWindow
*window1
,
113 int sashPosition
= 0)
114 { return DoSplit(wxSPLIT_VERTICAL
, window1
, window2
, sashPosition
); }
115 virtual bool SplitHorizontally(wxWindow
*window1
,
117 int sashPosition
= 0)
118 { return DoSplit(wxSPLIT_HORIZONTAL
, window1
, window2
, sashPosition
); }
120 // Removes the specified (or second) window from the view
121 // Doesn't actually delete the window.
122 bool Unsplit(wxWindow
*toRemove
= NULL
);
124 // Replaces one of the windows with another one (neither old nor new
125 // parameter should be NULL)
126 bool ReplaceWindow(wxWindow
*winOld
, wxWindow
*winNew
);
128 // Make sure the child window sizes are updated. This is useful
129 // for reducing flicker by updating the sizes before a
130 // window is shown, if you know the overall size is correct.
133 // Is the window split?
134 bool IsSplit() const { return (m_windowTwo
!= NULL
); }
136 // Sets the border size
137 void SetBorderSize(int WXUNUSED(width
)) { }
139 // Gets the sash size
140 int GetSashSize() const;
142 // Gets the border size
143 int GetBorderSize() const;
145 // Set the sash position
146 void SetSashPosition(int position
, bool redraw
= true);
148 // Gets the sash position
149 int GetSashPosition() const { return m_sashPosition
; }
151 // Set the sash gravity
152 void SetSashGravity(double gravity
);
154 // Gets the sash gravity
155 double GetSashGravity() const { return m_sashGravity
; }
157 // If this is zero, we can remove panes by dragging the sash.
158 void SetMinimumPaneSize(int min
);
159 int GetMinimumPaneSize() const { return m_minimumPaneSize
; }
161 // NB: the OnXXX() functions below are for backwards compatibility only,
162 // don't use them in new code but handle the events instead!
164 // called when the sash position is about to change, may return a new value
165 // for the sash or -1 to prevent the change from happening at all
166 virtual int OnSashPositionChanging(int newSashPosition
);
168 // Called when the sash position is about to be changed, return
169 // false from here to prevent the change from taking place.
170 // Repositions sash to minimum position if pane would be too small.
171 // newSashPosition here is always positive or zero.
172 virtual bool OnSashPositionChange(int newSashPosition
);
174 // If the sash is moved to an extreme position, a subwindow
175 // is removed from the splitter window, and the app is
176 // notified. The app should delete or hide the window.
177 virtual void OnUnsplit(wxWindow
*removed
);
179 // Called when the sash is double-clicked.
180 // The default behaviour is to remove the sash if the
181 // minimum pane size is zero.
182 virtual void OnDoubleClickSash(int x
, int y
);
184 ////////////////////////////////////////////////////////////////////////////
187 // Paints the border and sash
188 void OnPaint(wxPaintEvent
& event
);
190 // Handles mouse events
191 void OnMouseEvent(wxMouseEvent
& ev
);
193 // Aborts dragging mode
194 void OnMouseCaptureLost(wxMouseCaptureLostEvent
& event
);
197 void OnSize(wxSizeEvent
& event
);
199 // In live mode, resize child windows in idle time
200 void OnInternalIdle();
203 virtual void DrawSash(wxDC
& dc
);
205 // Draws the sash tracker (for whilst moving the sash)
206 virtual void DrawSashTracker(int x
, int y
);
208 // Tests for x, y over sash
209 virtual bool SashHitTest(int x
, int y
, int tolerance
= 5);
211 // Resizes subwindows
212 virtual void SizeWindows();
214 void SetNeedUpdating(bool needUpdating
) { m_needUpdating
= needUpdating
; }
215 bool GetNeedUpdating() const { return m_needUpdating
; }
218 virtual bool MacClipGrandChildren() const { return true ; }
221 // Sets the sash size: this doesn't do anything and shouldn't be used at
223 wxDEPRECATED_INLINE( void SetSashSize(int WXUNUSED(width
)), return; )
227 #if defined(__WXMSW__) || defined(__WXMAC__)
228 void OnSetCursor(wxSetCursorEvent
& event
);
231 // send the given event, return false if the event was processed and vetoed
233 bool DoSendEvent(wxSplitterEvent
& event
);
235 // common part of all ctors
238 // common part of SplitVertically() and SplitHorizontally()
239 bool DoSplit(wxSplitMode mode
,
240 wxWindow
*window1
, wxWindow
*window2
,
243 // adjusts sash position with respect to min. pane and window sizes
244 int AdjustSashPosition(int sashPos
) const;
246 // get either width or height depending on the split mode
247 int GetWindowSize() const;
249 // convert the user specified sash position which may be > 0 (as is), < 0
250 // (specifying the size of the right pane) or 0 (use default) to the real
251 // position to be passed to DoSetSashPosition()
252 int ConvertSashPosition(int sashPos
) const;
254 // set the real sash position, sashPos here must be positive
256 // returns true if the sash position has been changed, false otherwise
257 bool DoSetSashPosition(int sashPos
);
259 // set the sash position and send an event about it having been changed
260 void SetSashPositionAndNotify(int sashPos
);
262 // callbacks executed when we detect that the mouse has entered or left
264 virtual void OnEnterSash();
265 virtual void OnLeaveSash();
267 // set the cursor appropriate for the current split mode
268 void SetResizeCursor();
270 // redraw the splitter if its "hotness" changed if necessary
271 void RedrawIfHotSensitive(bool isHot
);
273 // return the best size of the splitter equal to best sizes of its
275 virtual wxSize
DoGetBestSize() const;
278 wxSplitMode m_splitMode
;
279 wxWindow
* m_windowOne
;
280 wxWindow
* m_windowTwo
;
282 int m_oldX
; // current tracker position if not live mode
283 int m_oldY
; // current tracker position if not live mode
284 int m_sashPosition
; // Number of pixels from left or top
285 double m_sashGravity
;
287 int m_requestedSashPosition
;
288 int m_sashPositionCurrent
; // while dragging
289 wxPoint m_ptStart
; // mouse position when dragging started
290 int m_sashStart
; // sash position when dragging started
291 int m_minimumPaneSize
;
292 wxCursor m_sashCursorWE
;
293 wxCursor m_sashCursorNS
;
294 wxPen
*m_sashTrackerPen
;
296 // when in live mode, set this to true to resize children in idle
297 bool m_needUpdating
:1;
298 bool m_permitUnsplitAlways
:1;
300 bool m_checkRequestedSashPosition
:1;
303 DECLARE_DYNAMIC_CLASS(wxSplitterWindow
)
304 DECLARE_EVENT_TABLE()
305 wxDECLARE_NO_COPY_CLASS(wxSplitterWindow
);
308 // ----------------------------------------------------------------------------
309 // event class and macros
310 // ----------------------------------------------------------------------------
312 // we reuse the same class for all splitter event types because this is the
313 // usual wxWin convention, but the three event types have different kind of
314 // data associated with them, so the accessors can be only used if the real
315 // event type matches with the one for which the accessors make sense
316 class WXDLLIMPEXP_CORE wxSplitterEvent
: public wxNotifyEvent
319 wxSplitterEvent(wxEventType type
= wxEVT_NULL
,
320 wxSplitterWindow
*splitter
= NULL
)
321 : wxNotifyEvent(type
)
323 SetEventObject(splitter
);
324 if (splitter
) m_id
= splitter
->GetId();
326 wxSplitterEvent(const wxSplitterEvent
& event
)
327 : wxNotifyEvent(event
), m_data(event
.m_data
) { }
329 // SASH_POS_CHANGED methods
331 // setting the sash position to -1 prevents the change from taking place at
333 void SetSashPosition(int pos
)
335 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
336 || GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
);
341 int GetSashPosition() const
343 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
344 || GetEventType() == wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
);
349 // UNSPLIT event methods
350 wxWindow
*GetWindowBeingRemoved() const
352 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_UNSPLIT
);
357 // DCLICK event methods
360 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
);
367 wxASSERT( GetEventType() == wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
);
372 virtual wxEvent
*Clone() const { return new wxSplitterEvent(*this); }
375 friend class WXDLLIMPEXP_FWD_CORE wxSplitterWindow
;
377 // data for the different types of event
380 int pos
; // position for SASH_POS_CHANGED event
381 wxWindow
*win
; // window being removed for UNSPLIT event
385 } pt
; // position of double click for DCLICK event
388 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxSplitterEvent
)
391 typedef void (wxEvtHandler::*wxSplitterEventFunction
)(wxSplitterEvent
&);
393 #define wxSplitterEventHandler(func) \
394 wxEVENT_HANDLER_CAST(wxSplitterEventFunction, func)
396 #define wx__DECLARE_SPLITTEREVT(evt, id, fn) \
397 wx__DECLARE_EVT1(wxEVT_COMMAND_SPLITTER_ ## evt, id, wxSplitterEventHandler(fn))
399 #define EVT_SPLITTER_SASH_POS_CHANGED(id, fn) \
400 wx__DECLARE_SPLITTEREVT(SASH_POS_CHANGED, id, fn)
402 #define EVT_SPLITTER_SASH_POS_CHANGING(id, fn) \
403 wx__DECLARE_SPLITTEREVT(SASH_POS_CHANGING, id, fn)
405 #define EVT_SPLITTER_DCLICK(id, fn) \
406 wx__DECLARE_SPLITTEREVT(DOUBLECLICKED, id, fn)
408 #define EVT_SPLITTER_UNSPLIT(id, fn) \
409 wx__DECLARE_SPLITTEREVT(UNSPLIT, id, fn)
411 #endif // _WX_GENERIC_SPLITTER_H_