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