1 /////////////////////////////////////////////////////////////////////////////
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"
37 IMPLEMENT_DYNAMIC_CLASS(wxSplitterWindow
, wxWindow
)
38 IMPLEMENT_DYNAMIC_CLASS(wxSplitterEvent
, wxCommandEvent
)
40 BEGIN_EVENT_TABLE(wxSplitterWindow
, wxWindow
)
41 EVT_PAINT(wxSplitterWindow::OnPaint
)
42 EVT_SIZE(wxSplitterWindow::OnSize
)
43 EVT_IDLE(wxSplitterWindow::OnIdle
)
44 EVT_MOUSE_EVENTS(wxSplitterWindow::OnMouseEvent
)
46 EVT_SET_CURSOR(wxSplitterWindow::OnSetCursor
)
48 EVT_SPLITTER_SASH_POS_CHANGED(-1, wxSplitterWindow::OnSashPosChanged
)
49 // NB: we borrow OnSashPosChanged for purposes of
50 // EVT_SPLITTER_SASH_POS_CHANGING since default implementation is identical
51 EVT_SPLITTER_SASH_POS_CHANGING(-1, wxSplitterWindow::OnSashPosChanged
)
52 EVT_SPLITTER_DCLICK(-1, wxSplitterWindow::OnDoubleClick
)
53 EVT_SPLITTER_UNSPLIT(-1, wxSplitterWindow::OnUnsplitEvent
)
56 wxSplitterWindow::wxSplitterWindow()
58 m_splitMode
= wxSPLIT_VERTICAL
;
59 m_permitUnsplitAlways
= FALSE
;
60 m_windowOne
= (wxWindow
*) NULL
;
61 m_windowTwo
= (wxWindow
*) NULL
;
62 m_dragMode
= wxSPLIT_DRAG_NONE
;
70 m_sashCursorWE
= (wxCursor
*) NULL
;
71 m_sashCursorNS
= (wxCursor
*) NULL
;
72 m_sashTrackerPen
= (wxPen
*) NULL
;
73 m_lightShadowPen
= (wxPen
*) NULL
;
74 m_mediumShadowPen
= (wxPen
*) NULL
;
75 m_darkShadowPen
= (wxPen
*) NULL
;
76 m_faceBrush
= (wxBrush
*) NULL
;
77 m_facePen
= (wxPen
*) NULL
;
78 m_hilightPen
= (wxPen
*) NULL
;
79 m_minimumPaneSize
= 0;
80 m_needUpdating
= FALSE
;
83 wxSplitterWindow::wxSplitterWindow(wxWindow
*parent
, wxWindowID id
,
88 : wxWindow(parent
, id
, pos
, size
, style
, name
)
90 m_splitMode
= wxSPLIT_VERTICAL
;
91 m_permitUnsplitAlways
= (style
& wxSP_PERMIT_UNSPLIT
) != 0;
92 m_windowOne
= (wxWindow
*) NULL
;
93 m_windowTwo
= (wxWindow
*) NULL
;
94 m_dragMode
= wxSPLIT_DRAG_NONE
;
102 m_minimumPaneSize
= 0;
103 m_sashCursorWE
= new wxCursor(wxCURSOR_SIZEWE
);
104 m_sashCursorNS
= new wxCursor(wxCURSOR_SIZENS
);
105 m_sashTrackerPen
= new wxPen(*wxBLACK
, 2, wxSOLID
);
106 m_lightShadowPen
= (wxPen
*) NULL
;
107 m_mediumShadowPen
= (wxPen
*) NULL
;
108 m_darkShadowPen
= (wxPen
*) NULL
;
109 m_faceBrush
= (wxBrush
*) NULL
;
110 m_facePen
= (wxPen
*) NULL
;
111 m_hilightPen
= (wxPen
*) NULL
;
113 if ( style
& wxSP_3D
)
118 else if ( style
& wxSP_BORDER
)
129 // Eventually, we'll respond to colour change messages
132 // For debugging purposes, to see the background.
133 // SetBackground(wxBLUE_BRUSH);
135 m_needUpdating
= FALSE
;
138 wxSplitterWindow::~wxSplitterWindow()
140 delete m_sashCursorWE
;
141 delete m_sashCursorNS
;
142 delete m_sashTrackerPen
;
143 delete m_lightShadowPen
;
144 delete m_darkShadowPen
;
145 delete m_mediumShadowPen
;
151 void wxSplitterWindow::OnPaint(wxPaintEvent
& WXUNUSED(event
))
155 if ( m_borderSize
> 0 )
160 void wxSplitterWindow::OnIdle(wxIdleEvent
& WXUNUSED(event
))
166 void wxSplitterWindow::OnMouseEvent(wxMouseEvent
& event
)
168 wxCoord x
= (wxCoord
)event
.GetX(),
169 y
= (wxCoord
)event
.GetY();
173 SetCursor(* wxSTANDARD_CURSOR
);
176 SetCursor(wxCursor());
180 if (event
.LeftDown())
182 if ( SashHitTest(x
, y
) )
186 m_dragMode
= wxSPLIT_DRAG_DRAGGING
;
188 if ((GetWindowStyleFlag() & wxSP_LIVE_UPDATE
) == 0)
190 DrawSashTracker(x
, y
);
196 if ( m_splitMode
== wxSPLIT_VERTICAL
)
198 SetCursor(*m_sashCursorWE
);
202 SetCursor(*m_sashCursorNS
);
207 else if (event
.LeftUp() && m_dragMode
== wxSPLIT_DRAG_DRAGGING
)
209 // We can stop dragging now and see what we've got.
210 m_dragMode
= wxSPLIT_DRAG_NONE
;
214 if ((GetWindowStyleFlag() & wxSP_LIVE_UPDATE
) == 0)
216 DrawSashTracker(m_oldX
, m_oldY
);
219 // Obtain window size. We are only interested in the dimension the sash
222 GetClientSize(&w
, &h
);
223 int window_size
= (m_splitMode
== wxSPLIT_VERTICAL
? w
: h
);
224 int new_sash_position
=
225 (int) ( m_splitMode
== wxSPLIT_VERTICAL
? x
: y
);
227 wxSplitterEvent
eventSplitter(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
,
229 eventSplitter
.m_data
.pos
= new_sash_position
;
230 if ( GetEventHandler()->ProcessEvent(eventSplitter
) )
232 new_sash_position
= eventSplitter
.GetSashPosition();
233 if ( new_sash_position
== -1 )
235 // change not allowed
240 if ( m_permitUnsplitAlways
|| m_minimumPaneSize
== 0 )
242 // Deal with possible unsplit scenarios
243 if ( new_sash_position
== 0 )
245 // We remove the first window from the view
246 wxWindow
*removedWindow
= m_windowOne
;
247 m_windowOne
= m_windowTwo
;
248 m_windowTwo
= (wxWindow
*) NULL
;
249 SendUnsplitEvent(removedWindow
);
252 else if ( new_sash_position
== window_size
)
254 // We remove the second window from the view
255 wxWindow
*removedWindow
= m_windowTwo
;
256 m_windowTwo
= (wxWindow
*) NULL
;
257 SendUnsplitEvent(removedWindow
);
262 m_sashPosition
= new_sash_position
;
267 m_sashPosition
= new_sash_position
;
271 m_needUpdating
= FALSE
;
272 } // left up && dragging
273 else if (event
.Moving() && !event
.Dragging())
275 // Just change the cursor if required
276 if ( SashHitTest(x
, y
) )
278 if ( m_splitMode
== wxSPLIT_VERTICAL
)
280 SetCursor(*m_sashCursorWE
);
284 SetCursor(*m_sashCursorNS
);
287 #if defined(__WXGTK__) || defined(__WXMSW__)
290 // We must set the normal cursor in MSW, because
291 // if the child window doesn't have a cursor, the
292 // parent's (splitter window) will be used, and this
293 // must be the standard cursor.
294 wxLogDebug("wxSplitterWindow: Setting to standard cursor");
296 // where else do we unset the cursor?
297 SetCursor(* wxSTANDARD_CURSOR
);
301 m_needUpdating
= FALSE
;
303 else if (event
.Dragging() && (m_dragMode
== wxSPLIT_DRAG_DRAGGING
))
306 // Otherwise, the cursor sometimes reverts to the normal cursor
308 if ( m_splitMode
== wxSPLIT_VERTICAL
)
310 SetCursor(*m_sashCursorWE
);
314 SetCursor(*m_sashCursorNS
);
318 // Obtain window size. We are only interested in the dimension the sash
320 int new_sash_position
=
321 (int) ( m_splitMode
== wxSPLIT_VERTICAL
? x
: y
);
323 wxSplitterEvent
eventSplitter(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
,
325 eventSplitter
.m_data
.pos
= new_sash_position
;
326 if ( GetEventHandler()->ProcessEvent(eventSplitter
) )
328 new_sash_position
= eventSplitter
.GetSashPosition();
329 if ( new_sash_position
== -1 )
331 // change not allowed
337 if ((GetWindowStyleFlag() & wxSP_LIVE_UPDATE
) == 0)
339 DrawSashTracker(m_oldX
, m_oldY
);
342 if (m_splitMode
== wxSPLIT_VERTICAL
)
343 x
= new_sash_position
;
345 y
= new_sash_position
;
347 if (new_sash_position
!= -1)
349 // Only modify if permitted
355 // As we captured the mouse, we may get the mouse events from outside
356 // our window - for example, negative values in x, y. This has a weird
357 // consequence under MSW where we use unsigned values sometimes and
358 // signed ones other times: the coordinates turn as big positive
359 // numbers and so the sash is drawn on the *right* side of the window
360 // instead of the left (or bottom instead of top). Correct this.
361 if ( (short)m_oldX
< 0 )
363 if ( (short)m_oldY
< 0 )
368 if ((GetWindowStyleFlag() & wxSP_LIVE_UPDATE
) == 0)
370 DrawSashTracker(m_oldX
, m_oldY
);
374 m_sashPosition
= new_sash_position
;
375 m_needUpdating
= TRUE
;
378 else if ( event
.LeftDClick() )
380 wxSplitterEvent
eventSplitter(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
,
382 eventSplitter
.m_data
.pt
.x
= x
;
383 eventSplitter
.m_data
.pt
.y
= y
;
385 (void)GetEventHandler()->ProcessEvent(eventSplitter
);
389 void wxSplitterWindow::OnSize(wxSizeEvent
& event
)
391 // only process this message if we're not iconized - otherwise iconizing
392 // and restoring a window containing the splitter has a funny side effect
393 // of changing the splitter position!
394 wxWindow
*parent
= GetParent();
395 while ( parent
&& !parent
->IsTopLevel() )
397 parent
= parent
->GetParent();
400 bool iconized
= FALSE
;
401 wxFrame
*frame
= wxDynamicCast(parent
, wxFrame
);
403 iconized
= frame
->IsIconized();
406 wxDialog
*dialog
= wxDynamicCast(parent
, wxDialog
);
408 iconized
= dialog
->IsIconized();
410 wxFAIL_MSG(wxT("should have a top level frame or dialog parent!"));
420 GetClientSize( &cw
, &ch
);
423 if ( m_splitMode
== wxSPLIT_VERTICAL
)
425 if ( m_sashPosition
>= (cw
- 5) )
426 m_sashPosition
= wxMax(10, cw
- 40);
428 if ( m_splitMode
== wxSPLIT_HORIZONTAL
)
430 if ( m_sashPosition
>= (ch
- 5) )
431 m_sashPosition
= wxMax(10, ch
- 40);
439 bool wxSplitterWindow::SashHitTest(int x
, int y
, int tolerance
)
441 if ( m_windowTwo
== NULL
|| m_sashPosition
== 0)
442 return FALSE
; // No sash
444 if ( m_splitMode
== wxSPLIT_VERTICAL
)
446 if ( (x
>= m_sashPosition
- tolerance
) && (x
<= m_sashPosition
+ m_sashSize
+ tolerance
) )
453 if ( (y
>= (m_sashPosition
- tolerance
)) && (y
<= (m_sashPosition
+ m_sashSize
+ tolerance
)) )
460 // Draw 3D effect borders
461 void wxSplitterWindow::DrawBorders(wxDC
& dc
)
464 GetClientSize(&w
, &h
);
466 if ( GetWindowStyleFlag() & wxSP_3D
)
469 dc
.SetPen(*m_facePen
);
470 dc
.SetBrush(*m_faceBrush
);
471 dc
.DrawRectangle(1, 1 , w
-1, m_borderSize
-2 ); //high
472 dc
.DrawRectangle(1, m_borderSize
-2 , m_borderSize
-2, h
-1 ); // left
473 dc
.DrawRectangle(w
-m_borderSize
+2, m_borderSize
-2 , w
-1, h
-1 ); // right
474 dc
.DrawRectangle(m_borderSize
-2, h
-m_borderSize
+2 , w
-m_borderSize
+2, h
-1 ); //bottom
476 dc
.SetPen(*m_mediumShadowPen
);
477 dc
.DrawLine(m_borderSize
-2, m_borderSize
-2, w
-m_borderSize
+1, m_borderSize
-2);
478 dc
.DrawLine(m_borderSize
-2, m_borderSize
-2, m_borderSize
-2, h
-m_borderSize
+1);
480 dc
.SetPen(*m_darkShadowPen
);
481 dc
.DrawLine(m_borderSize
-1, m_borderSize
-1, w
-m_borderSize
, m_borderSize
-1);
482 dc
.DrawLine(m_borderSize
-1, m_borderSize
-1, m_borderSize
-1, h
-m_borderSize
);
484 dc
.SetPen(*m_hilightPen
);
485 dc
.DrawLine(m_borderSize
- 2, h
-m_borderSize
+1, w
-m_borderSize
+1, h
-m_borderSize
+1);
486 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.
487 /// Anyway, h is required for MSW.
489 dc
.SetPen(*m_lightShadowPen
);
490 dc
.DrawLine(w
-m_borderSize
, m_borderSize
-1, w
-m_borderSize
, h
-m_borderSize
); // Right hand side
491 dc
.DrawLine(m_borderSize
-1, h
-m_borderSize
, w
-m_borderSize
+1, h
-m_borderSize
); // Bottom
493 else if ( GetWindowStyleFlag() & wxSP_BORDER
)
495 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
496 dc
.SetPen(*wxBLACK_PEN
);
497 dc
.DrawRectangle(0, 0, w
-1, h
-1);
500 dc
.SetPen(wxNullPen
);
501 dc
.SetBrush(wxNullBrush
);
505 void wxSplitterWindow::DrawSash(wxDC
& dc
)
507 if ( m_sashPosition
== 0 || !m_windowTwo
)
511 GetClientSize(&w
, &h
);
513 if ( GetWindowStyleFlag() & wxSP_3D
)
515 if ( m_splitMode
== wxSPLIT_VERTICAL
)
517 dc
.SetPen(*m_facePen
);
518 dc
.SetBrush(*m_faceBrush
);
519 dc
.DrawRectangle(m_sashPosition
+ 2, 0 , m_sashSize
- 4, h
);
521 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
523 dc
.SetPen(*m_lightShadowPen
);
524 int xShadow
= m_borderSize
? m_borderSize
- 1 : 0 ;
525 dc
.DrawLine(m_sashPosition
, xShadow
, m_sashPosition
, h
-m_borderSize
);
527 dc
.SetPen(*m_hilightPen
);
528 dc
.DrawLine(m_sashPosition
+1, m_borderSize
- 2, m_sashPosition
+1, h
- m_borderSize
+2);
530 dc
.SetPen(*m_mediumShadowPen
);
531 int yMedium
= m_borderSize
? h
-m_borderSize
+1 : h
;
532 dc
.DrawLine(m_sashPosition
+m_sashSize
-2, xShadow
, m_sashPosition
+m_sashSize
-2, yMedium
);
534 dc
.SetPen(*m_darkShadowPen
);
535 dc
.DrawLine(m_sashPosition
+m_sashSize
-1, m_borderSize
, m_sashPosition
+m_sashSize
-1, h
-m_borderSize
);
539 dc
.SetPen(*m_facePen
);
540 dc
.SetBrush(*m_faceBrush
);
541 dc
.DrawRectangle( m_borderSize
-2, m_sashPosition
+ 2, w
-m_borderSize
+2, m_sashSize
- 4);
543 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
545 dc
.SetPen(*m_lightShadowPen
);
546 dc
.DrawLine(m_borderSize
-1, m_sashPosition
, w
-m_borderSize
, m_sashPosition
);
548 dc
.SetPen(*m_hilightPen
);
549 dc
.DrawLine(m_borderSize
-2, m_sashPosition
+1, w
-m_borderSize
+1, m_sashPosition
+1);
551 dc
.SetPen(*m_mediumShadowPen
);
552 dc
.DrawLine(m_borderSize
-1, m_sashPosition
+m_sashSize
-2, w
-m_borderSize
+1, m_sashPosition
+m_sashSize
-2);
554 dc
.SetPen(*m_darkShadowPen
);
555 dc
.DrawLine(m_borderSize
, m_sashPosition
+m_sashSize
-1, w
-m_borderSize
, m_sashPosition
+m_sashSize
-1);
560 if ( m_splitMode
== wxSPLIT_VERTICAL
)
562 dc
.SetPen(*wxBLACK_PEN
);
563 dc
.SetBrush(*wxBLACK_BRUSH
);
565 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
)
566 h1
+= 1; // Not sure why this is necessary...
567 dc
.DrawRectangle(m_sashPosition
, 0, m_sashSize
, h1
);
571 dc
.SetPen(*wxBLACK_PEN
);
572 dc
.SetBrush(*wxBLACK_BRUSH
);
574 if ( (GetWindowStyleFlag() & wxSP_BORDER
) != wxSP_BORDER
)
577 dc
.DrawRectangle(0, m_sashPosition
, w1
, m_sashSize
);
582 dc
.SetPen(wxNullPen
);
583 dc
.SetBrush(wxNullBrush
);
586 // Draw the sash tracker (for whilst moving the sash)
587 void wxSplitterWindow::DrawSashTracker(int x
, int y
)
590 GetClientSize(&w
, &h
);
596 if ( m_splitMode
== wxSPLIT_VERTICAL
)
627 ClientToScreen(&x1
, &y1
);
628 ClientToScreen(&x2
, &y2
);
630 screenDC
.SetLogicalFunction(wxINVERT
);
631 screenDC
.SetPen(*m_sashTrackerPen
);
632 screenDC
.SetBrush(*wxTRANSPARENT_BRUSH
);
634 screenDC
.DrawLine(x1
, y1
, x2
, y2
);
636 screenDC
.SetLogicalFunction(wxCOPY
);
638 screenDC
.SetPen(wxNullPen
);
639 screenDC
.SetBrush(wxNullBrush
);
642 // Position and size subwindows.
643 // Note that the border size applies to each subwindow, not
644 // including the edges next to the sash.
645 void wxSplitterWindow::SizeWindows()
648 GetClientSize(&w
, &h
);
650 if ( m_windowOne
&& !m_windowTwo
)
652 m_windowOne
->SetSize(m_borderSize
, m_borderSize
, w
- 2*m_borderSize
, h
- 2*m_borderSize
);
655 else if ( m_windowOne
&& m_windowTwo
)
657 if (m_splitMode
== wxSPLIT_VERTICAL
)
659 int x1
= m_borderSize
;
660 int y1
= m_borderSize
;
661 int w1
= m_sashPosition
- m_borderSize
;
662 int h1
= h
- 2*m_borderSize
;
664 int x2
= m_sashPosition
+ m_sashSize
;
665 int y2
= m_borderSize
;
666 int w2
= w
- 2*m_borderSize
- m_sashSize
- w1
;
667 int h2
= h
- 2*m_borderSize
;
669 m_windowOne
->SetSize(x1
, y1
, w1
, h1
);
670 m_windowTwo
->SetSize(x2
, y2
, w2
, h2
);
675 m_windowOne
->SetSize(m_borderSize
, m_borderSize
,
676 w
- 2*m_borderSize
, m_sashPosition
- m_borderSize
);
677 m_windowTwo
->SetSize(m_borderSize
, m_sashPosition
+ m_sashSize
,
678 w
- 2*m_borderSize
, h
- 2*m_borderSize
- m_sashSize
- (m_sashPosition
- m_borderSize
));
683 if ( m_borderSize
> 0 )
688 // Set pane for unsplit window
689 void wxSplitterWindow::Initialize(wxWindow
*window
)
691 m_windowOne
= window
;
692 m_windowTwo
= (wxWindow
*) NULL
;
696 // Associates the given window with window 2, drawing the appropriate sash
697 // and changing the split mode.
698 // Does nothing and returns FALSE if the window is already split.
699 bool wxSplitterWindow::SplitVertically(wxWindow
*window1
, wxWindow
*window2
, int sashPosition
)
705 GetClientSize(&w
, &h
);
707 m_splitMode
= wxSPLIT_VERTICAL
;
708 m_windowOne
= window1
;
709 m_windowTwo
= window2
;
710 if ( sashPosition
> 0 )
711 m_sashPosition
= sashPosition
;
712 else if ( sashPosition
< 0 )
713 m_sashPosition
= w
- sashPosition
;
715 m_sashPosition
= w
/2;
722 bool wxSplitterWindow::SplitHorizontally(wxWindow
*window1
, wxWindow
*window2
, int sashPosition
)
728 GetClientSize(&w
, &h
);
730 m_splitMode
= wxSPLIT_HORIZONTAL
;
731 m_windowOne
= window1
;
732 m_windowTwo
= window2
;
733 if ( sashPosition
> 0 )
734 m_sashPosition
= sashPosition
;
735 else if ( sashPosition
< 0 )
736 m_sashPosition
= h
- sashPosition
;
738 m_sashPosition
= h
/2;
746 // Remove the specified (or second) window from the view
747 // Doesn't actually delete the window.
748 bool wxSplitterWindow::Unsplit(wxWindow
*toRemove
)
753 wxWindow
*win
= NULL
;
754 if ( toRemove
== NULL
|| toRemove
== m_windowTwo
)
757 m_windowTwo
= (wxWindow
*) NULL
;
759 else if ( toRemove
== m_windowOne
)
762 m_windowOne
= m_windowTwo
;
763 m_windowTwo
= (wxWindow
*) NULL
;
767 wxFAIL_MSG(wxT("splitter: attempt to remove a non-existent window"));
772 SendUnsplitEvent(win
);
779 // Replace a window with another one
780 bool wxSplitterWindow::ReplaceWindow(wxWindow
*winOld
, wxWindow
*winNew
)
782 wxCHECK_MSG( winOld
, FALSE
, wxT("use one of Split() functions instead") );
783 wxCHECK_MSG( winNew
, FALSE
, wxT("use Unsplit() functions instead") );
785 if ( winOld
== m_windowTwo
)
787 m_windowTwo
= winNew
;
789 else if ( winOld
== m_windowOne
)
791 m_windowOne
= winNew
;
795 wxFAIL_MSG(wxT("splitter: attempt to replace a non-existent window"));
805 void wxSplitterWindow::SetSashPosition(int position
, bool redraw
)
807 m_sashPosition
= position
;
815 // Initialize colours
816 void wxSplitterWindow::InitColours()
818 wxDELETE( m_facePen
);
819 wxDELETE( m_faceBrush
);
820 wxDELETE( m_mediumShadowPen
);
821 wxDELETE( m_darkShadowPen
);
822 wxDELETE( m_lightShadowPen
);
823 wxDELETE( m_hilightPen
);
826 #if defined(__WIN95__)
827 wxColour
faceColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DFACE
));
828 m_facePen
= new wxPen(faceColour
, 1, wxSOLID
);
829 m_faceBrush
= new wxBrush(faceColour
, wxSOLID
);
831 wxColour
mediumShadowColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DSHADOW
));
832 m_mediumShadowPen
= new wxPen(mediumShadowColour
, 1, wxSOLID
);
834 wxColour
darkShadowColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DDKSHADOW
));
835 m_darkShadowPen
= new wxPen(darkShadowColour
, 1, wxSOLID
);
837 wxColour
lightShadowColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DLIGHT
));
838 m_lightShadowPen
= new wxPen(lightShadowColour
, 1, wxSOLID
);
840 wxColour
hilightColour(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_3DHILIGHT
));
841 m_hilightPen
= new wxPen(hilightColour
, 1, wxSOLID
);
843 m_facePen
= new wxPen("LIGHT GREY", 1, wxSOLID
);
844 m_faceBrush
= new wxBrush("LIGHT GREY", wxSOLID
);
845 m_mediumShadowPen
= new wxPen("GREY", 1, wxSOLID
);
846 m_darkShadowPen
= new wxPen("BLACK", 1, wxSOLID
);
847 m_lightShadowPen
= new wxPen("LIGHT GREY", 1, wxSOLID
);
848 m_hilightPen
= new wxPen("WHITE", 1, wxSOLID
);
849 #endif // Win32/!Win32
852 void wxSplitterWindow::SendUnsplitEvent(wxWindow
*winRemoved
)
854 wxSplitterEvent
event(wxEVT_COMMAND_SPLITTER_UNSPLIT
, this);
855 event
.m_data
.win
= winRemoved
;
857 (void)GetEventHandler()->ProcessEvent(event
);
860 // ---------------------------------------------------------------------------
861 // splitter event handlers
862 // ---------------------------------------------------------------------------
864 void wxSplitterWindow::OnSashPosChanged(wxSplitterEvent
& event
)
866 // If within UNSPLIT_THRESHOLD from edge, set to edge to cause closure.
867 const int UNSPLIT_THRESHOLD
= 4;
869 int newSashPosition
= event
.GetSashPosition();
871 // Obtain relevant window dimension for bottom / right threshold check
873 GetClientSize(&w
, &h
);
874 int window_size
= (m_splitMode
== wxSPLIT_VERTICAL
) ? w
: h
;
876 bool unsplit_scenario
= FALSE
;
877 if ( m_permitUnsplitAlways
878 || m_minimumPaneSize
== 0 )
880 // Do edge detection if unsplit premitted
881 if ( newSashPosition
<= UNSPLIT_THRESHOLD
)
883 // threshold top / left check
885 unsplit_scenario
= TRUE
;
887 if ( newSashPosition
>= window_size
- UNSPLIT_THRESHOLD
)
889 // threshold bottom/right check
890 newSashPosition
= window_size
;
891 unsplit_scenario
= TRUE
;
895 if ( !unsplit_scenario
)
897 // If resultant pane would be too small, enlarge it
898 if ( newSashPosition
< m_minimumPaneSize
)
899 newSashPosition
= m_minimumPaneSize
;
900 if ( newSashPosition
> window_size
- m_minimumPaneSize
)
901 newSashPosition
= window_size
- m_minimumPaneSize
;
904 // If the result is out of bounds it means minimum size is too big,
905 // so split window in half as best compromise.
906 if ( newSashPosition
< 0 || newSashPosition
> window_size
)
907 newSashPosition
= window_size
/ 2;
909 // for compatibility, call the virtual function
910 if ( !OnSashPositionChange(newSashPosition
) )
912 newSashPosition
= -1;
915 event
.SetSashPosition(newSashPosition
);
918 // Called when the sash is double-clicked. The default behaviour is to remove
919 // the sash if the minimum pane size is zero.
920 void wxSplitterWindow::OnDoubleClick(wxSplitterEvent
& event
)
922 // for compatibility, call the virtual function
923 OnDoubleClickSash(event
.GetX(), event
.GetY());
925 if ( GetMinimumPaneSize() == 0 || m_permitUnsplitAlways
)
931 void wxSplitterWindow::OnUnsplitEvent(wxSplitterEvent
& event
)
933 wxWindow
*win
= event
.GetWindowBeingRemoved();
935 // do it before calling OnUnsplit() which may delete the window
938 // for compatibility, call the virtual function
942 #if defined(__WXMSW__)
943 #define WXUNUSED_UNLESS_MSW(identifier) identifier
945 #define WXUNUSED_UNLESS_MSW(identifier) WXUNUSED(identifier)
948 void wxSplitterWindow::OnSetCursor(wxSetCursorEvent
& WXUNUSED_UNLESS_MSW(event
))
950 // this is currently called (and needed) under MSW only...
953 // if we don't do it, the resizing cursor might be set for child window:
954 // and like this we explicitly say that our cursor should not be used for
955 // children windows which overlap us
957 if ( SashHitTest(event
.GetX(), event
.GetY()) )
959 // default processing is ok
962 //else: do nothing, in particular, don't call Skip()