1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/splitter.cpp
3 // Purpose: wxSplitterWindow implementation
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
21 #include "wx/splitter.h"
24 #include "wx/string.h"
28 #include "wx/dcclient.h"
29 #include "wx/dcscreen.h"
31 #include "wx/window.h"
32 #include "wx/dialog.h"
35 #include "wx/settings.h"
38 #include "wx/renderer.h"
42 wxDEFINE_EVENT( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, wxSplitterEvent
);
43 wxDEFINE_EVENT( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, wxSplitterEvent
);
44 wxDEFINE_EVENT( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, wxSplitterEvent
);
45 wxDEFINE_EVENT( wxEVT_COMMAND_SPLITTER_UNSPLIT
, wxSplitterEvent
);
47 IMPLEMENT_DYNAMIC_CLASS(wxSplitterWindow
, wxWindow
)
58 IMPLEMENT_DYNAMIC_CLASS(wxSplitterEvent
, wxNotifyEvent
)
60 BEGIN_EVENT_TABLE(wxSplitterWindow
, wxWindow
)
61 EVT_PAINT(wxSplitterWindow::OnPaint
)
62 EVT_SIZE(wxSplitterWindow::OnSize
)
63 EVT_MOUSE_EVENTS(wxSplitterWindow::OnMouseEvent
)
64 EVT_MOUSE_CAPTURE_LOST(wxSplitterWindow::OnMouseCaptureLost
)
66 #if defined( __WXMSW__ ) || defined( __WXMAC__)
67 EVT_SET_CURSOR(wxSplitterWindow::OnSetCursor
)
71 static bool IsLive(wxSplitterWindow
* wnd
)
73 // with wxSP_LIVE_UPDATE style the splitter windows are always resized
74 // following the mouse movement while it drags the sash, without it we only
75 // draw the sash at the new position but only resize the windows when the
76 // dragging is finished
77 #if defined( __WXMAC__ ) && defined(TARGET_API_MAC_OSX) && TARGET_API_MAC_OSX == 1
78 return true; // Mac can't paint outside paint event - always need live mode
80 return wnd
->HasFlag(wxSP_LIVE_UPDATE
);
84 bool wxSplitterWindow::Create(wxWindow
*parent
, wxWindowID id
,
90 // allow TABbing from one window to the other
91 style
|= wxTAB_TRAVERSAL
;
93 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
96 m_lastSize
= GetClientSize();
98 m_permitUnsplitAlways
= (style
& wxSP_PERMIT_UNSPLIT
) != 0;
100 // FIXME: with this line the background is not erased at all under GTK1,
101 // so temporary avoid it there
102 #if !defined(__WXGTK__) || defined(__WXGTK20__)
103 // don't erase the splitter background, it's pointless as we overwrite it
105 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
111 void wxSplitterWindow::Init()
113 m_splitMode
= wxSPLIT_VERTICAL
;
114 m_permitUnsplitAlways
= true;
117 m_dragMode
= wxSPLIT_DRAG_NONE
;
122 m_requestedSashPosition
= INT_MAX
;
124 m_lastSize
= wxSize(0,0);
125 m_minimumPaneSize
= 0;
126 m_sashCursorWE
= wxCursor(wxCURSOR_SIZEWE
);
127 m_sashCursorNS
= wxCursor(wxCURSOR_SIZENS
);
128 m_sashTrackerPen
= new wxPen(*wxBLACK
, 2, wxPENSTYLE_SOLID
);
130 m_needUpdating
= false;
134 wxSplitterWindow::~wxSplitterWindow()
136 delete m_sashTrackerPen
;
139 // ----------------------------------------------------------------------------
140 // entering/leaving sash
141 // ----------------------------------------------------------------------------
143 void wxSplitterWindow::RedrawIfHotSensitive(bool isHot
)
145 if ( wxRendererNative::Get().GetSplitterParams(this).isHotSensitive
)
152 //else: we don't change our appearance, don't redraw to avoid flicker
155 void wxSplitterWindow::OnEnterSash()
159 RedrawIfHotSensitive(true);
162 void wxSplitterWindow::OnLeaveSash()
164 SetCursor(*wxSTANDARD_CURSOR
);
166 RedrawIfHotSensitive(false);
169 void wxSplitterWindow::SetResizeCursor()
171 SetCursor(m_splitMode
== wxSPLIT_VERTICAL
? m_sashCursorWE
175 // ----------------------------------------------------------------------------
176 // other event handlers
177 // ----------------------------------------------------------------------------
179 void wxSplitterWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
183 // as subpanels might have a transparent background we must erase the background
184 // at least on OSX, otherwise traces of the sash will remain
185 // test with: splitter sample->replace right window
192 void wxSplitterWindow::OnInternalIdle()
194 wxWindow::OnInternalIdle();
196 // We may need to update the children sizes in two cases: either because
197 // we're in the middle of a live update as indicated by m_needUpdating or
198 // because we have a requested but not yet set sash position as indicated
199 // by m_requestedSashPosition having a valid value.
200 if ( m_needUpdating
)
202 m_needUpdating
= false;
204 else if ( m_requestedSashPosition
== INT_MAX
)
206 // We don't need to resize the children.
213 void wxSplitterWindow::OnMouseEvent(wxMouseEvent
& event
)
215 int x
= (int)event
.GetX(),
216 y
= (int)event
.GetY();
218 if ( GetWindowStyle() & wxSP_NOSASH
)
224 bool isLive
= IsLive(this);
226 if (event
.LeftDown())
228 if ( SashHitTest(x
, y
) )
230 // Start the drag now
231 m_dragMode
= wxSPLIT_DRAG_DRAGGING
;
233 // Capture mouse and set the cursor
239 // remember the initial sash position and draw the initial
241 m_sashPositionCurrent
= m_sashPosition
;
243 m_oldX
= (m_splitMode
== wxSPLIT_VERTICAL
? m_sashPositionCurrent
: x
);
244 m_oldY
= (m_splitMode
!= wxSPLIT_VERTICAL
? m_sashPositionCurrent
: y
);
245 DrawSashTracker(m_oldX
, m_oldY
);
248 m_ptStart
= wxPoint(x
,y
);
249 m_sashStart
= m_sashPosition
;
253 else if (event
.LeftUp() && m_dragMode
== wxSPLIT_DRAG_DRAGGING
)
255 // We can stop dragging now and see what we've got.
256 m_dragMode
= wxSPLIT_DRAG_NONE
;
258 // Release mouse and unset the cursor
260 SetCursor(* wxSTANDARD_CURSOR
);
262 // exit if unsplit after doubleclick
271 DrawSashTracker(m_oldX
, m_oldY
);
274 // the position of the click doesn't exactly correspond to
275 // m_sashPosition, rather it changes it by the distance by which the
277 int diff
= m_splitMode
== wxSPLIT_VERTICAL
? x
- m_ptStart
.x
: y
- m_ptStart
.y
;
279 int posSashNew
= OnSashPositionChanging(m_sashStart
+ diff
);
280 if ( posSashNew
== -1 )
282 // change not allowed
286 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
288 // Deal with possible unsplit scenarios
289 if ( posSashNew
== 0 )
291 // We remove the first window from the view
292 wxWindow
*removedWindow
= m_windowOne
;
293 m_windowOne
= m_windowTwo
;
295 OnUnsplit(removedWindow
);
296 wxSplitterEvent
eventUnsplit(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
297 eventUnsplit
.m_data
.win
= removedWindow
;
298 (void)DoSendEvent(eventUnsplit
);
299 SetSashPositionAndNotify(0);
301 else if ( posSashNew
== GetWindowSize() )
303 // We remove the second window from the view
304 wxWindow
*removedWindow
= m_windowTwo
;
306 OnUnsplit(removedWindow
);
307 wxSplitterEvent
eventUnsplit(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
308 eventUnsplit
.m_data
.win
= removedWindow
;
309 (void)DoSendEvent(eventUnsplit
);
310 SetSashPositionAndNotify(0);
314 SetSashPositionAndNotify(posSashNew
);
319 SetSashPositionAndNotify(posSashNew
);
323 } // left up && dragging
324 else if ((event
.Moving() || event
.Leaving() || event
.Entering()) && (m_dragMode
== wxSPLIT_DRAG_NONE
))
326 if ( event
.Leaving() || !SashHitTest(x
, y
) )
331 else if (event
.Dragging() && (m_dragMode
== wxSPLIT_DRAG_DRAGGING
))
333 int diff
= m_splitMode
== wxSPLIT_VERTICAL
? x
- m_ptStart
.x
: y
- m_ptStart
.y
;
335 int posSashNew
= OnSashPositionChanging(m_sashStart
+ diff
);
336 if ( posSashNew
== -1 )
338 // change not allowed
344 if ( posSashNew
== m_sashPositionCurrent
)
347 m_sashPositionCurrent
= posSashNew
;
350 DrawSashTracker(m_oldX
, m_oldY
);
352 m_oldX
= (m_splitMode
== wxSPLIT_VERTICAL
? m_sashPositionCurrent
: x
);
353 m_oldY
= (m_splitMode
!= wxSPLIT_VERTICAL
? m_sashPositionCurrent
: y
);
356 // As we captured the mouse, we may get the mouse events from outside
357 // our window - for example, negative values in x, y. This has a weird
358 // consequence under MSW where we use unsigned values sometimes and
359 // signed ones other times: the coordinates turn as big positive
360 // numbers and so the sash is drawn on the *right* side of the window
361 // instead of the left (or bottom instead of top). Correct this.
362 if ( (short)m_oldX
< 0 )
364 if ( (short)m_oldY
< 0 )
369 DrawSashTracker(m_oldX
, m_oldY
);
373 if ( posSashNew
== m_sashPosition
)
376 DoSetSashPosition(posSashNew
);
378 // in live mode, the new position is the actual sash position, clear requested position!
379 m_requestedSashPosition
= INT_MAX
;
380 m_needUpdating
= true;
383 else if ( event
.LeftDClick() && m_windowTwo
)
385 OnDoubleClickSash(x
, y
);
393 void wxSplitterWindow::OnMouseCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
395 if (m_dragMode
!= wxSPLIT_DRAG_DRAGGING
)
398 m_dragMode
= wxSPLIT_DRAG_NONE
;
400 SetCursor(* wxSTANDARD_CURSOR
);
405 DrawSashTracker(m_oldX
, m_oldY
);
409 void wxSplitterWindow::OnSize(wxSizeEvent
& event
)
411 // only process this message if we're not iconized - otherwise iconizing
412 // and restoring a window containing the splitter has a funny side effect
413 // of changing the splitter position!
414 wxWindow
*parent
= wxGetTopLevelParent(this);
417 wxTopLevelWindow
*winTop
= wxDynamicCast(parent
, wxTopLevelWindow
);
420 iconized
= winTop
->IsIconized();
424 wxFAIL_MSG(wxT("should have a top level parent!"));
431 m_lastSize
= wxSize(0,0);
438 const wxSize curSize
= event
.GetSize();
440 // Update the sash position if needed.
442 // Notice that we shouldn't do this if the sash position requested by user
443 // couldn't be set yet as it would never be taken into account at all if we
444 // modified it before this happens.
445 if ( m_windowTwo
&& m_requestedSashPosition
== INT_MAX
)
447 int size
= m_splitMode
== wxSPLIT_VERTICAL
? curSize
.x
: curSize
.y
;
449 int old_size
= m_splitMode
== wxSPLIT_VERTICAL
? m_lastSize
.x
: m_lastSize
.y
;
451 // Don't do anything if the size didn't really change.
452 if ( size
!= old_size
)
454 int newPosition
= -1;
456 // Apply gravity if we use it.
457 int delta
= (int) ( (size
- old_size
)*m_sashGravity
);
460 newPosition
= m_sashPosition
+ delta
;
461 if( newPosition
< m_minimumPaneSize
)
462 newPosition
= m_minimumPaneSize
;
465 // Also check if the second window became too small.
466 newPosition
= AdjustSashPosition(newPosition
== -1
469 if ( newPosition
!= m_sashPosition
)
470 SetSashPositionAndNotify(newPosition
);
474 m_lastSize
= curSize
;
479 void wxSplitterWindow::SetSashGravity(double gravity
)
481 wxCHECK_RET( gravity
>= 0. && gravity
<= 1.,
482 wxT("invalid gravity value") );
484 m_sashGravity
= gravity
;
487 bool wxSplitterWindow::SashHitTest(int x
, int y
, int tolerance
)
489 if ( m_windowTwo
== NULL
|| m_sashPosition
== 0)
490 return false; // No sash
492 int z
= m_splitMode
== wxSPLIT_VERTICAL
? x
: y
;
493 int hitMin
= m_sashPosition
- tolerance
;
494 int hitMax
= m_sashPosition
+ GetSashSize() + tolerance
;
496 return z
>= hitMin
&& z
<= hitMax
;
499 void wxSplitterWindow::SetSashInvisible(bool invisible
)
501 if ( IsSashInvisible() != invisible
)
502 ToggleWindowStyle(wxSP_NOSASH
);
505 int wxSplitterWindow::GetSashSize() const
507 return IsSashInvisible() ? 0 : GetDefaultSashSize();
510 int wxSplitterWindow::GetDefaultSashSize() const
512 return wxRendererNative::Get().GetSplitterParams(this).widthSash
;
515 int wxSplitterWindow::GetBorderSize() const
517 return wxRendererNative::Get().GetSplitterParams(this).border
;
521 void wxSplitterWindow::DrawSash(wxDC
& dc
)
523 if (HasFlag(wxSP_3DBORDER
))
524 wxRendererNative::Get().DrawSplitterBorder
531 // don't draw sash if we're not split
532 if ( m_sashPosition
== 0 || !m_windowTwo
)
535 // nor if we're configured to not show it
536 if ( IsSashInvisible() )
539 wxRendererNative::Get().DrawSplitterSash
545 m_splitMode
== wxSPLIT_VERTICAL
? wxVERTICAL
547 m_isHot
? (int)wxCONTROL_CURRENT
: 0
551 // Draw the sash tracker (for whilst moving the sash)
552 void wxSplitterWindow::DrawSashTracker(int x
, int y
)
555 GetClientSize(&w
, &h
);
561 if ( m_splitMode
== wxSPLIT_VERTICAL
)
563 x1
= x2
= wxClip(x
, 0, w
) + m_sashTrackerPen
->GetWidth()/2;
569 y1
= y2
= wxClip(y
, 0, h
) + m_sashTrackerPen
->GetWidth()/2;
574 ClientToScreen(&x1
, &y1
);
575 ClientToScreen(&x2
, &y2
);
577 screenDC
.SetLogicalFunction(wxINVERT
);
578 screenDC
.SetPen(*m_sashTrackerPen
);
579 screenDC
.SetBrush(*wxTRANSPARENT_BRUSH
);
581 screenDC
.DrawLine(x1
, y1
, x2
, y2
);
583 screenDC
.SetLogicalFunction(wxCOPY
);
586 int wxSplitterWindow::GetWindowSize() const
588 wxSize size
= GetClientSize();
590 return m_splitMode
== wxSPLIT_VERTICAL
? size
.x
: size
.y
;
593 int wxSplitterWindow::AdjustSashPosition(int sashPos
) const
600 // the window shouldn't be smaller than its own minimal size nor
601 // smaller than the minimual pane size specified for this splitter
602 int minSize
= m_splitMode
== wxSPLIT_VERTICAL
? win
->GetMinWidth()
603 : win
->GetMinHeight();
605 if ( minSize
== -1 || m_minimumPaneSize
> minSize
)
606 minSize
= m_minimumPaneSize
;
608 minSize
+= GetBorderSize();
610 if ( sashPos
< minSize
)
617 int minSize
= m_splitMode
== wxSPLIT_VERTICAL
? win
->GetMinWidth()
618 : win
->GetMinHeight();
620 if ( minSize
== -1 || m_minimumPaneSize
> minSize
)
621 minSize
= m_minimumPaneSize
;
623 int maxSize
= GetWindowSize() - minSize
- GetBorderSize() - GetSashSize();
624 if ( maxSize
> 0 && sashPos
> maxSize
&& maxSize
>= m_minimumPaneSize
)
631 bool wxSplitterWindow::DoSetSashPosition(int sashPos
)
633 int newSashPosition
= AdjustSashPosition(sashPos
);
635 if ( newSashPosition
== m_sashPosition
)
638 m_sashPosition
= newSashPosition
;
643 void wxSplitterWindow::SetSashPositionAndNotify(int sashPos
)
645 // we must reset the request here, otherwise the sash would be stuck at
646 // old position if the user attempted to move the sash after invalid
647 // (e.g. smaller than minsize) sash position was requested using
648 // SetSashPosition():
649 m_requestedSashPosition
= INT_MAX
;
651 // note that we must send the event in any case, i.e. even if the sash
652 // position hasn't changed and DoSetSashPosition() returns false because we
653 // must generate a CHANGED event at the end of resizing
654 DoSetSashPosition(sashPos
);
656 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, this);
657 event
.m_data
.pos
= m_sashPosition
;
659 (void)DoSendEvent(event
);
662 // Position and size subwindows.
663 // Note that the border size applies to each subwindow, not
664 // including the edges next to the sash.
665 void wxSplitterWindow::SizeWindows()
667 // check if we have delayed setting the real sash position
668 if ( m_requestedSashPosition
!= INT_MAX
)
670 int newSashPosition
= ConvertSashPosition(m_requestedSashPosition
);
671 if ( newSashPosition
!= m_sashPosition
)
673 DoSetSashPosition(newSashPosition
);
676 if ( newSashPosition
<= m_sashPosition
677 && newSashPosition
>= m_sashPosition
- GetBorderSize() )
679 // don't update it any more
680 m_requestedSashPosition
= INT_MAX
;
685 GetClientSize(&w
, &h
);
687 if ( GetWindow1() && !GetWindow2() )
689 GetWindow1()->SetSize(GetBorderSize(), GetBorderSize(),
690 w
- 2*GetBorderSize(), h
- 2*GetBorderSize());
692 else if ( GetWindow1() && GetWindow2() )
694 const int border
= GetBorderSize(),
695 sash
= GetSashSize();
697 int size1
= GetSashPosition() - border
,
698 size2
= GetSashPosition() + sash
;
700 int x2
, y2
, w1
, h1
, w2
, h2
;
701 if ( GetSplitMode() == wxSPLIT_VERTICAL
)
704 w2
= w
- 2*border
- sash
- w1
;
714 else // horz splitter
721 h2
= h
- 2*border
- sash
- h1
;
728 GetWindow2()->SetSize(x2
, y2
, w2
, h2
);
729 GetWindow1()->SetSize(border
, border
, w1
, h1
);
736 // Set pane for unsplit window
737 void wxSplitterWindow::Initialize(wxWindow
*window
)
739 wxASSERT_MSG( (!window
|| window
->GetParent() == this),
740 wxT("windows in the splitter should have it as parent!") );
742 if (window
&& !window
->IsShown())
745 m_windowOne
= window
;
747 DoSetSashPosition(0);
750 // Associates the given window with window 2, drawing the appropriate sash
751 // and changing the split mode.
752 // Does nothing and returns false if the window is already split.
753 bool wxSplitterWindow::DoSplit(wxSplitMode mode
,
754 wxWindow
*window1
, wxWindow
*window2
,
760 wxCHECK_MSG( window1
&& window2
, false,
761 wxT("cannot split with NULL window(s)") );
763 wxCHECK_MSG( window1
->GetParent() == this && window2
->GetParent() == this, false,
764 wxT("windows in the splitter should have it as parent!") );
766 if (! window1
->IsShown())
768 if (! window2
->IsShown())
772 m_windowOne
= window1
;
773 m_windowTwo
= window2
;
776 SetSashPosition(sashPosition
, true);
780 int wxSplitterWindow::ConvertSashPosition(int sashPosition
) const
782 if ( sashPosition
> 0 )
786 else if ( sashPosition
< 0 )
788 // It's negative so adding is subtracting
789 return GetWindowSize() + sashPosition
;
791 else // sashPosition == 0
793 // default, put it in the centre
794 return GetWindowSize() / 2;
798 // Remove the specified (or second) window from the view
799 // Doesn't actually delete the window.
800 bool wxSplitterWindow::Unsplit(wxWindow
*toRemove
)
806 if ( toRemove
== NULL
|| toRemove
== m_windowTwo
)
811 else if ( toRemove
== m_windowOne
)
814 m_windowOne
= m_windowTwo
;
819 wxFAIL_MSG(wxT("splitter: attempt to remove a non-existent window"));
825 DoSetSashPosition(0);
831 // Replace a window with another one
832 bool wxSplitterWindow::ReplaceWindow(wxWindow
*winOld
, wxWindow
*winNew
)
834 wxCHECK_MSG( winOld
, false, wxT("use one of Split() functions instead") );
835 wxCHECK_MSG( winNew
, false, wxT("use Unsplit() functions instead") );
837 if ( winOld
== m_windowTwo
)
839 m_windowTwo
= winNew
;
841 else if ( winOld
== m_windowOne
)
843 m_windowOne
= winNew
;
847 wxFAIL_MSG(wxT("splitter: attempt to replace a non-existent window"));
857 void wxSplitterWindow::SetMinimumPaneSize(int min
)
859 m_minimumPaneSize
= min
;
860 int pos
= m_requestedSashPosition
!= INT_MAX
? m_requestedSashPosition
: m_sashPosition
;
861 SetSashPosition(pos
); // re-check limits
864 void wxSplitterWindow::SetSashPosition(int position
, bool redraw
)
866 // remember the sash position we want to set for later if we can't set it
867 // right now (e.g. because the window is too small)
868 m_requestedSashPosition
= position
;
870 DoSetSashPosition(ConvertSashPosition(position
));
878 // Make sure the child window sizes are updated. This is useful
879 // for reducing flicker by updating the sizes before a
880 // window is shown, if you know the overall size is correct.
881 void wxSplitterWindow::UpdateSize()
886 bool wxSplitterWindow::DoSendEvent(wxSplitterEvent
& event
)
888 return !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed();
891 wxSize
wxSplitterWindow::DoGetBestSize() const
893 // get best sizes of subwindows
896 size1
= m_windowOne
->GetEffectiveMinSize();
898 size2
= m_windowTwo
->GetEffectiveMinSize();
902 // pSash points to the size component to which sash size must be added
905 if ( m_splitMode
== wxSPLIT_VERTICAL
)
907 sizeBest
.y
= wxMax(size1
.y
, size2
.y
);
908 sizeBest
.x
= wxMax(size1
.x
, m_minimumPaneSize
) +
909 wxMax(size2
.x
, m_minimumPaneSize
);
913 else // wxSPLIT_HORIZONTAL
915 sizeBest
.x
= wxMax(size1
.x
, size2
.x
);
916 sizeBest
.y
= wxMax(size1
.y
, m_minimumPaneSize
) +
917 wxMax(size2
.y
, m_minimumPaneSize
);
922 // account for the sash if the window is actually split
923 if ( m_windowOne
&& m_windowTwo
)
924 *pSash
+= GetSashSize();
926 // account for the border too
927 int border
= 2*GetBorderSize();
928 sizeBest
.x
+= border
;
929 sizeBest
.y
+= border
;
934 // ---------------------------------------------------------------------------
935 // wxSplitterWindow virtual functions: they now just generate the events
936 // ---------------------------------------------------------------------------
938 bool wxSplitterWindow::OnSashPositionChange(int WXUNUSED(newSashPosition
))
940 // always allow by default
944 int wxSplitterWindow::OnSashPositionChanging(int newSashPosition
)
946 // If within UNSPLIT_THRESHOLD from edge, set to edge to cause closure.
947 const int UNSPLIT_THRESHOLD
= 4;
949 // first of all, check if OnSashPositionChange() doesn't forbid this change
950 if ( !OnSashPositionChange(newSashPosition
) )
956 // Obtain relevant window dimension for bottom / right threshold check
957 int window_size
= GetWindowSize();
959 bool unsplit_scenario
= false;
960 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
962 // Do edge detection if unsplit premitted
963 if ( newSashPosition
<= UNSPLIT_THRESHOLD
)
965 // threshold top / left check
967 unsplit_scenario
= true;
969 if ( newSashPosition
>= window_size
- UNSPLIT_THRESHOLD
)
971 // threshold bottom/right check
972 newSashPosition
= window_size
;
973 unsplit_scenario
= true;
977 if ( !unsplit_scenario
)
979 // If resultant pane would be too small, enlarge it
980 newSashPosition
= AdjustSashPosition(newSashPosition
);
982 // If the result is out of bounds it means minimum size is too big,
983 // so split window in half as best compromise.
984 if ( newSashPosition
< 0 || newSashPosition
> window_size
)
985 newSashPosition
= window_size
/ 2;
988 // now let the event handler have it
990 // FIXME: shouldn't we do it before the adjustments above so as to ensure
991 // that the sash position is always reasonable?
992 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, this);
993 event
.m_data
.pos
= newSashPosition
;
995 if ( !DoSendEvent(event
) )
997 // the event handler vetoed the change
998 newSashPosition
= -1;
1002 // it could have been changed by it
1003 newSashPosition
= event
.GetSashPosition();
1006 return newSashPosition
;
1009 // Called when the sash is double-clicked. The default behaviour is to remove
1010 // the sash if the minimum pane size is zero.
1011 void wxSplitterWindow::OnDoubleClickSash(int x
, int y
)
1013 wxCHECK_RET(m_windowTwo
, wxT("splitter: no window to remove"));
1015 // new code should handle events instead of using the virtual functions
1016 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, this);
1017 event
.m_data
.pt
.x
= x
;
1018 event
.m_data
.pt
.y
= y
;
1019 if ( DoSendEvent(event
) )
1021 if ( GetMinimumPaneSize() == 0 || m_permitUnsplitAlways
)
1023 wxWindow
* win
= m_windowTwo
;
1026 wxSplitterEvent
unsplitEvent(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
1027 unsplitEvent
.m_data
.win
= win
;
1028 (void)DoSendEvent(unsplitEvent
);
1032 //else: blocked by user
1035 void wxSplitterWindow::OnUnsplit(wxWindow
*winRemoved
)
1037 // call this before calling the event handler which may delete the window
1038 winRemoved
->Show(false);
1041 #if defined( __WXMSW__ ) || defined( __WXMAC__)
1043 // this is currently called (and needed) under MSW only...
1044 void wxSplitterWindow::OnSetCursor(wxSetCursorEvent
& event
)
1046 // if we don't do it, the resizing cursor might be set for child window:
1047 // and like this we explicitly say that our cursor should not be used for
1048 // children windows which overlap us
1050 if ( SashHitTest(event
.GetX(), event
.GetY(), 0) )
1052 // default processing is ok
1055 //else: do nothing, in particular, don't call Skip()
1058 #endif // wxMSW || wxMac
1060 #endif // wxUSE_SPLITTER