1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/splitter.cpp
3 // Purpose: wxSplitterWindow implementation
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart and Markus Holzem
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "splitter.h"
16 // For compilers that support precompilation, includes "wx.h".
17 #include "wx/wxprec.h"
24 #include "wx/window.h"
25 #include "wx/dialog.h"
31 #include "wx/string.h"
32 #include "wx/splitter.h"
33 #include "wx/dcscreen.h"
34 #include "wx/settings.h"
38 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
)
39 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
)
40 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
)
41 DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_UNSPLIT
)
43 IMPLEMENT_DYNAMIC_CLASS(wxSplitterWindow
, wxWindow
)
44 IMPLEMENT_DYNAMIC_CLASS(wxSplitterEvent
, wxNotifyEvent
)
46 BEGIN_EVENT_TABLE(wxSplitterWindow
, wxWindow
)
47 EVT_PAINT(wxSplitterWindow::OnPaint
)
48 EVT_SIZE(wxSplitterWindow::OnSize
)
49 EVT_IDLE(wxSplitterWindow::OnIdle
)
50 EVT_MOUSE_EVENTS(wxSplitterWindow::OnMouseEvent
)
53 EVT_SET_CURSOR(wxSplitterWindow::OnSetCursor
)
56 WX_EVENT_TABLE_CONTROL_CONTAINER(wxSplitterWindow
)
59 WX_DELEGATE_TO_CONTROL_CONTAINER(wxSplitterWindow
);
61 bool wxSplitterWindow::Create(wxWindow
*parent
, wxWindowID id
,
67 // allow TABbing from one window to the other
68 style
|= wxTAB_TRAVERSAL
;
70 if (!wxWindow::Create(parent
, id
, pos
, size
, style
, name
))
73 m_permitUnsplitAlways
= (style
& wxSP_PERMIT_UNSPLIT
) != 0;
75 if ( style
& wxSP_3DSASH
)
80 if ( style
& wxSP_3DBORDER
)
82 else if ( style
& wxSP_BORDER
)
89 wxGetOsVersion( &major
, &minor
);
91 m_windowStyle
|= wxSP_SASH_AQUA
;
97 void wxSplitterWindow::Init()
99 m_container
.SetContainerWindow(this);
101 m_splitMode
= wxSPLIT_VERTICAL
;
102 m_permitUnsplitAlways
= TRUE
;
103 m_windowOne
= (wxWindow
*) NULL
;
104 m_windowTwo
= (wxWindow
*) NULL
;
105 m_dragMode
= wxSPLIT_DRAG_NONE
;
112 m_sashPosition
= m_requestedSashPosition
= 0;
113 m_minimumPaneSize
= 0;
114 m_sashCursorWE
= wxCursor(wxCURSOR_SIZEWE
);
115 m_sashCursorNS
= wxCursor(wxCURSOR_SIZENS
);
116 m_sashTrackerPen
= new wxPen(*wxBLACK
, 2, wxSOLID
);
117 m_lightShadowPen
= (wxPen
*) NULL
;
118 m_mediumShadowPen
= (wxPen
*) NULL
;
119 m_darkShadowPen
= (wxPen
*) NULL
;
120 m_faceBrush
= (wxBrush
*) NULL
;
121 m_facePen
= (wxPen
*) NULL
;
122 m_hilightPen
= (wxPen
*) NULL
;
129 m_needUpdating
= FALSE
;
132 wxSplitterWindow::~wxSplitterWindow()
134 delete m_sashTrackerPen
;
135 delete m_lightShadowPen
;
136 delete m_darkShadowPen
;
137 delete m_mediumShadowPen
;
143 void wxSplitterWindow::SetResizeCursor()
145 SetCursor(m_splitMode
== wxSPLIT_VERTICAL
? m_sashCursorWE
149 void wxSplitterWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
153 if ( m_borderSize
> 0 )
158 void wxSplitterWindow::OnIdle(wxIdleEvent
& event
)
166 void wxSplitterWindow::OnMouseEvent(wxMouseEvent
& event
)
168 int x
= (int)event
.GetX(),
169 y
= (int)event
.GetY();
173 SetCursor(* wxSTANDARD_CURSOR
);
174 #elif defined(__WXMSW__)
175 SetCursor(wxCursor());
178 if (GetWindowStyle() & wxSP_NOSASH
)
181 // with wxSP_LIVE_UPDATE style the splitter windows are always resized
182 // following the mouse movement while it drags the sash, without it we only
183 // draw the sash at the new position but only resize the windows when the
184 // dragging is finished
185 bool isLive
= (GetWindowStyleFlag() & wxSP_LIVE_UPDATE
) != 0;
187 if (event
.LeftDown())
189 if ( SashHitTest(x
, y
) )
193 m_dragMode
= wxSPLIT_DRAG_DRAGGING
;
197 // remember the initial sash position and draw the initial
199 m_sashPositionCurrent
= m_sashPosition
;
201 DrawSashTracker(x
, y
);
211 else if (event
.LeftUp() && m_dragMode
== wxSPLIT_DRAG_DRAGGING
)
213 // We can stop dragging now and see what we've got.
214 m_dragMode
= wxSPLIT_DRAG_NONE
;
220 DrawSashTracker(m_oldX
, m_oldY
);
223 // the position of the click doesn't exactly correspond to
224 // m_sashPosition, rather it changes it by the distance by which the
226 int diff
= m_splitMode
== wxSPLIT_VERTICAL
? x
- m_oldX
: y
- m_oldY
;
228 int posSashOld
= isLive
? m_sashPosition
: m_sashPositionCurrent
;
229 int posSashNew
= OnSashPositionChanging(posSashOld
+ diff
);
230 if ( posSashNew
== -1 )
232 // change not allowed
236 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
238 // Deal with possible unsplit scenarios
239 if ( posSashNew
== 0 )
241 // We remove the first window from the view
242 wxWindow
*removedWindow
= m_windowOne
;
243 m_windowOne
= m_windowTwo
;
244 m_windowTwo
= (wxWindow
*) NULL
;
245 OnUnsplit(removedWindow
);
246 SetSashPositionAndNotify(0);
248 else if ( posSashNew
== GetWindowSize() )
250 // We remove the second window from the view
251 wxWindow
*removedWindow
= m_windowTwo
;
252 m_windowTwo
= (wxWindow
*) NULL
;
253 OnUnsplit(removedWindow
);
254 SetSashPositionAndNotify(0);
258 SetSashPositionAndNotify(posSashNew
);
263 SetSashPositionAndNotify(posSashNew
);
267 } // left up && dragging
268 else if (event
.Moving() && !event
.Dragging())
270 // Just change the cursor if required
271 if ( SashHitTest(x
, y
) )
275 #if defined(__WXGTK__) || defined(__WXMSW__)
278 // We must set the normal cursor in MSW, because
279 // if the child window doesn't have a cursor, the
280 // parent's (splitter window) will be used, and this
281 // must be the standard cursor.
283 // where else do we unset the cursor?
284 SetCursor(* wxSTANDARD_CURSOR
);
288 else if (event
.Dragging() && (m_dragMode
== wxSPLIT_DRAG_DRAGGING
))
291 // Otherwise, the cursor sometimes reverts to the normal cursor
296 int diff
= m_splitMode
== wxSPLIT_VERTICAL
? x
- m_oldX
: y
- m_oldY
;
298 int posSashOld
= isLive
? m_sashPosition
: m_sashPositionCurrent
;
299 int posSashNew
= OnSashPositionChanging(posSashOld
+ diff
);
300 if ( posSashNew
== -1 )
302 // change not allowed
306 if ( posSashNew
== m_sashPosition
)
312 DrawSashTracker(m_oldX
, m_oldY
);
315 if (m_splitMode
== wxSPLIT_VERTICAL
)
320 // Remember old positions
325 // As we captured the mouse, we may get the mouse events from outside
326 // our window - for example, negative values in x, y. This has a weird
327 // consequence under MSW where we use unsigned values sometimes and
328 // signed ones other times: the coordinates turn as big positive
329 // numbers and so the sash is drawn on the *right* side of the window
330 // instead of the left (or bottom instead of top). Correct this.
331 if ( (short)m_oldX
< 0 )
333 if ( (short)m_oldY
< 0 )
340 m_sashPositionCurrent
= posSashNew
;
342 DrawSashTracker(m_oldX
, m_oldY
);
346 SetSashPositionAndNotify(posSashNew
);
347 m_needUpdating
= TRUE
;
350 else if ( event
.LeftDClick() )
352 OnDoubleClickSash(x
, y
);
356 void wxSplitterWindow::OnSize(wxSizeEvent
& event
)
358 // only process this message if we're not iconized - otherwise iconizing
359 // and restoring a window containing the splitter has a funny side effect
360 // of changing the splitter position!
361 wxWindow
*parent
= GetParent();
362 while ( parent
&& !parent
->IsTopLevel() )
364 parent
= parent
->GetParent();
367 bool iconized
= FALSE
;
369 // wxMotif doesn't yet have a wxTopLevelWindow implementation
371 wxFrame
*winTop
= wxDynamicCast(parent
, wxFrame
);
373 wxTopLevelWindow
*winTop
= wxDynamicCast(parent
, wxTopLevelWindow
);
377 iconized
= winTop
->IsIconized();
382 wxFAIL_MSG(wxT("should have a top level parent!"));
396 GetClientSize( &cw
, &ch
);
399 if ( m_splitMode
== wxSPLIT_VERTICAL
)
401 if ( m_sashPosition
>= (cw
- 5) )
402 SetSashPositionAndNotify(wxMax(10, cw
- 40));
404 else // m_splitMode == wxSPLIT_HORIZONTAL
406 if ( m_sashPosition
>= (ch
- 5) )
407 SetSashPositionAndNotify(wxMax(10, ch
- 40));
414 bool wxSplitterWindow::SashHitTest(int x
, int y
, int tolerance
)
416 if ( m_windowTwo
== NULL
|| m_sashPosition
== 0)
417 return FALSE
; // No sash
419 if ( m_splitMode
== wxSPLIT_VERTICAL
)
421 if ( (x
>= m_sashPosition
- tolerance
) && (x
<= m_sashPosition
+ m_sashSize
+ tolerance
) )
428 if ( (y
>= (m_sashPosition
- tolerance
)) && (y
<= (m_sashPosition
+ m_sashSize
+ tolerance
)) )
435 // Draw 3D effect borders
436 void wxSplitterWindow::DrawBorders(wxDC
& dc
)
439 GetClientSize(&w
, &h
);
441 if ( GetWindowStyleFlag() & wxSP_3DBORDER
)
444 dc
.SetPen(*m_facePen
);
445 dc
.SetBrush(*m_faceBrush
);
446 dc
.DrawRectangle(1, 1 , w
-1, m_borderSize
-2 ); //high
447 dc
.DrawRectangle(1, m_borderSize
-2 , m_borderSize
-2, h
-1 ); // left
448 dc
.DrawRectangle(w
-m_borderSize
+2, m_borderSize
-2 , w
-1, h
-1 ); // right
449 dc
.DrawRectangle(m_borderSize
-2, h
-m_borderSize
+2 , w
-m_borderSize
+2, h
-1 ); //bottom
451 dc
.SetPen(*m_mediumShadowPen
);
452 dc
.DrawLine(m_borderSize
-2, m_borderSize
-2, w
-m_borderSize
+1, m_borderSize
-2);
453 dc
.DrawLine(m_borderSize
-2, m_borderSize
-2, m_borderSize
-2, h
-m_borderSize
+1);
455 dc
.SetPen(*m_darkShadowPen
);
456 dc
.DrawLine(m_borderSize
-1, m_borderSize
-1, w
-m_borderSize
, m_borderSize
-1);
457 dc
.DrawLine(m_borderSize
-1, m_borderSize
-1, m_borderSize
-1, h
-m_borderSize
);
459 dc
.SetPen(*m_hilightPen
);
460 dc
.DrawLine(m_borderSize
- 2, h
-m_borderSize
+1, w
-m_borderSize
+1, h
-m_borderSize
+1);
461 dc
.DrawLine(w
-m_borderSize
+1, m_borderSize
- 2, w
-m_borderSize
+1, h
-m_borderSize
+2); // Surely the maximum y pos. should be h - 1.
462 /// Anyway, h is required for MSW.
464 dc
.SetPen(*m_lightShadowPen
);
465 dc
.DrawLine(w
-m_borderSize
, m_borderSize
-1, w
-m_borderSize
, h
-m_borderSize
); // Right hand side
466 dc
.DrawLine(m_borderSize
-1, h
-m_borderSize
, w
-m_borderSize
+1, h
-m_borderSize
); // Bottom
468 else if ( GetWindowStyleFlag() & wxSP_BORDER
)
470 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
471 dc
.SetPen(*wxBLACK_PEN
);
472 dc
.DrawRectangle(0, 0, w
-1, h
-1);
475 dc
.SetPen(wxNullPen
);
476 dc
.SetBrush(wxNullBrush
);
480 void wxSplitterWindow::DrawSash(wxDC
& dc
)
482 if ( m_sashPosition
== 0 || !m_windowTwo
)
484 if (GetWindowStyle() & wxSP_NOSASH
)
488 GetClientSize(&w
, &h
);
490 if ( GetWindowStyleFlag() & wxSP_3DSASH
)
492 if ( m_splitMode
== wxSPLIT_VERTICAL
)
494 dc
.SetPen(*m_facePen
);
496 if (HasFlag( wxSP_SASH_AQUA
))
497 dc
.SetBrush(*wxWHITE_BRUSH
);
499 dc
.SetBrush(*m_faceBrush
);
500 dc
.DrawRectangle(m_sashPosition
+ 2, 0 , m_sashSize
- 4, h
);
502 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
504 dc
.SetPen(*m_lightShadowPen
);
505 int xShadow
= m_borderSize
? m_borderSize
- 1 : 0 ;
506 dc
.DrawLine(m_sashPosition
, xShadow
, m_sashPosition
, h
-m_borderSize
);
508 dc
.SetPen(*m_hilightPen
);
509 dc
.DrawLine(m_sashPosition
+1, m_borderSize
- 2, m_sashPosition
+1, h
- m_borderSize
+2);
511 if (!HasFlag( wxSP_SASH_AQUA
))
512 dc
.SetPen(*m_mediumShadowPen
);
514 int yMedium
= m_borderSize
? h
-m_borderSize
+1 : h
;
515 dc
.DrawLine(m_sashPosition
+m_sashSize
-2, xShadow
, m_sashPosition
+m_sashSize
-2, yMedium
);
517 if (HasFlag( wxSP_SASH_AQUA
))
518 dc
.SetPen(*m_lightShadowPen
);
520 dc
.SetPen(*m_darkShadowPen
);
521 dc
.DrawLine(m_sashPosition
+m_sashSize
-1, m_borderSize
, m_sashPosition
+m_sashSize
-1, h
-m_borderSize
);
523 // Draw the top and bottom edges of the sash, if requested
524 if (GetWindowStyle() & wxSP_FULLSASH
)
527 dc
.SetPen(*m_hilightPen
);
528 dc
.DrawLine(m_sashPosition
+1, m_borderSize
, m_sashPosition
+m_sashSize
-1, m_borderSize
);
531 dc
.SetPen(*m_darkShadowPen
);
532 dc
.DrawLine(m_sashPosition
+1, h
-m_borderSize
-1, m_sashPosition
+m_sashSize
-1, h
-m_borderSize
-1);
537 dc
.SetPen(*m_facePen
);
538 if (HasFlag( wxSP_SASH_AQUA
))
539 dc
.SetBrush(*wxWHITE_BRUSH
);
541 dc
.SetBrush(*m_faceBrush
);
542 dc
.DrawRectangle( m_borderSize
-2, m_sashPosition
+ 2, w
-m_borderSize
+2, m_sashSize
- 4);
544 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
546 dc
.SetPen(*m_lightShadowPen
);
547 dc
.DrawLine(m_borderSize
-1, m_sashPosition
, w
-m_borderSize
, m_sashPosition
);
549 dc
.SetPen(*m_hilightPen
);
550 dc
.DrawLine(m_borderSize
-2, m_sashPosition
+1, w
-m_borderSize
+1, m_sashPosition
+1);
552 if (!HasFlag( wxSP_SASH_AQUA
))
553 dc
.SetPen(*m_mediumShadowPen
);
554 dc
.DrawLine(m_borderSize
-1, m_sashPosition
+m_sashSize
-2, w
-m_borderSize
+1, m_sashPosition
+m_sashSize
-2);
556 if (HasFlag( wxSP_SASH_AQUA
))
557 dc
.SetPen(*m_lightShadowPen
);
559 dc
.SetPen(*m_darkShadowPen
);
560 dc
.DrawLine(m_borderSize
, m_sashPosition
+m_sashSize
-1, w
-m_borderSize
, m_sashPosition
+m_sashSize
-1);
562 // Draw the left and right edges of the sash, if requested
563 if (GetWindowStyle() & wxSP_FULLSASH
)
566 dc
.SetPen(*m_hilightPen
);
567 dc
.DrawLine(m_borderSize
, m_sashPosition
, m_borderSize
, m_sashPosition
+m_sashSize
);
570 dc
.SetPen(*m_darkShadowPen
);
571 dc
.DrawLine(w
-m_borderSize
-1, m_sashPosition
+1, w
-m_borderSize
-1, m_sashPosition
+m_sashSize
-1);
577 if ( m_splitMode
== wxSPLIT_VERTICAL
)
579 dc
.SetPen(*wxBLACK_PEN
);
580 dc
.SetBrush(*wxBLACK_BRUSH
);
583 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
584 h1
+= 1; // Not sure why this is necessary...
585 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
589 dc
.DrawRectangle(m_sashPosition
, y1
, m_sashSize
, h1
);
593 dc
.SetPen(*wxBLACK_PEN
);
594 dc
.SetBrush(*wxBLACK_BRUSH
);
597 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
&& (GetWindowStyleFlag() & wxSP_3DBORDER
) != wxSP_3DBORDER
)
599 if ( (GetWindowStyleFlag() & wxSP_3DBORDER
) == wxSP_3DBORDER
)
603 dc
.DrawRectangle(x1
, m_sashPosition
, w1
, m_sashSize
);
608 dc
.SetPen(wxNullPen
);
609 dc
.SetBrush(wxNullBrush
);
612 // Draw the sash tracker (for whilst moving the sash)
613 void wxSplitterWindow::DrawSashTracker(int x
, int y
)
616 GetClientSize(&w
, &h
);
622 if ( m_splitMode
== wxSPLIT_VERTICAL
)
653 ClientToScreen(&x1
, &y1
);
654 ClientToScreen(&x2
, &y2
);
656 screenDC
.SetLogicalFunction(wxINVERT
);
657 screenDC
.SetPen(*m_sashTrackerPen
);
658 screenDC
.SetBrush(*wxTRANSPARENT_BRUSH
);
660 screenDC
.DrawLine(x1
, y1
, x2
, y2
);
662 screenDC
.SetLogicalFunction(wxCOPY
);
664 screenDC
.SetPen(wxNullPen
);
665 screenDC
.SetBrush(wxNullBrush
);
668 int wxSplitterWindow::GetWindowSize() const
670 wxSize size
= GetClientSize();
672 return m_splitMode
== wxSPLIT_VERTICAL
? size
.x
: size
.y
;
675 int wxSplitterWindow::AdjustSashPosition(int sashPos
) const
677 int window_size
= GetWindowSize();
684 // the window shouldn't be smaller than its own minimal size nor
685 // smaller than the minimual pane size specified for this splitter
686 int minSize
= m_splitMode
== wxSPLIT_VERTICAL
? win
->GetMinWidth()
687 : win
->GetMinHeight();
689 if ( minSize
== -1 || m_minimumPaneSize
> minSize
)
690 minSize
= m_minimumPaneSize
;
692 minSize
+= GetBorderSize();
694 if ( sashPos
< minSize
)
701 int minSize
= m_splitMode
== wxSPLIT_VERTICAL
? win
->GetMinWidth()
702 : win
->GetMinHeight();
704 if ( minSize
== -1 || m_minimumPaneSize
> minSize
)
705 minSize
= m_minimumPaneSize
;
707 int maxSize
= window_size
- minSize
- GetBorderSize();
708 if ( sashPos
> maxSize
)
715 bool wxSplitterWindow::DoSetSashPosition(int sashPos
)
717 int newSashPosition
= AdjustSashPosition(sashPos
);
719 if ( newSashPosition
== m_sashPosition
)
722 m_sashPosition
= newSashPosition
;
727 void wxSplitterWindow::SetSashPositionAndNotify(int sashPos
)
729 if ( DoSetSashPosition(sashPos
) )
731 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, this);
732 event
.m_data
.pos
= m_sashPosition
;
734 (void)DoSendEvent(event
);
738 // Position and size subwindows.
739 // Note that the border size applies to each subwindow, not
740 // including the edges next to the sash.
741 void wxSplitterWindow::SizeWindows()
743 // check if we have delayed setting the real sash position
744 if ( m_requestedSashPosition
!= INT_MAX
)
746 int newSashPosition
= ConvertSashPosition(m_requestedSashPosition
);
747 if ( newSashPosition
!= m_sashPosition
)
749 DoSetSashPosition(newSashPosition
);
752 if ( newSashPosition
== m_sashPosition
)
754 // don't update it any more
755 m_requestedSashPosition
= INT_MAX
;
760 GetClientSize(&w
, &h
);
762 if ( GetWindow1() && !GetWindow2() )
764 GetWindow1()->SetSize(GetBorderSize(), GetBorderSize(),
765 w
- 2*GetBorderSize(), h
- 2*GetBorderSize());
767 else if ( GetWindow1() && GetWindow2() )
769 if (GetSplitMode() == wxSPLIT_VERTICAL
)
771 int x1
= GetBorderSize();
772 int y1
= GetBorderSize();
773 int w1
= GetSashPosition() - GetBorderSize();
774 int h1
= h
- 2*GetBorderSize();
776 int x2
= GetSashPosition() + GetSashSize();
777 int y2
= GetBorderSize();
778 int w2
= w
- 2*GetBorderSize() - GetSashSize() - w1
;
779 int h2
= h
- 2*GetBorderSize();
781 GetWindow1()->SetSize(x1
, y1
, w1
, h1
);
782 GetWindow2()->SetSize(x2
, y2
, w2
, h2
);
786 GetWindow1()->SetSize(GetBorderSize(), GetBorderSize(),
787 w
- 2*GetBorderSize(), GetSashPosition() - GetBorderSize());
788 GetWindow2()->SetSize(GetBorderSize(), GetSashPosition() + GetSashSize(),
789 w
- 2*GetBorderSize(), h
- 2*GetBorderSize() - GetSashSize() - (GetSashPosition() - GetBorderSize()));
793 if ( GetBorderSize() > 0 )
797 SetNeedUpdating(FALSE
);
800 // Set pane for unsplit window
801 void wxSplitterWindow::Initialize(wxWindow
*window
)
803 m_windowOne
= window
;
804 m_windowTwo
= (wxWindow
*) NULL
;
805 DoSetSashPosition(0);
808 // Associates the given window with window 2, drawing the appropriate sash
809 // and changing the split mode.
810 // Does nothing and returns FALSE if the window is already split.
811 bool wxSplitterWindow::DoSplit(wxSplitMode mode
,
812 wxWindow
*window1
, wxWindow
*window2
,
819 m_windowOne
= window1
;
820 m_windowTwo
= window2
;
822 // remember the sash position we want to set for later if we can't set it
823 // right now (e.g. because the window is too small)
824 m_requestedSashPosition
= sashPosition
;
826 DoSetSashPosition(ConvertSashPosition(sashPosition
));
833 int wxSplitterWindow::ConvertSashPosition(int sashPosition
) const
835 if ( sashPosition
> 0 )
839 else if ( sashPosition
< 0 )
841 // It's negative so adding is subtracting
842 return GetWindowSize() + sashPosition
;
844 else // sashPosition == 0
846 // default, put it in the centre
847 return GetWindowSize() / 2;
851 // Remove the specified (or second) window from the view
852 // Doesn't actually delete the window.
853 bool wxSplitterWindow::Unsplit(wxWindow
*toRemove
)
858 wxWindow
*win
= NULL
;
859 if ( toRemove
== NULL
|| toRemove
== m_windowTwo
)
862 m_windowTwo
= (wxWindow
*) NULL
;
864 else if ( toRemove
== m_windowOne
)
867 m_windowOne
= m_windowTwo
;
868 m_windowTwo
= (wxWindow
*) NULL
;
872 wxFAIL_MSG(wxT("splitter: attempt to remove a non-existent window"));
878 DoSetSashPosition(0);
884 // Replace a window with another one
885 bool wxSplitterWindow::ReplaceWindow(wxWindow
*winOld
, wxWindow
*winNew
)
887 wxCHECK_MSG( winOld
, FALSE
, wxT("use one of Split() functions instead") );
888 wxCHECK_MSG( winNew
, FALSE
, wxT("use Unsplit() functions instead") );
890 if ( winOld
== m_windowTwo
)
892 m_windowTwo
= winNew
;
894 else if ( winOld
== m_windowOne
)
896 m_windowOne
= winNew
;
900 wxFAIL_MSG(wxT("splitter: attempt to replace a non-existent window"));
910 void wxSplitterWindow::SetMinimumPaneSize(int min
)
912 m_minimumPaneSize
= min
;
913 SetSashPosition(m_sashPosition
); // re-check limits
916 void wxSplitterWindow::SetSashPosition(int position
, bool redraw
)
918 DoSetSashPosition(position
);
926 // Initialize colours
927 void wxSplitterWindow::InitColours()
929 wxDELETE( m_facePen
);
930 wxDELETE( m_faceBrush
);
931 wxDELETE( m_mediumShadowPen
);
932 wxDELETE( m_darkShadowPen
);
933 wxDELETE( m_lightShadowPen
);
934 wxDELETE( m_hilightPen
);
938 wxColour
faceColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
));
939 m_facePen
= new wxPen(faceColour
, 1, wxSOLID
);
940 m_faceBrush
= new wxBrush(faceColour
, wxSOLID
);
942 wxColour
mediumShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW
));
943 m_mediumShadowPen
= new wxPen(mediumShadowColour
, 1, wxSOLID
);
945 wxColour
darkShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW
));
946 m_darkShadowPen
= new wxPen(darkShadowColour
, 1, wxSOLID
);
948 wxColour
lightShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT
));
949 m_lightShadowPen
= new wxPen(lightShadowColour
, 1, wxSOLID
);
951 wxColour
hilightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHILIGHT
));
952 m_hilightPen
= new wxPen(hilightColour
, 1, wxSOLID
);
954 m_facePen
= new wxPen("LIGHT GREY", 1, wxSOLID
);
955 m_faceBrush
= new wxBrush("LIGHT GREY", wxSOLID
);
956 m_mediumShadowPen
= new wxPen("GREY", 1, wxSOLID
);
957 m_darkShadowPen
= new wxPen("BLACK", 1, wxSOLID
);
958 m_lightShadowPen
= new wxPen("LIGHT GREY", 1, wxSOLID
);
959 m_hilightPen
= new wxPen("WHITE", 1, wxSOLID
);
963 bool wxSplitterWindow::DoSendEvent(wxSplitterEvent
& event
)
965 return !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed();
968 // ---------------------------------------------------------------------------
969 // wxSplitterWindow virtual functions: they now just generate the events
970 // ---------------------------------------------------------------------------
972 bool wxSplitterWindow::OnSashPositionChange(int WXUNUSED(newSashPosition
))
974 // always allow by default
978 int wxSplitterWindow::OnSashPositionChanging(int newSashPosition
)
980 // If within UNSPLIT_THRESHOLD from edge, set to edge to cause closure.
981 const int UNSPLIT_THRESHOLD
= 4;
983 // first of all, check if OnSashPositionChange() doesn't forbid this change
984 if ( !OnSashPositionChange(newSashPosition
) )
990 // Obtain relevant window dimension for bottom / right threshold check
991 int window_size
= GetWindowSize();
993 bool unsplit_scenario
= FALSE
;
994 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
996 // Do edge detection if unsplit premitted
997 if ( newSashPosition
<= UNSPLIT_THRESHOLD
)
999 // threshold top / left check
1000 newSashPosition
= 0;
1001 unsplit_scenario
= TRUE
;
1003 if ( newSashPosition
>= window_size
- UNSPLIT_THRESHOLD
)
1005 // threshold bottom/right check
1006 newSashPosition
= window_size
;
1007 unsplit_scenario
= TRUE
;
1011 if ( !unsplit_scenario
)
1013 // If resultant pane would be too small, enlarge it
1014 newSashPosition
= AdjustSashPosition(newSashPosition
);
1017 // If the result is out of bounds it means minimum size is too big,
1018 // so split window in half as best compromise.
1019 if ( newSashPosition
< 0 || newSashPosition
> window_size
)
1020 newSashPosition
= window_size
/ 2;
1022 // now let the event handler have it
1024 // FIXME: shouldn't we do it before the adjustments above so as to ensure
1025 // that the sash position is always reasonable?
1026 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, this);
1027 event
.m_data
.pos
= newSashPosition
;
1029 if ( !DoSendEvent(event
) )
1031 // the event handler vetoed the change
1032 newSashPosition
= -1;
1036 // it could have been changed by it
1037 newSashPosition
= event
.GetSashPosition();
1040 return newSashPosition
;
1043 // Called when the sash is double-clicked. The default behaviour is to remove
1044 // the sash if the minimum pane size is zero.
1045 void wxSplitterWindow::OnDoubleClickSash(int x
, int y
)
1047 // new code should handle events instead of using the virtual functions
1048 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, this);
1049 event
.m_data
.pt
.x
= x
;
1050 event
.m_data
.pt
.y
= y
;
1051 if ( DoSendEvent(event
) )
1053 if ( GetMinimumPaneSize() == 0 || m_permitUnsplitAlways
)
1058 //else: blocked by user
1061 void wxSplitterWindow::OnUnsplit(wxWindow
*winRemoved
)
1063 // do it before calling the event handler which may delete the window
1064 winRemoved
->Show(FALSE
);
1066 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
1067 event
.m_data
.win
= winRemoved
;
1069 (void)DoSendEvent(event
);
1074 // this is currently called (and needed) under MSW only...
1075 void wxSplitterWindow::OnSetCursor(wxSetCursorEvent
& event
)
1077 // if we don't do it, the resizing cursor might be set for child window:
1078 // and like this we explicitly say that our cursor should not be used for
1079 // children windows which overlap us
1081 if ( SashHitTest(event
.GetX(), event
.GetY()) )
1083 // default processing is ok
1086 //else: do nothing, in particular, don't call Skip()