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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
13 #pragma implementation "splitter.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
26 #include "wx/string.h"
30 #include "wx/dcscreen.h"
32 #include "wx/window.h"
33 #include "wx/dialog.h"
36 #include "wx/settings.h"
40 #include "wx/mac/private.h"
43 #include "wx/renderer.h"
45 #include "wx/splitter.h"
49 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
)
50 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
)
51 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
)
52 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_UNSPLIT
)
54 IMPLEMENT_DYNAMIC_CLASS(wxSplitterWindow
, wxWindow
)
65 IMPLEMENT_DYNAMIC_CLASS(wxSplitterEvent
, wxNotifyEvent
)
67 BEGIN_EVENT_TABLE(wxSplitterWindow
, wxWindow
)
68 EVT_PAINT(wxSplitterWindow::OnPaint
)
69 EVT_SIZE(wxSplitterWindow::OnSize
)
70 EVT_MOUSE_EVENTS(wxSplitterWindow::OnMouseEvent
)
72 #if defined( __WXMSW__ ) || defined( __WXMAC__)
73 EVT_SET_CURSOR(wxSplitterWindow::OnSetCursor
)
76 WX_EVENT_TABLE_CONTROL_CONTAINER(wxSplitterWindow
)
79 WX_DELEGATE_TO_CONTROL_CONTAINER(wxSplitterWindow
);
81 bool wxSplitterWindow::Create(wxWindow
*parent
, wxWindowID id
,
87 // allow TABbing from one window to the other
88 style
|= wxTAB_TRAVERSAL
;
90 // we draw our border ourselves to blend the sash with it
91 style
&= ~wxBORDER_MASK
;
92 style
|= wxBORDER_NONE
;
94 if ( !wxWindow::Create(parent
, id
, pos
, size
, style
, name
) )
97 m_permitUnsplitAlways
= (style
& wxSP_PERMIT_UNSPLIT
) != 0;
99 // FIXME: with this line the background is not erased at all under GTK1,
100 // so temporary avoid it there
101 #if !defined(__WXGTK__) || defined(__WXGTK20__)
102 // don't erase the splitter background, it's pointless as we overwrite it
104 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
110 void wxSplitterWindow::Init()
112 m_container
.SetContainerWindow(this);
114 m_splitMode
= wxSPLIT_VERTICAL
;
115 m_permitUnsplitAlways
= true;
116 m_windowOne
= (wxWindow
*) NULL
;
117 m_windowTwo
= (wxWindow
*) NULL
;
118 m_dragMode
= wxSPLIT_DRAG_NONE
;
123 m_sashPosition
= m_requestedSashPosition
= 0;
125 m_sashSize
= -1; // -1 means use the native sash size
126 m_lastSize
= wxSize(0,0);
127 m_checkRequestedSashPosition
= false;
128 m_minimumPaneSize
= 0;
129 m_sashCursorWE
= wxCursor(wxCURSOR_SIZEWE
);
130 m_sashCursorNS
= wxCursor(wxCURSOR_SIZENS
);
131 m_sashTrackerPen
= new wxPen(*wxBLACK
, 2, wxSOLID
);
133 m_needUpdating
= false;
137 wxSplitterWindow::~wxSplitterWindow()
139 delete m_sashTrackerPen
;
142 // ----------------------------------------------------------------------------
143 // entering/leaving sash
144 // ----------------------------------------------------------------------------
146 void wxSplitterWindow::RedrawIfHotSensitive(bool isHot
)
148 if ( wxRendererNative::Get().GetSplitterParams(this).isHotSensitive
)
155 //else: we don't change our appearance, don't redraw to avoid flicker
158 void wxSplitterWindow::OnEnterSash()
162 RedrawIfHotSensitive(true);
165 void wxSplitterWindow::OnLeaveSash()
167 SetCursor(*wxSTANDARD_CURSOR
);
169 RedrawIfHotSensitive(false);
172 void wxSplitterWindow::SetResizeCursor()
174 SetCursor(m_splitMode
== wxSPLIT_VERTICAL
? m_sashCursorWE
178 // ----------------------------------------------------------------------------
179 // other event handlers
180 // ----------------------------------------------------------------------------
182 void wxSplitterWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
189 void wxSplitterWindow::OnInternalIdle()
191 wxWindow::OnInternalIdle();
193 // if this is the first idle time after a sash position has potentially
194 // been set, allow SizeWindows to check for a requested size.
195 if (!m_checkRequestedSashPosition
)
197 m_checkRequestedSashPosition
= true;
199 return; // it won't needUpdating in this case
206 void wxSplitterWindow::OnMouseEvent(wxMouseEvent
& event
)
208 int x
= (int)event
.GetX(),
209 y
= (int)event
.GetY();
211 if (GetWindowStyle() & wxSP_NOSASH
)
214 // with wxSP_LIVE_UPDATE style the splitter windows are always resized
215 // following the mouse movement while it drags the sash, without it we only
216 // draw the sash at the new position but only resize the windows when the
217 // dragging is finished
218 #if defined( __WXMAC__ ) && TARGET_API_MAC_OSX == 1
221 bool isLive
= (GetWindowStyleFlag() & wxSP_LIVE_UPDATE
) != 0;
223 if (event
.LeftDown())
225 if ( SashHitTest(x
, y
) )
227 // Start the drag now
228 m_dragMode
= wxSPLIT_DRAG_DRAGGING
;
230 // Capture mouse and set the cursor
236 // remember the initial sash position and draw the initial
238 m_sashPositionCurrent
= m_sashPosition
;
240 DrawSashTracker(x
, y
);
250 else if (event
.LeftUp() && m_dragMode
== wxSPLIT_DRAG_DRAGGING
)
252 // We can stop dragging now and see what we've got.
253 m_dragMode
= wxSPLIT_DRAG_NONE
;
255 // Release mouse and unset the cursor
257 SetCursor(* wxSTANDARD_CURSOR
);
259 // exit if unsplit after doubleclick
268 DrawSashTracker(m_oldX
, m_oldY
);
271 // the position of the click doesn't exactly correspond to
272 // m_sashPosition, rather it changes it by the distance by which the
274 int diff
= m_splitMode
== wxSPLIT_VERTICAL
? x
- m_oldX
: y
- m_oldY
;
276 int posSashOld
= isLive
? m_sashPosition
: m_sashPositionCurrent
;
277 int posSashNew
= OnSashPositionChanging(posSashOld
+ diff
);
278 if ( posSashNew
== -1 )
280 // change not allowed
284 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
286 // Deal with possible unsplit scenarios
287 if ( posSashNew
== 0 )
289 // We remove the first window from the view
290 wxWindow
*removedWindow
= m_windowOne
;
291 m_windowOne
= m_windowTwo
;
292 m_windowTwo
= (wxWindow
*) NULL
;
293 OnUnsplit(removedWindow
);
294 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
295 event
.m_data
.win
= removedWindow
;
296 (void)DoSendEvent(event
);
297 SetSashPositionAndNotify(0);
299 else if ( posSashNew
== GetWindowSize() )
301 // We remove the second window from the view
302 wxWindow
*removedWindow
= m_windowTwo
;
303 m_windowTwo
= (wxWindow
*) NULL
;
304 OnUnsplit(removedWindow
);
305 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
306 event
.m_data
.win
= removedWindow
;
307 (void)DoSendEvent(event
);
308 SetSashPositionAndNotify(0);
312 SetSashPositionAndNotify(posSashNew
);
317 SetSashPositionAndNotify(posSashNew
);
321 } // left up && dragging
322 else if ((event
.Moving() || event
.Leaving() || event
.Entering()) && (m_dragMode
== wxSPLIT_DRAG_NONE
))
324 if ( event
.Leaving() || !SashHitTest(x
, y
) )
329 else if (event
.Dragging() && (m_dragMode
== wxSPLIT_DRAG_DRAGGING
))
331 int diff
= m_splitMode
== wxSPLIT_VERTICAL
? x
- m_oldX
: y
- m_oldY
;
334 // nothing to do, mouse didn't really move far enough
338 int posSashOld
= isLive
? m_sashPosition
: m_sashPositionCurrent
;
339 int posSashNew
= OnSashPositionChanging(posSashOld
+ diff
);
340 if ( posSashNew
== -1 )
342 // change not allowed
346 if ( posSashNew
== m_sashPosition
)
352 DrawSashTracker(m_oldX
, m_oldY
);
355 if (m_splitMode
== wxSPLIT_VERTICAL
)
360 // Remember old positions
365 // As we captured the mouse, we may get the mouse events from outside
366 // our window - for example, negative values in x, y. This has a weird
367 // consequence under MSW where we use unsigned values sometimes and
368 // signed ones other times: the coordinates turn as big positive
369 // numbers and so the sash is drawn on the *right* side of the window
370 // instead of the left (or bottom instead of top). Correct this.
371 if ( (short)m_oldX
< 0 )
373 if ( (short)m_oldY
< 0 )
380 m_sashPositionCurrent
= posSashNew
;
382 DrawSashTracker(m_oldX
, m_oldY
);
386 SetSashPositionAndNotify(posSashNew
);
387 m_needUpdating
= true;
390 else if ( event
.LeftDClick() && m_windowTwo
)
392 OnDoubleClickSash(x
, y
);
396 void wxSplitterWindow::OnSize(wxSizeEvent
& event
)
398 // only process this message if we're not iconized - otherwise iconizing
399 // and restoring a window containing the splitter has a funny side effect
400 // of changing the splitter position!
401 wxWindow
*parent
= wxGetTopLevelParent(this);
404 wxTopLevelWindow
*winTop
= wxDynamicCast(parent
, wxTopLevelWindow
);
407 iconized
= winTop
->IsIconized();
411 wxFAIL_MSG(wxT("should have a top level parent!"));
418 m_lastSize
= wxSize(0,0);
428 GetClientSize(&w
, &h
);
430 int size
= m_splitMode
== wxSPLIT_VERTICAL
? w
: h
;
432 int old_size
= m_splitMode
== wxSPLIT_VERTICAL
? m_lastSize
.x
: m_lastSize
.y
;
435 int delta
= (int) ( (size
- old_size
)*m_sashGravity
);
438 int newPosition
= m_sashPosition
+ delta
;
439 if( newPosition
< m_minimumPaneSize
)
440 newPosition
= m_minimumPaneSize
;
441 SetSashPositionAndNotify(newPosition
);
445 if ( m_sashPosition
>= size
- 5 )
446 SetSashPositionAndNotify(wxMax(10, size
- 40));
447 m_lastSize
= wxSize(w
,h
);
453 void wxSplitterWindow::SetSashGravity(double gravity
)
455 wxCHECK_RET( gravity
>= 0. && gravity
<= 1.,
456 _T("invalid gravity value") );
458 m_sashGravity
= gravity
;
461 bool wxSplitterWindow::SashHitTest(int x
, int y
, int tolerance
)
463 if ( m_windowTwo
== NULL
|| m_sashPosition
== 0)
464 return false; // No sash
466 int z
= m_splitMode
== wxSPLIT_VERTICAL
? x
: y
;
467 int hitMin
= m_sashPosition
- tolerance
;
468 int hitMax
= m_sashPosition
+ GetSashSize() + tolerance
;
470 return z
>= hitMin
&& z
<= hitMax
;
473 int wxSplitterWindow::GetSashSize() const
475 return m_sashSize
> -1 ? m_sashSize
: wxRendererNative::Get().GetSplitterParams(this).widthSash
;
478 int wxSplitterWindow::GetBorderSize() const
480 return wxRendererNative::Get().GetSplitterParams(this).border
;
484 void wxSplitterWindow::DrawSash(wxDC
& dc
)
486 if (HasFlag(wxSP_3DBORDER
))
487 wxRendererNative::Get().DrawSplitterBorder
494 // don't draw sash if we're not split
495 if ( m_sashPosition
== 0 || !m_windowTwo
)
498 // nor if we're configured to not show it
499 if ( HasFlag(wxSP_NOSASH
) )
502 wxRendererNative::Get().DrawSplitterSash
508 m_splitMode
== wxSPLIT_VERTICAL
? wxVERTICAL
510 m_isHot
? (int)wxCONTROL_CURRENT
: 0
514 // Draw the sash tracker (for whilst moving the sash)
515 void wxSplitterWindow::DrawSashTracker(int x
, int y
)
518 GetClientSize(&w
, &h
);
524 if ( m_splitMode
== wxSPLIT_VERTICAL
)
555 ClientToScreen(&x1
, &y1
);
556 ClientToScreen(&x2
, &y2
);
558 screenDC
.SetLogicalFunction(wxINVERT
);
559 screenDC
.SetPen(*m_sashTrackerPen
);
560 screenDC
.SetBrush(*wxTRANSPARENT_BRUSH
);
562 screenDC
.DrawLine(x1
, y1
, x2
, y2
);
564 screenDC
.SetLogicalFunction(wxCOPY
);
567 int wxSplitterWindow::GetWindowSize() const
569 wxSize size
= GetClientSize();
571 return m_splitMode
== wxSPLIT_VERTICAL
? size
.x
: size
.y
;
574 int wxSplitterWindow::AdjustSashPosition(int sashPos
) const
576 int window_size
= GetWindowSize();
583 // the window shouldn't be smaller than its own minimal size nor
584 // smaller than the minimual pane size specified for this splitter
585 int minSize
= m_splitMode
== wxSPLIT_VERTICAL
? win
->GetMinWidth()
586 : win
->GetMinHeight();
588 if ( minSize
== -1 || m_minimumPaneSize
> minSize
)
589 minSize
= m_minimumPaneSize
;
591 minSize
+= GetBorderSize();
593 if ( sashPos
< minSize
)
600 int minSize
= m_splitMode
== wxSPLIT_VERTICAL
? win
->GetMinWidth()
601 : win
->GetMinHeight();
603 if ( minSize
== -1 || m_minimumPaneSize
> minSize
)
604 minSize
= m_minimumPaneSize
;
606 int maxSize
= window_size
- minSize
- GetBorderSize() - GetSashSize();
607 if ( sashPos
> maxSize
)
614 bool wxSplitterWindow::DoSetSashPosition(int sashPos
)
616 int newSashPosition
= AdjustSashPosition(sashPos
);
618 if ( newSashPosition
== m_sashPosition
)
621 m_sashPosition
= newSashPosition
;
626 void wxSplitterWindow::SetSashPositionAndNotify(int sashPos
)
628 // we must reset the request here, otherwise the sash would be stuck at
629 // old position if the user attempted to move the sash after invalid
630 // (e.g. smaller than minsize) sash position was requested using
631 // SetSashPosition():
632 m_requestedSashPosition
= INT_MAX
;
634 if ( DoSetSashPosition(sashPos
) )
636 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, this);
637 event
.m_data
.pos
= m_sashPosition
;
639 (void)DoSendEvent(event
);
643 // Position and size subwindows.
644 // Note that the border size applies to each subwindow, not
645 // including the edges next to the sash.
646 void wxSplitterWindow::SizeWindows()
648 // check if we have delayed setting the real sash position
649 if ( m_checkRequestedSashPosition
&& m_requestedSashPosition
!= INT_MAX
)
651 int newSashPosition
= ConvertSashPosition(m_requestedSashPosition
);
652 if ( newSashPosition
!= m_sashPosition
)
654 DoSetSashPosition(newSashPosition
);
657 if ( newSashPosition
<= m_sashPosition
658 && newSashPosition
>= m_sashPosition
- GetBorderSize() )
660 // don't update it any more
661 m_requestedSashPosition
= INT_MAX
;
666 GetClientSize(&w
, &h
);
668 if ( GetWindow1() && !GetWindow2() )
670 GetWindow1()->SetSize(GetBorderSize(), GetBorderSize(),
671 w
- 2*GetBorderSize(), h
- 2*GetBorderSize());
673 else if ( GetWindow1() && GetWindow2() )
675 const int border
= GetBorderSize(),
676 sash
= GetSashSize();
678 int size1
= GetSashPosition() - border
,
679 size2
= GetSashPosition() + sash
;
681 int x2
, y2
, w1
, h1
, w2
, h2
;
682 if ( GetSplitMode() == wxSPLIT_VERTICAL
)
685 w2
= w
- 2*border
- sash
- w1
;
691 else // horz splitter
696 h2
= h
- 2*border
- sash
- h1
;
701 GetWindow1()->SetSize(border
, border
, w1
, h1
);
702 GetWindow2()->SetSize(x2
, y2
, w2
, h2
);
708 SetNeedUpdating(false);
711 // Set pane for unsplit window
712 void wxSplitterWindow::Initialize(wxWindow
*window
)
714 wxASSERT_MSG( (!window
|| (window
&& window
->GetParent() == this)),
715 _T("windows in the splitter should have it as parent!") );
717 if (! window
->IsShown())
720 m_windowOne
= window
;
721 m_windowTwo
= (wxWindow
*) NULL
;
722 DoSetSashPosition(0);
725 // Associates the given window with window 2, drawing the appropriate sash
726 // and changing the split mode.
727 // Does nothing and returns false if the window is already split.
728 bool wxSplitterWindow::DoSplit(wxSplitMode mode
,
729 wxWindow
*window1
, wxWindow
*window2
,
735 wxCHECK_MSG( window1
&& window2
, false,
736 _T("can not split with NULL window(s)") );
738 wxCHECK_MSG( window1
->GetParent() == this && window2
->GetParent() == this, false,
739 _T("windows in the splitter should have it as parent!") );
741 if (! window1
->IsShown())
743 if (! window2
->IsShown())
747 m_windowOne
= window1
;
748 m_windowTwo
= window2
;
750 // remember the sash position we want to set for later if we can't set it
751 // right now (e.g. because the window is too small)
752 m_requestedSashPosition
= sashPosition
;
753 m_checkRequestedSashPosition
= false;
755 DoSetSashPosition(ConvertSashPosition(sashPosition
));
762 int wxSplitterWindow::ConvertSashPosition(int sashPosition
) const
764 if ( sashPosition
> 0 )
768 else if ( sashPosition
< 0 )
770 // It's negative so adding is subtracting
771 return GetWindowSize() + sashPosition
;
773 else // sashPosition == 0
775 // default, put it in the centre
776 return GetWindowSize() / 2;
780 // Remove the specified (or second) window from the view
781 // Doesn't actually delete the window.
782 bool wxSplitterWindow::Unsplit(wxWindow
*toRemove
)
788 if ( toRemove
== NULL
|| toRemove
== m_windowTwo
)
791 m_windowTwo
= (wxWindow
*) NULL
;
793 else if ( toRemove
== m_windowOne
)
796 m_windowOne
= m_windowTwo
;
797 m_windowTwo
= (wxWindow
*) NULL
;
801 wxFAIL_MSG(wxT("splitter: attempt to remove a non-existent window"));
807 DoSetSashPosition(0);
813 // Replace a window with another one
814 bool wxSplitterWindow::ReplaceWindow(wxWindow
*winOld
, wxWindow
*winNew
)
816 wxCHECK_MSG( winOld
, false, wxT("use one of Split() functions instead") );
817 wxCHECK_MSG( winNew
, false, wxT("use Unsplit() functions instead") );
819 if ( winOld
== m_windowTwo
)
821 m_windowTwo
= winNew
;
823 else if ( winOld
== m_windowOne
)
825 m_windowOne
= winNew
;
829 wxFAIL_MSG(wxT("splitter: attempt to replace a non-existent window"));
839 void wxSplitterWindow::SetMinimumPaneSize(int min
)
841 m_minimumPaneSize
= min
;
842 int pos
= m_requestedSashPosition
!= INT_MAX
? m_requestedSashPosition
: m_sashPosition
;
843 SetSashPosition(pos
); // re-check limits
846 void wxSplitterWindow::SetSashPosition(int position
, bool redraw
)
848 // remember the sash position we want to set for later if we can't set it
849 // right now (e.g. because the window is too small)
850 m_requestedSashPosition
= position
;
851 m_checkRequestedSashPosition
= false;
853 DoSetSashPosition(ConvertSashPosition(position
));
861 // Make sure the child window sizes are updated. This is useful
862 // for reducing flicker by updating the sizes before a
863 // window is shown, if you know the overall size is correct.
864 void wxSplitterWindow::UpdateSize()
866 m_checkRequestedSashPosition
= true;
868 m_checkRequestedSashPosition
= false;
871 bool wxSplitterWindow::DoSendEvent(wxSplitterEvent
& event
)
873 return !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed();
876 wxSize
wxSplitterWindow::DoGetBestSize() const
878 // get best sizes of subwindows
881 size1
= m_windowOne
->GetAdjustedBestSize();
883 size2
= m_windowTwo
->GetAdjustedBestSize();
887 // pSash points to the size component to which sash size must be added
890 if ( m_splitMode
== wxSPLIT_VERTICAL
)
892 sizeBest
.y
= wxMax(size1
.y
, size2
.y
);
893 sizeBest
.x
= wxMax(size1
.x
, m_minimumPaneSize
) +
894 wxMax(size2
.x
, m_minimumPaneSize
);
898 else // wxSPLIT_HORIZONTAL
900 sizeBest
.x
= wxMax(size1
.x
, size2
.x
);
901 sizeBest
.y
= wxMax(size1
.y
, m_minimumPaneSize
) +
902 wxMax(size2
.y
, m_minimumPaneSize
);
907 // account for the border and the sash
908 int border
= 2*GetBorderSize();
909 *pSash
+= GetSashSize();
910 sizeBest
.x
+= border
;
911 sizeBest
.y
+= border
;
916 // ---------------------------------------------------------------------------
917 // wxSplitterWindow virtual functions: they now just generate the events
918 // ---------------------------------------------------------------------------
920 bool wxSplitterWindow::OnSashPositionChange(int WXUNUSED(newSashPosition
))
922 // always allow by default
926 int wxSplitterWindow::OnSashPositionChanging(int newSashPosition
)
928 // If within UNSPLIT_THRESHOLD from edge, set to edge to cause closure.
929 const int UNSPLIT_THRESHOLD
= 4;
931 // first of all, check if OnSashPositionChange() doesn't forbid this change
932 if ( !OnSashPositionChange(newSashPosition
) )
938 // Obtain relevant window dimension for bottom / right threshold check
939 int window_size
= GetWindowSize();
941 bool unsplit_scenario
= false;
942 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
944 // Do edge detection if unsplit premitted
945 if ( newSashPosition
<= UNSPLIT_THRESHOLD
)
947 // threshold top / left check
949 unsplit_scenario
= true;
951 if ( newSashPosition
>= window_size
- UNSPLIT_THRESHOLD
)
953 // threshold bottom/right check
954 newSashPosition
= window_size
;
955 unsplit_scenario
= true;
959 if ( !unsplit_scenario
)
961 // If resultant pane would be too small, enlarge it
962 newSashPosition
= AdjustSashPosition(newSashPosition
);
965 // If the result is out of bounds it means minimum size is too big,
966 // so split window in half as best compromise.
967 if ( newSashPosition
< 0 || newSashPosition
> window_size
)
968 newSashPosition
= window_size
/ 2;
970 // now let the event handler have it
972 // FIXME: shouldn't we do it before the adjustments above so as to ensure
973 // that the sash position is always reasonable?
974 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, this);
975 event
.m_data
.pos
= newSashPosition
;
977 if ( !DoSendEvent(event
) )
979 // the event handler vetoed the change
980 newSashPosition
= -1;
984 // it could have been changed by it
985 newSashPosition
= event
.GetSashPosition();
988 return newSashPosition
;
991 // Called when the sash is double-clicked. The default behaviour is to remove
992 // the sash if the minimum pane size is zero.
993 void wxSplitterWindow::OnDoubleClickSash(int x
, int y
)
995 wxCHECK_RET(m_windowTwo
, wxT("splitter: no window to remove"));
997 // new code should handle events instead of using the virtual functions
998 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, this);
999 event
.m_data
.pt
.x
= x
;
1000 event
.m_data
.pt
.y
= y
;
1001 if ( DoSendEvent(event
) )
1003 if ( GetMinimumPaneSize() == 0 || m_permitUnsplitAlways
)
1005 wxWindow
* win
= m_windowTwo
;
1008 wxSplitterEvent
unsplitEvent(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
1009 unsplitEvent
.m_data
.win
= win
;
1010 (void)DoSendEvent(unsplitEvent
);
1014 //else: blocked by user
1017 void wxSplitterWindow::OnUnsplit(wxWindow
*winRemoved
)
1019 // call this before calling the event handler which may delete the window
1020 winRemoved
->Show(false);
1023 #if defined( __WXMSW__ ) || defined( __WXMAC__)
1025 // this is currently called (and needed) under MSW only...
1026 void wxSplitterWindow::OnSetCursor(wxSetCursorEvent
& event
)
1028 // if we don't do it, the resizing cursor might be set for child window:
1029 // and like this we explicitly say that our cursor should not be used for
1030 // children windows which overlap us
1032 if ( SashHitTest(event
.GetX(), event
.GetY(), 0) )
1034 // default processing is ok
1037 //else: do nothing, in particular, don't call Skip()
1040 #endif // wxMSW || wxMac
1042 #endif // wxUSE_SPLITTER