]> git.saurik.com Git - wxWidgets.git/blame - src/generic/splitter.cpp
Added BCC include dir in XRC makefile
[wxWidgets.git] / src / generic / splitter.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
63ec9dbb 2// Name: src/generic/splitter.cpp
c801d85f
KB
3// Purpose: wxSplitterWindow implementation
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
6aa89a22
JS
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
f4621a09 13 #pragma implementation "splitter.h"
c801d85f
KB
14#endif
15
16// For compilers that support precompilation, includes "wx.h".
17#include "wx/wxprec.h"
18
d7260478 19#if wxUSE_SPLITTER
c801d85f 20#ifdef __BORLANDC__
f4621a09 21 #pragma hdrstop
c801d85f
KB
22#endif
23
24#ifndef WX_PRECOMP
2b5f62a0
VZ
25 #include "wx/string.h"
26 #include "wx/utils.h"
27 #include "wx/log.h"
28
29 #include "wx/dcscreen.h"
30
2f073eb2
RR
31 #include "wx/window.h"
32 #include "wx/dialog.h"
33 #include "wx/frame.h"
c801d85f 34
2b5f62a0
VZ
35 #include "wx/settings.h"
36#endif
c801d85f 37
c801d85f 38#include "wx/splitter.h"
2b5f62a0
VZ
39
40#include <stdlib.h>
c801d85f 41
2e4df4bf
VZ
42DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED)
43DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING)
44DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED)
45DEFINE_EVENT_TYPE(wxEVT_COMMAND_SPLITTER_UNSPLIT)
46
c801d85f 47IMPLEMENT_DYNAMIC_CLASS(wxSplitterWindow, wxWindow)
3e58dcb9 48IMPLEMENT_DYNAMIC_CLASS(wxSplitterEvent, wxNotifyEvent)
c801d85f
KB
49
50BEGIN_EVENT_TABLE(wxSplitterWindow, wxWindow)
51 EVT_PAINT(wxSplitterWindow::OnPaint)
52 EVT_SIZE(wxSplitterWindow::OnSize)
72195a0f 53 EVT_IDLE(wxSplitterWindow::OnIdle)
c801d85f 54 EVT_MOUSE_EVENTS(wxSplitterWindow::OnMouseEvent)
42e69d6b 55
64407854 56#if defined( __WXMSW__ ) || defined( __WXMAC__)
43b5058d 57 EVT_SET_CURSOR(wxSplitterWindow::OnSetCursor)
3e58dcb9 58#endif // wxMSW
6b55490a
VZ
59
60 WX_EVENT_TABLE_CONTROL_CONTAINER(wxSplitterWindow)
c801d85f 61END_EVENT_TABLE()
c801d85f 62
6b55490a
VZ
63WX_DELEGATE_TO_CONTROL_CONTAINER(wxSplitterWindow);
64
f6bcfd97 65bool wxSplitterWindow::Create(wxWindow *parent, wxWindowID id,
0d559d69
VZ
66 const wxPoint& pos,
67 const wxSize& size,
68 long style,
69 const wxString& name)
c801d85f 70{
6b55490a
VZ
71 // allow TABbing from one window to the other
72 style |= wxTAB_TRAVERSAL;
73
f6bcfd97
BP
74 if (!wxWindow::Create(parent, id, pos, size, style, name))
75 return FALSE;
76
370938d9 77 m_permitUnsplitAlways = (style & wxSP_PERMIT_UNSPLIT) != 0;
f6bcfd97
BP
78
79 if ( style & wxSP_3DSASH )
80 m_sashSize = 7;
81 else
82 m_sashSize = 3;
83
84 if ( style & wxSP_3DBORDER )
85 m_borderSize = 2;
86 else if ( style & wxSP_BORDER )
87 m_borderSize = 1;
88 else
89 m_borderSize = 0;
2e8cc3e8 90
ed2e7e59
RR
91#ifdef __WXMAC__
92 int major,minor;
93 wxGetOsVersion( &major, &minor );
94 if (major >= 10)
95 m_windowStyle |= wxSP_SASH_AQUA;
96#endif
f6bcfd97
BP
97
98 return TRUE;
99}
100
101void wxSplitterWindow::Init()
102{
9948d31f
VZ
103 m_container.SetContainerWindow(this);
104
f6bcfd97
BP
105 m_splitMode = wxSPLIT_VERTICAL;
106 m_permitUnsplitAlways = TRUE;
c67daf87
UR
107 m_windowOne = (wxWindow *) NULL;
108 m_windowTwo = (wxWindow *) NULL;
c801d85f
KB
109 m_dragMode = wxSPLIT_DRAG_NONE;
110 m_oldX = 0;
111 m_oldY = 0;
112 m_firstX = 0;
113 m_firstY = 0;
2b5f62a0
VZ
114 m_sashSize = 3;
115 m_borderSize = 0;
ca39e409 116 m_sashPosition = m_requestedSashPosition = 0;
c801d85f 117 m_minimumPaneSize = 0;
153b7996
VZ
118 m_sashCursorWE = wxCursor(wxCURSOR_SIZEWE);
119 m_sashCursorNS = wxCursor(wxCURSOR_SIZENS);
c801d85f 120 m_sashTrackerPen = new wxPen(*wxBLACK, 2, wxSOLID);
c67daf87
UR
121 m_lightShadowPen = (wxPen *) NULL;
122 m_mediumShadowPen = (wxPen *) NULL;
123 m_darkShadowPen = (wxPen *) NULL;
124 m_faceBrush = (wxBrush *) NULL;
125 m_facePen = (wxPen *) NULL;
126 m_hilightPen = (wxPen *) NULL;
c801d85f 127
c801d85f
KB
128 InitColours();
129
72195a0f 130 m_needUpdating = FALSE;
c801d85f
KB
131}
132
0d559d69 133wxSplitterWindow::~wxSplitterWindow()
c801d85f 134{
c801d85f
KB
135 delete m_sashTrackerPen;
136 delete m_lightShadowPen;
137 delete m_darkShadowPen;
138 delete m_mediumShadowPen;
139 delete m_hilightPen;
140 delete m_facePen;
141 delete m_faceBrush;
142}
143
153b7996
VZ
144void wxSplitterWindow::SetResizeCursor()
145{
146 SetCursor(m_splitMode == wxSPLIT_VERTICAL ? m_sashCursorWE
147 : m_sashCursorNS);
148}
149
c801d85f
KB
150void wxSplitterWindow::OnPaint(wxPaintEvent& WXUNUSED(event))
151{
152 wxPaintDC dc(this);
153
154 if ( m_borderSize > 0 )
155 DrawBorders(dc);
156 DrawSash(dc);
157}
158
da599db2 159void wxSplitterWindow::OnIdle(wxIdleEvent& event)
72195a0f
RR
160{
161 if (m_needUpdating)
162 SizeWindows();
da599db2
VZ
163
164 event.Skip();
72195a0f 165}
4c013092 166
c801d85f
KB
167void wxSplitterWindow::OnMouseEvent(wxMouseEvent& event)
168{
2e8cc3e8
VZ
169 int x = (int)event.GetX(),
170 y = (int)event.GetY();
c801d85f 171
84e7741a
RR
172#if defined(__WXMSW__)
173 // SetCursor(wxCursor()); // Is this required?
b69f1bd1 174#endif
f4621a09 175
f6bcfd97
BP
176 if (GetWindowStyle() & wxSP_NOSASH)
177 return;
58d1c1ae 178
153b7996
VZ
179 // with wxSP_LIVE_UPDATE style the splitter windows are always resized
180 // following the mouse movement while it drags the sash, without it we only
181 // draw the sash at the new position but only resize the windows when the
182 // dragging is finished
183 bool isLive = (GetWindowStyleFlag() & wxSP_LIVE_UPDATE) != 0;
184
0d559d69
VZ
185 if (event.LeftDown())
186 {
c801d85f
KB
187 if ( SashHitTest(x, y) )
188 {
84e7741a 189 // Start the drag now
4a33eba6 190 m_dragMode = wxSPLIT_DRAG_DRAGGING;
84e7741a
RR
191
192 // Capture mouse and set the cursor
193 CaptureMouse();
194 SetResizeCursor();
f4621a09 195
153b7996 196 if ( !isLive )
4419ba31 197 {
153b7996
VZ
198 // remember the initial sash position and draw the initial
199 // shadow sash
200 m_sashPositionCurrent = m_sashPosition;
201
4419ba31
VZ
202 DrawSashTracker(x, y);
203 }
a6aa9b1e 204
4a33eba6
RR
205 m_oldX = x;
206 m_oldY = y;
9f334bea 207
153b7996 208 SetResizeCursor();
f4621a09 209 return;
c801d85f 210 }
0d559d69 211 }
0d559d69
VZ
212 else if (event.LeftUp() && m_dragMode == wxSPLIT_DRAG_DRAGGING)
213 {
c801d85f
KB
214 // We can stop dragging now and see what we've got.
215 m_dragMode = wxSPLIT_DRAG_NONE;
84e7741a
RR
216
217 // Release mouse and unset the cursor
0d559d69 218 ReleaseMouse();
84e7741a 219 SetCursor(* wxSTANDARD_CURSOR);
dbc208e9 220
2b5f62a0
VZ
221 // exit if unsplit after doubleclick
222 if ( !IsSplit() )
223 {
224 return;
225 }
226
c801d85f 227 // Erase old tracker
153b7996 228 if ( !isLive )
4419ba31 229 {
72195a0f 230 DrawSashTracker(m_oldX, m_oldY);
4419ba31 231 }
c801d85f 232
3e58dcb9
VZ
233 // the position of the click doesn't exactly correspond to
234 // m_sashPosition, rather it changes it by the distance by which the
235 // mouse has moved
236 int diff = m_splitMode == wxSPLIT_VERTICAL ? x - m_oldX : y - m_oldY;
4c013092 237
153b7996
VZ
238 int posSashOld = isLive ? m_sashPosition : m_sashPositionCurrent;
239 int posSashNew = OnSashPositionChanging(posSashOld + diff);
3e58dcb9 240 if ( posSashNew == -1 )
42e69d6b 241 {
3e58dcb9
VZ
242 // change not allowed
243 return;
42e69d6b 244 }
4c013092 245
43b5058d 246 if ( m_permitUnsplitAlways || m_minimumPaneSize == 0 )
4c013092 247 {
370938d9 248 // Deal with possible unsplit scenarios
3e58dcb9 249 if ( posSashNew == 0 )
370938d9
UB
250 {
251 // We remove the first window from the view
252 wxWindow *removedWindow = m_windowOne;
253 m_windowOne = m_windowTwo;
254 m_windowTwo = (wxWindow *) NULL;
3e58dcb9 255 OnUnsplit(removedWindow);
63ec9dbb 256 SetSashPositionAndNotify(0);
370938d9 257 }
3e58dcb9 258 else if ( posSashNew == GetWindowSize() )
370938d9
UB
259 {
260 // We remove the second window from the view
261 wxWindow *removedWindow = m_windowTwo;
262 m_windowTwo = (wxWindow *) NULL;
3e58dcb9 263 OnUnsplit(removedWindow);
63ec9dbb 264 SetSashPositionAndNotify(0);
370938d9
UB
265 }
266 else
267 {
63ec9dbb 268 SetSashPositionAndNotify(posSashNew);
370938d9 269 }
c801d85f 270 }
4c013092 271 else
c801d85f 272 {
63ec9dbb 273 SetSashPositionAndNotify(posSashNew);
4c013092 274 }
42e69d6b 275
c801d85f 276 SizeWindows();
4a33eba6 277 } // left up && dragging
0d559d69
VZ
278 else if (event.Moving() && !event.Dragging())
279 {
84e7741a 280 // Just change the cursor as required
c801d85f 281 if ( SashHitTest(x, y) )
153b7996 282 SetResizeCursor();
58d1c1ae 283 else
58d1c1ae 284 SetCursor(* wxSTANDARD_CURSOR);
0d559d69 285 }
a6aa9b1e 286 else if (event.Dragging() && (m_dragMode == wxSPLIT_DRAG_DRAGGING))
0d559d69 287 {
3e58dcb9 288 int diff = m_splitMode == wxSPLIT_VERTICAL ? x - m_oldX : y - m_oldY;
8dcfd2f9
VZ
289 if ( !diff )
290 {
291 // nothing to do, mouse didn't really move far enough
292 return;
293 }
370938d9 294
153b7996
VZ
295 int posSashOld = isLive ? m_sashPosition : m_sashPositionCurrent;
296 int posSashNew = OnSashPositionChanging(posSashOld + diff);
3e58dcb9 297 if ( posSashNew == -1 )
370938d9 298 {
3e58dcb9
VZ
299 // change not allowed
300 return;
370938d9 301 }
00a32dc1 302
3e58dcb9 303 if ( posSashNew == m_sashPosition )
7c1122c4 304 return;
370938d9 305
4a33eba6 306 // Erase old tracker
153b7996 307 if ( !isLive )
4419ba31 308 {
72195a0f 309 DrawSashTracker(m_oldX, m_oldY);
4419ba31 310 }
c801d85f 311
370938d9 312 if (m_splitMode == wxSPLIT_VERTICAL)
3e58dcb9 313 x = posSashNew;
370938d9 314 else
3e58dcb9 315 y = posSashNew;
370938d9 316
7c1122c4
RR
317 // Remember old positions
318 m_oldX = x;
319 m_oldY = y;
370938d9 320
d66a042c
VZ
321#ifdef __WXMSW__
322 // As we captured the mouse, we may get the mouse events from outside
323 // our window - for example, negative values in x, y. This has a weird
324 // consequence under MSW where we use unsigned values sometimes and
325 // signed ones other times: the coordinates turn as big positive
326 // numbers and so the sash is drawn on the *right* side of the window
327 // instead of the left (or bottom instead of top). Correct this.
d66a042c
VZ
328 if ( (short)m_oldX < 0 )
329 m_oldX = 0;
330 if ( (short)m_oldY < 0 )
331 m_oldY = 0;
332#endif // __WXMSW__
333
334 // Draw new one
153b7996 335 if ( !isLive )
4419ba31 336 {
153b7996
VZ
337 m_sashPositionCurrent = posSashNew;
338
72195a0f 339 DrawSashTracker(m_oldX, m_oldY);
4419ba31
VZ
340 }
341 else
342 {
63ec9dbb 343 SetSashPositionAndNotify(posSashNew);
4419ba31
VZ
344 m_needUpdating = TRUE;
345 }
0d559d69 346 }
a2f9a636 347 else if ( event.LeftDClick() && m_windowTwo )
c801d85f 348 {
3e58dcb9 349 OnDoubleClickSash(x, y);
c801d85f 350 }
c801d85f
KB
351}
352
a8731351 353void wxSplitterWindow::OnSize(wxSizeEvent& event)
c801d85f 354{
a8731351
VZ
355 // only process this message if we're not iconized - otherwise iconizing
356 // and restoring a window containing the splitter has a funny side effect
357 // of changing the splitter position!
358 wxWindow *parent = GetParent();
359 while ( parent && !parent->IsTopLevel() )
c801d85f 360 {
a8731351
VZ
361 parent = parent->GetParent();
362 }
363
642d2dc8 364 bool iconized = FALSE;
2e8cc3e8 365
642d2dc8
JS
366 // wxMotif doesn't yet have a wxTopLevelWindow implementation
367#ifdef __WXMOTIF__
368 wxFrame *winTop = wxDynamicCast(parent, wxFrame);
369#else
2e8cc3e8 370 wxTopLevelWindow *winTop = wxDynamicCast(parent, wxTopLevelWindow);
642d2dc8 371#endif
2e8cc3e8
VZ
372 if ( winTop )
373 {
374 iconized = winTop->IsIconized();
375 }
642d2dc8 376#ifndef __WXMOTIF__
a8731351
VZ
377 else
378 {
2e8cc3e8
VZ
379 wxFAIL_MSG(wxT("should have a top level parent!"));
380
381 iconized = FALSE;
a8731351 382 }
642d2dc8 383#endif
63ec9dbb 384
a8731351
VZ
385 if ( iconized )
386 {
387 event.Skip();
2e8cc3e8
VZ
388
389 return;
a8731351 390 }
2e8cc3e8
VZ
391
392 int cw, ch;
393 GetClientSize( &cw, &ch );
394 if ( m_windowTwo )
a8731351 395 {
2e8cc3e8 396 if ( m_splitMode == wxSPLIT_VERTICAL )
c801d85f 397 {
2e8cc3e8 398 if ( m_sashPosition >= (cw - 5) )
63ec9dbb 399 SetSashPositionAndNotify(wxMax(10, cw - 40));
2e8cc3e8
VZ
400 }
401 else // m_splitMode == wxSPLIT_HORIZONTAL
402 {
403 if ( m_sashPosition >= (ch - 5) )
63ec9dbb 404 SetSashPositionAndNotify(wxMax(10, ch - 40));
c801d85f
KB
405 }
406 }
2e8cc3e8
VZ
407
408 SizeWindows();
c801d85f
KB
409}
410
debe6624 411bool wxSplitterWindow::SashHitTest(int x, int y, int tolerance)
c801d85f
KB
412{
413 if ( m_windowTwo == NULL || m_sashPosition == 0)
414 return FALSE; // No sash
415
416 if ( m_splitMode == wxSPLIT_VERTICAL )
417 {
418 if ( (x >= m_sashPosition - tolerance) && (x <= m_sashPosition + m_sashSize + tolerance) )
419 return TRUE;
420 else
421 return FALSE;
422 }
423 else
424 {
425 if ( (y >= (m_sashPosition- tolerance)) && (y <= (m_sashPosition + m_sashSize + tolerance)) )
426 return TRUE;
427 else
428 return FALSE;
429 }
c801d85f
KB
430}
431
432// Draw 3D effect borders
433void wxSplitterWindow::DrawBorders(wxDC& dc)
434{
435 int w, h;
436 GetClientSize(&w, &h);
437
f6bcfd97 438 if ( GetWindowStyleFlag() & wxSP_3DBORDER )
c801d85f 439 {
a6aa9b1e 440
1e2c86ca
PA
441 dc.SetPen(*m_facePen);
442 dc.SetBrush(*m_faceBrush);
443 dc.DrawRectangle(1, 1 , w-1, m_borderSize-2 ); //high
444 dc.DrawRectangle(1, m_borderSize-2 , m_borderSize-2, h-1 ); // left
445 dc.DrawRectangle(w-m_borderSize+2, m_borderSize-2 , w-1, h-1 ); // right
446 dc.DrawRectangle(m_borderSize-2, h-m_borderSize+2 , w-m_borderSize+2, h-1 ); //bottom
447
c801d85f 448 dc.SetPen(*m_mediumShadowPen);
1e2c86ca
PA
449 dc.DrawLine(m_borderSize-2, m_borderSize-2, w-m_borderSize+1, m_borderSize-2);
450 dc.DrawLine(m_borderSize-2, m_borderSize-2, m_borderSize-2, h-m_borderSize+1);
c801d85f
KB
451
452 dc.SetPen(*m_darkShadowPen);
1e2c86ca
PA
453 dc.DrawLine(m_borderSize-1, m_borderSize-1, w-m_borderSize, m_borderSize-1);
454 dc.DrawLine(m_borderSize-1, m_borderSize-1, m_borderSize-1, h-m_borderSize);
c801d85f
KB
455
456 dc.SetPen(*m_hilightPen);
1e2c86ca
PA
457 dc.DrawLine(m_borderSize - 2, h-m_borderSize+1, w-m_borderSize+1, h-m_borderSize+1);
458 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.
c801d85f
KB
459 /// Anyway, h is required for MSW.
460
461 dc.SetPen(*m_lightShadowPen);
1e2c86ca
PA
462 dc.DrawLine(w-m_borderSize, m_borderSize-1, w-m_borderSize, h-m_borderSize); // Right hand side
463 dc.DrawLine(m_borderSize-1, h-m_borderSize, w-m_borderSize+1, h-m_borderSize); // Bottom
c801d85f
KB
464 }
465 else if ( GetWindowStyleFlag() & wxSP_BORDER )
466 {
467 dc.SetBrush(*wxTRANSPARENT_BRUSH);
468 dc.SetPen(*wxBLACK_PEN);
469 dc.DrawRectangle(0, 0, w-1, h-1);
470 }
471
472 dc.SetPen(wxNullPen);
473 dc.SetBrush(wxNullBrush);
474}
475
476// Draw the sash
477void wxSplitterWindow::DrawSash(wxDC& dc)
478{
479 if ( m_sashPosition == 0 || !m_windowTwo)
480 return;
f6bcfd97
BP
481 if (GetWindowStyle() & wxSP_NOSASH)
482 return;
c801d85f
KB
483
484 int w, h;
485 GetClientSize(&w, &h);
486
f6bcfd97 487 if ( GetWindowStyleFlag() & wxSP_3DSASH )
c801d85f
KB
488 {
489 if ( m_splitMode == wxSPLIT_VERTICAL )
490 {
491 dc.SetPen(*m_facePen);
d30f0930
RR
492
493 if (HasFlag( wxSP_SASH_AQUA ))
494 dc.SetBrush(*wxWHITE_BRUSH);
495 else
496 dc.SetBrush(*m_faceBrush);
1e2c86ca 497 dc.DrawRectangle(m_sashPosition + 2, 0 , m_sashSize - 4, h );
c801d85f
KB
498
499 dc.SetBrush(*wxTRANSPARENT_BRUSH);
500
501 dc.SetPen(*m_lightShadowPen);
f6bcfd97 502 int xShadow = m_borderSize ? m_borderSize - 1 : 0 ;
1e2c86ca 503 dc.DrawLine(m_sashPosition, xShadow , m_sashPosition, h-m_borderSize);
c801d85f
KB
504
505 dc.SetPen(*m_hilightPen);
1e2c86ca 506 dc.DrawLine(m_sashPosition+1, m_borderSize - 2, m_sashPosition+1, h - m_borderSize+2);
c801d85f 507
d30f0930
RR
508 if (!HasFlag( wxSP_SASH_AQUA ))
509 dc.SetPen(*m_mediumShadowPen);
510
511 int yMedium = m_borderSize ? h-m_borderSize+1 : h ;
1e2c86ca 512 dc.DrawLine(m_sashPosition+m_sashSize-2, xShadow, m_sashPosition+m_sashSize-2, yMedium);
c801d85f 513
d30f0930
RR
514 if (HasFlag( wxSP_SASH_AQUA ))
515 dc.SetPen(*m_lightShadowPen);
516 else
517 dc.SetPen(*m_darkShadowPen);
1e2c86ca 518 dc.DrawLine(m_sashPosition+m_sashSize-1, m_borderSize, m_sashPosition+m_sashSize-1, h-m_borderSize );
2e8cc3e8 519
f6bcfd97
BP
520 // Draw the top and bottom edges of the sash, if requested
521 if (GetWindowStyle() & wxSP_FULLSASH)
522 {
523 // Top
524 dc.SetPen(*m_hilightPen);
525 dc.DrawLine(m_sashPosition+1, m_borderSize, m_sashPosition+m_sashSize-1, m_borderSize);
526
527 // Bottom
528 dc.SetPen(*m_darkShadowPen);
529 dc.DrawLine(m_sashPosition+1, h-m_borderSize-1, m_sashPosition+m_sashSize-1, h-m_borderSize-1);
530 }
0d559d69 531 }
2b5f62a0 532 else // wxSPLIT_HORIZONTAL
c801d85f
KB
533 {
534 dc.SetPen(*m_facePen);
d30f0930
RR
535 if (HasFlag( wxSP_SASH_AQUA ))
536 dc.SetBrush(*wxWHITE_BRUSH);
537 else
538 dc.SetBrush(*m_faceBrush);
1e2c86ca 539 dc.DrawRectangle( m_borderSize-2, m_sashPosition + 2, w-m_borderSize+2, m_sashSize - 4);
c801d85f
KB
540
541 dc.SetBrush(*wxTRANSPARENT_BRUSH);
542
543 dc.SetPen(*m_lightShadowPen);
1e2c86ca 544 dc.DrawLine(m_borderSize-1, m_sashPosition, w-m_borderSize, m_sashPosition);
c801d85f
KB
545
546 dc.SetPen(*m_hilightPen);
1e2c86ca 547 dc.DrawLine(m_borderSize-2, m_sashPosition+1, w-m_borderSize+1, m_sashPosition+1);
c801d85f 548
d30f0930
RR
549 if (!HasFlag( wxSP_SASH_AQUA ))
550 dc.SetPen(*m_mediumShadowPen);
1e2c86ca 551 dc.DrawLine(m_borderSize-1, m_sashPosition+m_sashSize-2, w-m_borderSize+1, m_sashPosition+m_sashSize-2);
c801d85f 552
d30f0930
RR
553 if (HasFlag( wxSP_SASH_AQUA ))
554 dc.SetPen(*m_lightShadowPen);
555 else
556 dc.SetPen(*m_darkShadowPen);
1e2c86ca 557 dc.DrawLine(m_borderSize, m_sashPosition+m_sashSize-1, w-m_borderSize, m_sashPosition+m_sashSize-1);
f6bcfd97
BP
558
559 // Draw the left and right edges of the sash, if requested
560 if (GetWindowStyle() & wxSP_FULLSASH)
561 {
562 // Left
563 dc.SetPen(*m_hilightPen);
564 dc.DrawLine(m_borderSize, m_sashPosition, m_borderSize, m_sashPosition+m_sashSize);
565
566 // Right
567 dc.SetPen(*m_darkShadowPen);
568 dc.DrawLine(w-m_borderSize-1, m_sashPosition+1, w-m_borderSize-1, m_sashPosition+m_sashSize-1);
569 }
c801d85f
KB
570 }
571 }
2b5f62a0 572 else // !wxSP_3DSASH
c801d85f 573 {
2b5f62a0
VZ
574 dc.SetPen(*wxTRANSPARENT_PEN);
575 dc.SetBrush(*m_faceBrush);
c801d85f
KB
576 if ( m_splitMode == wxSPLIT_VERTICAL )
577 {
c801d85f 578 int h1 = h-1;
f6bcfd97
BP
579 int y1 = 0;
580 if ( (GetWindowStyleFlag() & wxSP_BORDER) != wxSP_BORDER && (GetWindowStyleFlag() & wxSP_3DBORDER) != wxSP_3DBORDER )
c801d85f 581 h1 += 1; // Not sure why this is necessary...
f6bcfd97
BP
582 if ( (GetWindowStyleFlag() & wxSP_3DBORDER) == wxSP_3DBORDER)
583 {
584 y1 = 2; h1 -= 3;
585 }
586 dc.DrawRectangle(m_sashPosition, y1, m_sashSize, h1);
c801d85f 587 }
2b5f62a0 588 else // wxSPLIT_HORIZONTAL
c801d85f 589 {
c801d85f 590 int w1 = w-1;
f6bcfd97
BP
591 int x1 = 0;
592 if ( (GetWindowStyleFlag() & wxSP_BORDER) != wxSP_BORDER && (GetWindowStyleFlag() & wxSP_3DBORDER) != wxSP_3DBORDER )
c801d85f 593 w1 ++;
f6bcfd97
BP
594 if ( (GetWindowStyleFlag() & wxSP_3DBORDER) == wxSP_3DBORDER)
595 {
596 x1 = 2; w1 -= 3;
597 }
598 dc.DrawRectangle(x1, m_sashPosition, w1, m_sashSize);
c801d85f 599 }
c801d85f
KB
600 }
601
602 dc.SetPen(wxNullPen);
603 dc.SetBrush(wxNullBrush);
604}
605
606// Draw the sash tracker (for whilst moving the sash)
debe6624 607void wxSplitterWindow::DrawSashTracker(int x, int y)
c801d85f
KB
608{
609 int w, h;
610 GetClientSize(&w, &h);
611
612 wxScreenDC screenDC;
613 int x1, y1;
614 int x2, y2;
615
616 if ( m_splitMode == wxSPLIT_VERTICAL )
617 {
618 x1 = x; y1 = 2;
619 x2 = x; y2 = h-2;
620
621 if ( x1 > w )
622 {
623 x1 = w; x2 = w;
624 }
625 else if ( x1 < 0 )
626 {
627 x1 = 0; x2 = 0;
628 }
629 }
630 else
631 {
632 x1 = 2; y1 = y;
633 x2 = w-2; y2 = y;
634
635 if ( y1 > h )
636 {
637 y1 = h;
638 y2 = h;
639 }
640 else if ( y1 < 0 )
641 {
642 y1 = 0;
643 y2 = 0;
644 }
645 }
646
647 ClientToScreen(&x1, &y1);
648 ClientToScreen(&x2, &y2);
649
3c679789 650 screenDC.SetLogicalFunction(wxINVERT);
c801d85f
KB
651 screenDC.SetPen(*m_sashTrackerPen);
652 screenDC.SetBrush(*wxTRANSPARENT_BRUSH);
653
654 screenDC.DrawLine(x1, y1, x2, y2);
655
656 screenDC.SetLogicalFunction(wxCOPY);
657
658 screenDC.SetPen(wxNullPen);
659 screenDC.SetBrush(wxNullBrush);
660}
661
2e8cc3e8 662int wxSplitterWindow::GetWindowSize() const
d76ac8ed 663{
2e8cc3e8
VZ
664 wxSize size = GetClientSize();
665
666 return m_splitMode == wxSPLIT_VERTICAL ? size.x : size.y;
667}
668
669int wxSplitterWindow::AdjustSashPosition(int sashPos) const
670{
671 int window_size = GetWindowSize();
672
d76ac8ed
VS
673 wxWindow *win;
674
d76ac8ed
VS
675 win = GetWindow1();
676 if ( win )
677 {
2e8cc3e8
VZ
678 // the window shouldn't be smaller than its own minimal size nor
679 // smaller than the minimual pane size specified for this splitter
680 int minSize = m_splitMode == wxSPLIT_VERTICAL ? win->GetMinWidth()
681 : win->GetMinHeight();
682
683 if ( minSize == -1 || m_minimumPaneSize > minSize )
684 minSize = m_minimumPaneSize;
685
686 minSize += GetBorderSize();
687
688 if ( sashPos < minSize )
689 sashPos = minSize;
d76ac8ed
VS
690 }
691
692 win = GetWindow2();
693 if ( win )
694 {
2e8cc3e8
VZ
695 int minSize = m_splitMode == wxSPLIT_VERTICAL ? win->GetMinWidth()
696 : win->GetMinHeight();
697
698 if ( minSize == -1 || m_minimumPaneSize > minSize )
699 minSize = m_minimumPaneSize;
700
701 int maxSize = window_size - minSize - GetBorderSize();
702 if ( sashPos > maxSize )
703 sashPos = maxSize;
d76ac8ed 704 }
2e8cc3e8
VZ
705
706 return sashPos;
d76ac8ed
VS
707}
708
63ec9dbb 709bool wxSplitterWindow::DoSetSashPosition(int sashPos)
ca39e409 710{
74c57d1f 711 int newSashPosition = AdjustSashPosition(sashPos);
3e58dcb9 712
63ec9dbb
VZ
713 if ( newSashPosition == m_sashPosition )
714 return FALSE;
74c57d1f 715
63ec9dbb
VZ
716 m_sashPosition = newSashPosition;
717
718 return TRUE;
719}
720
721void wxSplitterWindow::SetSashPositionAndNotify(int sashPos)
722{
723 if ( DoSetSashPosition(sashPos) )
724 {
74c57d1f
VZ
725 wxSplitterEvent event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, this);
726 event.m_data.pos = m_sashPosition;
3e58dcb9 727
74c57d1f
VZ
728 (void)DoSendEvent(event);
729 }
ca39e409
VS
730}
731
c801d85f
KB
732// Position and size subwindows.
733// Note that the border size applies to each subwindow, not
734// including the edges next to the sash.
0d559d69 735void wxSplitterWindow::SizeWindows()
c801d85f 736{
74c57d1f
VZ
737 // check if we have delayed setting the real sash position
738 if ( m_requestedSashPosition != INT_MAX )
739 {
740 int newSashPosition = ConvertSashPosition(m_requestedSashPosition);
741 if ( newSashPosition != m_sashPosition )
742 {
743 DoSetSashPosition(newSashPosition);
744 }
745
2b5f62a0
VZ
746 if ( newSashPosition <= m_sashPosition
747 && newSashPosition >= m_sashPosition - GetBorderSize() )
74c57d1f
VZ
748 {
749 // don't update it any more
750 m_requestedSashPosition = INT_MAX;
751 }
752 }
ca39e409 753
c801d85f
KB
754 int w, h;
755 GetClientSize(&w, &h);
756
f6bcfd97 757 if ( GetWindow1() && !GetWindow2() )
c801d85f 758 {
63ec9dbb 759 GetWindow1()->SetSize(GetBorderSize(), GetBorderSize(),
ca39e409 760 w - 2*GetBorderSize(), h - 2*GetBorderSize());
c801d85f 761 }
f6bcfd97 762 else if ( GetWindow1() && GetWindow2() )
c801d85f 763 {
f6bcfd97 764 if (GetSplitMode() == wxSPLIT_VERTICAL)
c801d85f 765 {
f6bcfd97
BP
766 int x1 = GetBorderSize();
767 int y1 = GetBorderSize();
768 int w1 = GetSashPosition() - GetBorderSize();
769 int h1 = h - 2*GetBorderSize();
770
771 int x2 = GetSashPosition() + GetSashSize();
772 int y2 = GetBorderSize();
773 int w2 = w - 2*GetBorderSize() - GetSashSize() - w1;
774 int h2 = h - 2*GetBorderSize();
775
776 GetWindow1()->SetSize(x1, y1, w1, h1);
777 GetWindow2()->SetSize(x2, y2, w2, h2);
c801d85f
KB
778 }
779 else
780 {
f6bcfd97
BP
781 GetWindow1()->SetSize(GetBorderSize(), GetBorderSize(),
782 w - 2*GetBorderSize(), GetSashPosition() - GetBorderSize());
783 GetWindow2()->SetSize(GetBorderSize(), GetSashPosition() + GetSashSize(),
784 w - 2*GetBorderSize(), h - 2*GetBorderSize() - GetSashSize() - (GetSashPosition() - GetBorderSize()));
c801d85f
KB
785 }
786 }
787 wxClientDC dc(this);
f6bcfd97 788 if ( GetBorderSize() > 0 )
4419ba31 789 DrawBorders(dc);
c801d85f 790 DrawSash(dc);
00a32dc1 791
f6bcfd97 792 SetNeedUpdating(FALSE);
c801d85f
KB
793}
794
795// Set pane for unsplit window
796void wxSplitterWindow::Initialize(wxWindow *window)
797{
2b5f62a0 798 wxASSERT_MSG( window && window->GetParent() == this,
fe6dc50a
VZ
799 _T("windows in the splitter should have it as parent!") );
800
c801d85f 801 m_windowOne = window;
c67daf87 802 m_windowTwo = (wxWindow *) NULL;
ca39e409 803 DoSetSashPosition(0);
c801d85f
KB
804}
805
806// Associates the given window with window 2, drawing the appropriate sash
807// and changing the split mode.
808// Does nothing and returns FALSE if the window is already split.
2e8cc3e8
VZ
809bool wxSplitterWindow::DoSplit(wxSplitMode mode,
810 wxWindow *window1, wxWindow *window2,
811 int sashPosition)
c801d85f
KB
812{
813 if ( IsSplit() )
814 return FALSE;
815
2b5f62a0
VZ
816 wxCHECK_MSG( window1 && window2, FALSE,
817 _T("can not split with NULL window(s)") );
818
819 wxCHECK_MSG( window1->GetParent() == this && window2->GetParent() == this, FALSE,
fe6dc50a
VZ
820 _T("windows in the splitter should have it as parent!") );
821
2e8cc3e8 822 m_splitMode = mode;
c801d85f
KB
823 m_windowOne = window1;
824 m_windowTwo = window2;
c801d85f 825
74c57d1f
VZ
826 // remember the sash position we want to set for later if we can't set it
827 // right now (e.g. because the window is too small)
828 m_requestedSashPosition = sashPosition;
829
830 DoSetSashPosition(ConvertSashPosition(sashPosition));
831
832 SizeWindows();
833
834 return TRUE;
835}
836
837int wxSplitterWindow::ConvertSashPosition(int sashPosition) const
838{
0d559d69 839 if ( sashPosition > 0 )
2e8cc3e8 840 {
74c57d1f 841 return sashPosition;
2e8cc3e8 842 }
0d559d69 843 else if ( sashPosition < 0 )
2e8cc3e8
VZ
844 {
845 // It's negative so adding is subtracting
74c57d1f 846 return GetWindowSize() + sashPosition;
2e8cc3e8 847 }
74c57d1f 848 else // sashPosition == 0
2e8cc3e8 849 {
74c57d1f
VZ
850 // default, put it in the centre
851 return GetWindowSize() / 2;
2e8cc3e8 852 }
c801d85f
KB
853}
854
c801d85f
KB
855// Remove the specified (or second) window from the view
856// Doesn't actually delete the window.
857bool wxSplitterWindow::Unsplit(wxWindow *toRemove)
858{
859 if ( ! IsSplit() )
860 return FALSE;
861
3ad5e06b 862 wxWindow *win = NULL;
c801d85f
KB
863 if ( toRemove == NULL || toRemove == m_windowTwo)
864 {
3ad5e06b 865 win = m_windowTwo ;
c67daf87 866 m_windowTwo = (wxWindow *) NULL;
c801d85f
KB
867 }
868 else if ( toRemove == m_windowOne )
869 {
3ad5e06b 870 win = m_windowOne ;
c801d85f 871 m_windowOne = m_windowTwo;
c67daf87 872 m_windowTwo = (wxWindow *) NULL;
c801d85f
KB
873 }
874 else
dbc208e9 875 {
223d09f6 876 wxFAIL_MSG(wxT("splitter: attempt to remove a non-existent window"));
dbc208e9 877
c801d85f 878 return FALSE;
dbc208e9 879 }
c801d85f 880
a2f9a636 881 win->Show(FALSE);
ca39e409 882 DoSetSashPosition(0);
3ad5e06b
VZ
883 SizeWindows();
884
885 return TRUE;
886}
887
888// Replace a window with another one
889bool wxSplitterWindow::ReplaceWindow(wxWindow *winOld, wxWindow *winNew)
890{
223d09f6
KB
891 wxCHECK_MSG( winOld, FALSE, wxT("use one of Split() functions instead") );
892 wxCHECK_MSG( winNew, FALSE, wxT("use Unsplit() functions instead") );
3ad5e06b
VZ
893
894 if ( winOld == m_windowTwo )
895 {
896 m_windowTwo = winNew;
897 }
898 else if ( winOld == m_windowOne )
899 {
900 m_windowOne = winNew;
901 }
902 else
903 {
223d09f6 904 wxFAIL_MSG(wxT("splitter: attempt to replace a non-existent window"));
3ad5e06b
VZ
905
906 return FALSE;
907 }
908
909 SizeWindows();
910
c801d85f
KB
911 return TRUE;
912}
913
ca39e409
VS
914void wxSplitterWindow::SetMinimumPaneSize(int min)
915{
916 m_minimumPaneSize = min;
917 SetSashPosition(m_sashPosition); // re-check limits
918}
919
debe6624 920void wxSplitterWindow::SetSashPosition(int position, bool redraw)
c801d85f 921{
ca39e409 922 DoSetSashPosition(position);
c801d85f
KB
923
924 if ( redraw )
925 {
926 SizeWindows();
927 }
928}
929
c801d85f 930// Initialize colours
0d559d69 931void wxSplitterWindow::InitColours()
c801d85f 932{
0d559d69
VZ
933 wxDELETE( m_facePen );
934 wxDELETE( m_faceBrush );
935 wxDELETE( m_mediumShadowPen );
936 wxDELETE( m_darkShadowPen );
937 wxDELETE( m_lightShadowPen );
938 wxDELETE( m_hilightPen );
c801d85f
KB
939
940 // Shadow colours
37d403aa 941#ifndef __WIN16__
a756f210 942 wxColour faceColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE));
c801d85f
KB
943 m_facePen = new wxPen(faceColour, 1, wxSOLID);
944 m_faceBrush = new wxBrush(faceColour, wxSOLID);
945
a756f210 946 wxColour mediumShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DSHADOW));
c801d85f
KB
947 m_mediumShadowPen = new wxPen(mediumShadowColour, 1, wxSOLID);
948
a756f210 949 wxColour darkShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DDKSHADOW));
c801d85f
KB
950 m_darkShadowPen = new wxPen(darkShadowColour, 1, wxSOLID);
951
a756f210 952 wxColour lightShadowColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DLIGHT));
c801d85f
KB
953 m_lightShadowPen = new wxPen(lightShadowColour, 1, wxSOLID);
954
a756f210 955 wxColour hilightColour(wxSystemSettings::GetColour(wxSYS_COLOUR_3DHILIGHT));
c801d85f 956 m_hilightPen = new wxPen(hilightColour, 1, wxSOLID);
37d403aa 957#else
c801d85f
KB
958 m_facePen = new wxPen("LIGHT GREY", 1, wxSOLID);
959 m_faceBrush = new wxBrush("LIGHT GREY", wxSOLID);
960 m_mediumShadowPen = new wxPen("GREY", 1, wxSOLID);
961 m_darkShadowPen = new wxPen("BLACK", 1, wxSOLID);
962 m_lightShadowPen = new wxPen("LIGHT GREY", 1, wxSOLID);
963 m_hilightPen = new wxPen("WHITE", 1, wxSOLID);
37d403aa 964#endif // __WIN16__
c801d85f
KB
965}
966
3e58dcb9 967bool wxSplitterWindow::DoSendEvent(wxSplitterEvent& event)
42e69d6b 968{
3e58dcb9 969 return !GetEventHandler()->ProcessEvent(event) || event.IsAllowed();
42e69d6b
VZ
970}
971
972// ---------------------------------------------------------------------------
3e58dcb9 973// wxSplitterWindow virtual functions: they now just generate the events
42e69d6b
VZ
974// ---------------------------------------------------------------------------
975
3e58dcb9
VZ
976bool wxSplitterWindow::OnSashPositionChange(int WXUNUSED(newSashPosition))
977{
978 // always allow by default
979 return TRUE;
980}
981
982int wxSplitterWindow::OnSashPositionChanging(int newSashPosition)
42e69d6b
VZ
983{
984 // If within UNSPLIT_THRESHOLD from edge, set to edge to cause closure.
985 const int UNSPLIT_THRESHOLD = 4;
986
3e58dcb9
VZ
987 // first of all, check if OnSashPositionChange() doesn't forbid this change
988 if ( !OnSashPositionChange(newSashPosition) )
989 {
990 // it does
991 return -1;
992 }
42e69d6b
VZ
993
994 // Obtain relevant window dimension for bottom / right threshold check
2e8cc3e8 995 int window_size = GetWindowSize();
42e69d6b 996
370938d9 997 bool unsplit_scenario = FALSE;
3e58dcb9 998 if ( m_permitUnsplitAlways || m_minimumPaneSize == 0 )
bc79aa6b 999 {
370938d9
UB
1000 // Do edge detection if unsplit premitted
1001 if ( newSashPosition <= UNSPLIT_THRESHOLD )
1002 {
1003 // threshold top / left check
1004 newSashPosition = 0;
1005 unsplit_scenario = TRUE;
1006 }
1007 if ( newSashPosition >= window_size - UNSPLIT_THRESHOLD )
1008 {
1009 // threshold bottom/right check
1010 newSashPosition = window_size;
1011 unsplit_scenario = TRUE;
1012 }
bc79aa6b
UB
1013 }
1014
370938d9 1015 if ( !unsplit_scenario )
bc79aa6b
UB
1016 {
1017 // If resultant pane would be too small, enlarge it
2e8cc3e8 1018 newSashPosition = AdjustSashPosition(newSashPosition);
bc79aa6b 1019 }
42e69d6b
VZ
1020
1021 // If the result is out of bounds it means minimum size is too big,
1022 // so split window in half as best compromise.
1023 if ( newSashPosition < 0 || newSashPosition > window_size )
1024 newSashPosition = window_size / 2;
1025
3e58dcb9
VZ
1026 // now let the event handler have it
1027 //
1028 // FIXME: shouldn't we do it before the adjustments above so as to ensure
1029 // that the sash position is always reasonable?
1030 wxSplitterEvent event(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, this);
1031 event.m_data.pos = newSashPosition;
1032
1033 if ( !DoSendEvent(event) )
42e69d6b 1034 {
3e58dcb9 1035 // the event handler vetoed the change
42e69d6b
VZ
1036 newSashPosition = -1;
1037 }
3e58dcb9
VZ
1038 else
1039 {
1040 // it could have been changed by it
1041 newSashPosition = event.GetSashPosition();
1042 }
42e69d6b 1043
3e58dcb9 1044 return newSashPosition;
42e69d6b
VZ
1045}
1046
1047// Called when the sash is double-clicked. The default behaviour is to remove
1048// the sash if the minimum pane size is zero.
3e58dcb9 1049void wxSplitterWindow::OnDoubleClickSash(int x, int y)
42e69d6b 1050{
a2f9a636
JS
1051 wxCHECK_RET(m_windowTwo, wxT("splitter: no window to remove"));
1052
3e58dcb9
VZ
1053 // new code should handle events instead of using the virtual functions
1054 wxSplitterEvent event(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, this);
1055 event.m_data.pt.x = x;
1056 event.m_data.pt.y = y;
1057 if ( DoSendEvent(event) )
42e69d6b 1058 {
3e58dcb9
VZ
1059 if ( GetMinimumPaneSize() == 0 || m_permitUnsplitAlways )
1060 {
a2f9a636
JS
1061 wxWindow* win = m_windowTwo;
1062 if (Unsplit(win))
1063 OnUnsplit(win);
3e58dcb9 1064 }
42e69d6b 1065 }
3e58dcb9 1066 //else: blocked by user
42e69d6b
VZ
1067}
1068
3e58dcb9 1069void wxSplitterWindow::OnUnsplit(wxWindow *winRemoved)
42e69d6b 1070{
3e58dcb9
VZ
1071 // do it before calling the event handler which may delete the window
1072 winRemoved->Show(FALSE);
42e69d6b 1073
3e58dcb9
VZ
1074 wxSplitterEvent event(wxEVT_COMMAND_SPLITTER_UNSPLIT, this);
1075 event.m_data.win = winRemoved;
4419ba31 1076
3e58dcb9 1077 (void)DoSendEvent(event);
42e69d6b 1078}
43b5058d 1079
64407854 1080#if defined( __WXMSW__ ) || defined( __WXMAC__)
43b5058d 1081
3e58dcb9
VZ
1082// this is currently called (and needed) under MSW only...
1083void wxSplitterWindow::OnSetCursor(wxSetCursorEvent& event)
1084{
43b5058d
VZ
1085 // if we don't do it, the resizing cursor might be set for child window:
1086 // and like this we explicitly say that our cursor should not be used for
1087 // children windows which overlap us
1088
1089 if ( SashHitTest(event.GetX(), event.GetY()) )
1090 {
1091 // default processing is ok
1092 event.Skip();
1093 }
1094 //else: do nothing, in particular, don't call Skip()
43b5058d 1095}
3e58dcb9 1096
d7260478 1097#endif // wxUSE_SPLITTER
3e58dcb9
VZ
1098#endif // wxMSW
1099