]>
Commit | Line | Data |
---|---|---|
cd05bf23 | 1 | /////////////////////////////////////////////////////////////////////////////// |
4444d148 | 2 | // Name: src/aui/auibook.cpp |
cd05bf23 BW |
3 | // Purpose: wxaui: wx advanced user interface - notebook |
4 | // Author: Benjamin I. Williams | |
4758baf5 | 5 | // Modified by: Jens Lody |
cd05bf23 BW |
6 | // Created: 2006-06-28 |
7 | // Copyright: (C) Copyright 2006, Kirix Corporation, All Rights Reserved | |
8 | // Licence: wxWindows Library Licence, Version 3.1 | |
9 | /////////////////////////////////////////////////////////////////////////////// | |
10 | ||
11 | // ---------------------------------------------------------------------------- | |
12 | // headers | |
13 | // ---------------------------------------------------------------------------- | |
14 | ||
15 | #include "wx/wxprec.h" | |
16 | ||
17 | #ifdef __BORLANDC__ | |
18 | #pragma hdrstop | |
19 | #endif | |
20 | ||
21 | #if wxUSE_AUI | |
22 | ||
189da67c | 23 | #include "wx/aui/auibook.h" |
cd05bf23 BW |
24 | |
25 | #ifndef WX_PRECOMP | |
4444d148 | 26 | #include "wx/settings.h" |
25d7cf54 PC |
27 | #include "wx/dcclient.h" |
28 | #include "wx/dcmemory.h" | |
cd05bf23 BW |
29 | #endif |
30 | ||
4444d148 | 31 | #include "wx/aui/tabmdi.h" |
a0c2e4a0 | 32 | |
a51dc103 | 33 | #ifdef __WXMAC__ |
efdea9c3 | 34 | #include "wx/osx/private.h" |
a51dc103 JS |
35 | #endif |
36 | ||
cd05bf23 BW |
37 | #include "wx/arrimpl.cpp" |
38 | WX_DEFINE_OBJARRAY(wxAuiNotebookPageArray) | |
39 | WX_DEFINE_OBJARRAY(wxAuiTabContainerButtonArray) | |
40 | ||
3c778901 VZ |
41 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, wxAuiNotebookEvent); |
42 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSED, wxAuiNotebookEvent); | |
43 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, wxAuiNotebookEvent); | |
44 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, wxAuiNotebookEvent); | |
45 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_BUTTON, wxAuiNotebookEvent); | |
46 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, wxAuiNotebookEvent); | |
47 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, wxAuiNotebookEvent); | |
2bd82d72 | 48 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_CANCEL_DRAG, wxAuiNotebookEvent); |
3c778901 VZ |
49 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, wxAuiNotebookEvent); |
50 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND, wxAuiNotebookEvent); | |
51 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, wxAuiNotebookEvent); | |
52 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, wxAuiNotebookEvent); | |
53 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, wxAuiNotebookEvent); | |
54 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, wxAuiNotebookEvent); | |
55 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, wxAuiNotebookEvent); | |
56 | wxDEFINE_EVENT(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, wxAuiNotebookEvent); | |
cd05bf23 | 57 | |
0ce53f32 | 58 | IMPLEMENT_CLASS(wxAuiNotebook, wxControl) |
5d3aeb0f | 59 | IMPLEMENT_CLASS(wxAuiTabCtrl, wxControl) |
873ff54b | 60 | IMPLEMENT_DYNAMIC_CLASS(wxAuiNotebookEvent, wxBookCtrlEvent) |
cd05bf23 | 61 | |
cd05bf23 | 62 | |
3f69756e BW |
63 | // -- wxAuiTabContainer class implementation -- |
64 | ||
65 | ||
66 | // wxAuiTabContainer is a class which contains information about each | |
67 | // tab. It also can render an entire tab control to a specified DC. | |
68 | // It's not a window class itself, because this code will be used by | |
69 | // the wxFrameMananger, where it is disadvantageous to have separate | |
70 | // windows for each tab control in the case of "docked tabs" | |
71 | ||
72 | // A derived class, wxAuiTabCtrl, is an actual wxWindow-derived window | |
73 | // which can be used as a tab control in the normal sense. | |
74 | ||
75 | ||
76 | wxAuiTabContainer::wxAuiTabContainer() | |
77 | { | |
9a29fe70 | 78 | m_tabOffset = 0; |
702b1c7e | 79 | m_flags = 0; |
a3a5df9d | 80 | m_art = new wxAuiDefaultTabArt; |
7baac3cb VZ |
81 | |
82 | AddButton(wxAUI_BUTTON_LEFT, wxLEFT); | |
01372b8f BW |
83 | AddButton(wxAUI_BUTTON_RIGHT, wxRIGHT); |
84 | AddButton(wxAUI_BUTTON_WINDOWLIST, wxRIGHT); | |
4953f8cf | 85 | AddButton(wxAUI_BUTTON_CLOSE, wxRIGHT); |
3f69756e BW |
86 | } |
87 | ||
fe498448 BW |
88 | wxAuiTabContainer::~wxAuiTabContainer() |
89 | { | |
3f69756e BW |
90 | delete m_art; |
91 | } | |
92 | ||
a3a5df9d | 93 | void wxAuiTabContainer::SetArtProvider(wxAuiTabArt* art) |
3f69756e BW |
94 | { |
95 | delete m_art; | |
96 | m_art = art; | |
7baac3cb | 97 | |
b0d17f7c BW |
98 | if (m_art) |
99 | { | |
100 | m_art->SetFlags(m_flags); | |
101 | } | |
3f69756e BW |
102 | } |
103 | ||
e0dc13d4 | 104 | wxAuiTabArt* wxAuiTabContainer::GetArtProvider() const |
3f69756e BW |
105 | { |
106 | return m_art; | |
fe498448 BW |
107 | } |
108 | ||
702b1c7e BW |
109 | void wxAuiTabContainer::SetFlags(unsigned int flags) |
110 | { | |
111 | m_flags = flags; | |
7baac3cb | 112 | |
41b76acd | 113 | // check for new close button settings |
7baac3cb | 114 | RemoveButton(wxAUI_BUTTON_LEFT); |
01372b8f BW |
115 | RemoveButton(wxAUI_BUTTON_RIGHT); |
116 | RemoveButton(wxAUI_BUTTON_WINDOWLIST); | |
41b76acd | 117 | RemoveButton(wxAUI_BUTTON_CLOSE); |
7baac3cb VZ |
118 | |
119 | ||
01372b8f BW |
120 | if (flags & wxAUI_NB_SCROLL_BUTTONS) |
121 | { | |
7baac3cb | 122 | AddButton(wxAUI_BUTTON_LEFT, wxLEFT); |
01372b8f BW |
123 | AddButton(wxAUI_BUTTON_RIGHT, wxRIGHT); |
124 | } | |
125 | ||
126 | if (flags & wxAUI_NB_WINDOWLIST_BUTTON) | |
127 | { | |
128 | AddButton(wxAUI_BUTTON_WINDOWLIST, wxRIGHT); | |
129 | } | |
7baac3cb | 130 | |
41b76acd BW |
131 | if (flags & wxAUI_NB_CLOSE_BUTTON) |
132 | { | |
133 | AddButton(wxAUI_BUTTON_CLOSE, wxRIGHT); | |
134 | } | |
7baac3cb | 135 | |
b0d17f7c BW |
136 | if (m_art) |
137 | { | |
138 | m_art->SetFlags(m_flags); | |
139 | } | |
702b1c7e BW |
140 | } |
141 | ||
142 | unsigned int wxAuiTabContainer::GetFlags() const | |
143 | { | |
144 | return m_flags; | |
145 | } | |
146 | ||
147 | ||
cd05bf23 BW |
148 | void wxAuiTabContainer::SetNormalFont(const wxFont& font) |
149 | { | |
3f69756e | 150 | m_art->SetNormalFont(font); |
cd05bf23 BW |
151 | } |
152 | ||
153 | void wxAuiTabContainer::SetSelectedFont(const wxFont& font) | |
154 | { | |
3f69756e | 155 | m_art->SetSelectedFont(font); |
cd05bf23 BW |
156 | } |
157 | ||
158 | void wxAuiTabContainer::SetMeasuringFont(const wxFont& font) | |
159 | { | |
3f69756e | 160 | m_art->SetMeasuringFont(font); |
cd05bf23 BW |
161 | } |
162 | ||
ceb9b8db VZ |
163 | void wxAuiTabContainer::SetColour(const wxColour& colour) |
164 | { | |
165 | m_art->SetColour(colour); | |
166 | } | |
167 | ||
168 | void wxAuiTabContainer::SetActiveColour(const wxColour& colour) | |
169 | { | |
170 | m_art->SetActiveColour(colour); | |
171 | } | |
172 | ||
cd05bf23 BW |
173 | void wxAuiTabContainer::SetRect(const wxRect& rect) |
174 | { | |
175 | m_rect = rect; | |
7baac3cb | 176 | |
b0d17f7c BW |
177 | if (m_art) |
178 | { | |
179 | m_art->SetSizingInfo(rect.GetSize(), m_pages.GetCount()); | |
180 | } | |
cd05bf23 BW |
181 | } |
182 | ||
183 | bool wxAuiTabContainer::AddPage(wxWindow* page, | |
184 | const wxAuiNotebookPage& info) | |
185 | { | |
186 | wxAuiNotebookPage page_info; | |
187 | page_info = info; | |
188 | page_info.window = page; | |
4444d148 | 189 | |
cd05bf23 BW |
190 | m_pages.Add(page_info); |
191 | ||
b0d17f7c BW |
192 | // let the art provider know how many pages we have |
193 | if (m_art) | |
194 | { | |
195 | m_art->SetSizingInfo(m_rect.GetSize(), m_pages.GetCount()); | |
196 | } | |
7baac3cb | 197 | |
cd05bf23 BW |
198 | return true; |
199 | } | |
200 | ||
201 | bool wxAuiTabContainer::InsertPage(wxWindow* page, | |
202 | const wxAuiNotebookPage& info, | |
203 | size_t idx) | |
204 | { | |
205 | wxAuiNotebookPage page_info; | |
206 | page_info = info; | |
207 | page_info.window = page; | |
4444d148 | 208 | |
cd05bf23 BW |
209 | if (idx >= m_pages.GetCount()) |
210 | m_pages.Add(page_info); | |
cedd7b22 | 211 | else |
cd05bf23 BW |
212 | m_pages.Insert(page_info, idx); |
213 | ||
b0d17f7c BW |
214 | // let the art provider know how many pages we have |
215 | if (m_art) | |
216 | { | |
217 | m_art->SetSizingInfo(m_rect.GetSize(), m_pages.GetCount()); | |
218 | } | |
7baac3cb | 219 | |
cd05bf23 BW |
220 | return true; |
221 | } | |
222 | ||
2fadbbfd BW |
223 | bool wxAuiTabContainer::MovePage(wxWindow* page, |
224 | size_t new_idx) | |
225 | { | |
226 | int idx = GetIdxFromWindow(page); | |
227 | if (idx == -1) | |
228 | return false; | |
7baac3cb | 229 | |
2fadbbfd BW |
230 | // get page entry, make a copy of it |
231 | wxAuiNotebookPage p = GetPage(idx); | |
7baac3cb | 232 | |
2fadbbfd BW |
233 | // remove old page entry |
234 | RemovePage(page); | |
7baac3cb | 235 | |
2fadbbfd BW |
236 | // insert page where it should be |
237 | InsertPage(page, p, new_idx); | |
7baac3cb | 238 | |
2fadbbfd BW |
239 | return true; |
240 | } | |
241 | ||
cd05bf23 BW |
242 | bool wxAuiTabContainer::RemovePage(wxWindow* wnd) |
243 | { | |
244 | size_t i, page_count = m_pages.GetCount(); | |
245 | for (i = 0; i < page_count; ++i) | |
246 | { | |
247 | wxAuiNotebookPage& page = m_pages.Item(i); | |
248 | if (page.window == wnd) | |
249 | { | |
250 | m_pages.RemoveAt(i); | |
7baac3cb | 251 | |
b0d17f7c BW |
252 | // let the art provider know how many pages we have |
253 | if (m_art) | |
254 | { | |
255 | m_art->SetSizingInfo(m_rect.GetSize(), m_pages.GetCount()); | |
256 | } | |
7baac3cb | 257 | |
cd05bf23 BW |
258 | return true; |
259 | } | |
260 | } | |
4444d148 | 261 | |
cd05bf23 BW |
262 | return false; |
263 | } | |
264 | ||
265 | bool wxAuiTabContainer::SetActivePage(wxWindow* wnd) | |
266 | { | |
267 | bool found = false; | |
4444d148 | 268 | |
cd05bf23 BW |
269 | size_t i, page_count = m_pages.GetCount(); |
270 | for (i = 0; i < page_count; ++i) | |
271 | { | |
272 | wxAuiNotebookPage& page = m_pages.Item(i); | |
273 | if (page.window == wnd) | |
274 | { | |
275 | page.active = true; | |
276 | found = true; | |
277 | } | |
cedd7b22 | 278 | else |
cd05bf23 BW |
279 | { |
280 | page.active = false; | |
281 | } | |
282 | } | |
4444d148 | 283 | |
cd05bf23 BW |
284 | return found; |
285 | } | |
286 | ||
287 | void wxAuiTabContainer::SetNoneActive() | |
288 | { | |
289 | size_t i, page_count = m_pages.GetCount(); | |
290 | for (i = 0; i < page_count; ++i) | |
291 | { | |
292 | wxAuiNotebookPage& page = m_pages.Item(i); | |
293 | page.active = false; | |
294 | } | |
295 | } | |
296 | ||
297 | bool wxAuiTabContainer::SetActivePage(size_t page) | |
298 | { | |
299 | if (page >= m_pages.GetCount()) | |
300 | return false; | |
4444d148 | 301 | |
cd05bf23 BW |
302 | return SetActivePage(m_pages.Item(page).window); |
303 | } | |
4444d148 | 304 | |
cd05bf23 BW |
305 | int wxAuiTabContainer::GetActivePage() const |
306 | { | |
307 | size_t i, page_count = m_pages.GetCount(); | |
308 | for (i = 0; i < page_count; ++i) | |
309 | { | |
310 | wxAuiNotebookPage& page = m_pages.Item(i); | |
311 | if (page.active) | |
312 | return i; | |
313 | } | |
4444d148 | 314 | |
cd05bf23 BW |
315 | return -1; |
316 | } | |
317 | ||
318 | wxWindow* wxAuiTabContainer::GetWindowFromIdx(size_t idx) const | |
319 | { | |
320 | if (idx >= m_pages.GetCount()) | |
321 | return NULL; | |
4444d148 | 322 | |
cd05bf23 BW |
323 | return m_pages[idx].window; |
324 | } | |
325 | ||
326 | int wxAuiTabContainer::GetIdxFromWindow(wxWindow* wnd) const | |
327 | { | |
849c353a VZ |
328 | const size_t page_count = m_pages.GetCount(); |
329 | for ( size_t i = 0; i < page_count; ++i ) | |
cd05bf23 BW |
330 | { |
331 | wxAuiNotebookPage& page = m_pages.Item(i); | |
332 | if (page.window == wnd) | |
333 | return i; | |
334 | } | |
849c353a | 335 | return wxNOT_FOUND; |
cd05bf23 BW |
336 | } |
337 | ||
338 | wxAuiNotebookPage& wxAuiTabContainer::GetPage(size_t idx) | |
339 | { | |
340 | wxASSERT_MSG(idx < m_pages.GetCount(), wxT("Invalid Page index")); | |
341 | ||
342 | return m_pages[idx]; | |
343 | } | |
344 | ||
c3e016e4 JS |
345 | const wxAuiNotebookPage& wxAuiTabContainer::GetPage(size_t idx) const |
346 | { | |
347 | wxASSERT_MSG(idx < m_pages.GetCount(), wxT("Invalid Page index")); | |
348 | ||
349 | return m_pages[idx]; | |
350 | } | |
351 | ||
cd05bf23 BW |
352 | wxAuiNotebookPageArray& wxAuiTabContainer::GetPages() |
353 | { | |
354 | return m_pages; | |
355 | } | |
356 | ||
357 | size_t wxAuiTabContainer::GetPageCount() const | |
358 | { | |
359 | return m_pages.GetCount(); | |
360 | } | |
361 | ||
4953f8cf BW |
362 | void wxAuiTabContainer::AddButton(int id, |
363 | int location, | |
9a29fe70 VZ |
364 | const wxBitmap& normalBitmap, |
365 | const wxBitmap& disabledBitmap) | |
cd05bf23 BW |
366 | { |
367 | wxAuiTabContainerButton button; | |
368 | button.id = id; | |
9a29fe70 VZ |
369 | button.bitmap = normalBitmap; |
370 | button.disBitmap = disabledBitmap; | |
b6418695 | 371 | button.location = location; |
9a29fe70 | 372 | button.curState = wxAUI_BUTTON_STATE_NORMAL; |
4444d148 | 373 | |
cd05bf23 BW |
374 | m_buttons.Add(button); |
375 | } | |
376 | ||
41b76acd BW |
377 | void wxAuiTabContainer::RemoveButton(int id) |
378 | { | |
379 | size_t i, button_count = m_buttons.GetCount(); | |
380 | ||
381 | for (i = 0; i < button_count; ++i) | |
382 | { | |
383 | if (m_buttons.Item(i).id == id) | |
384 | { | |
385 | m_buttons.RemoveAt(i); | |
386 | return; | |
387 | } | |
388 | } | |
389 | } | |
390 | ||
391 | ||
392 | ||
4953f8cf BW |
393 | size_t wxAuiTabContainer::GetTabOffset() const |
394 | { | |
9a29fe70 | 395 | return m_tabOffset; |
4953f8cf | 396 | } |
cd05bf23 | 397 | |
4953f8cf BW |
398 | void wxAuiTabContainer::SetTabOffset(size_t offset) |
399 | { | |
9a29fe70 | 400 | m_tabOffset = offset; |
4953f8cf | 401 | } |
cd05bf23 | 402 | |
b0d17f7c BW |
403 | |
404 | ||
405 | ||
cd05bf23 BW |
406 | // Render() renders the tab catalog to the specified DC |
407 | // It is a virtual function and can be overridden to | |
408 | // provide custom drawing capabilities | |
01372b8f | 409 | void wxAuiTabContainer::Render(wxDC* raw_dc, wxWindow* wnd) |
4444d148 | 410 | { |
a9eeb510 BW |
411 | if (!raw_dc || !raw_dc->IsOk()) |
412 | return; | |
413 | ||
cd05bf23 | 414 | wxMemoryDC dc; |
ef329166 VZ |
415 | |
416 | // use the same layout direction as the window DC uses to ensure that the | |
417 | // text is rendered correctly | |
418 | dc.SetLayoutDirection(raw_dc->GetLayoutDirection()); | |
419 | ||
cd05bf23 | 420 | wxBitmap bmp; |
4953f8cf BW |
421 | size_t i; |
422 | size_t page_count = m_pages.GetCount(); | |
423 | size_t button_count = m_buttons.GetCount(); | |
424 | ||
425 | // create off-screen bitmap | |
cd05bf23 BW |
426 | bmp.Create(m_rect.GetWidth(), m_rect.GetHeight()); |
427 | dc.SelectObject(bmp); | |
4444d148 | 428 | |
a9eeb510 BW |
429 | if (!dc.IsOk()) |
430 | return; | |
4953f8cf BW |
431 | |
432 | // find out if size of tabs is larger than can be | |
433 | // afforded on screen | |
434 | int total_width = 0; | |
25d7497c | 435 | int visible_width = 0; |
4953f8cf BW |
436 | for (i = 0; i < page_count; ++i) |
437 | { | |
438 | wxAuiNotebookPage& page = m_pages.Item(i); | |
7baac3cb | 439 | |
702b1c7e BW |
440 | // determine if a close button is on this tab |
441 | bool close_button = false; | |
442 | if ((m_flags & wxAUI_NB_CLOSE_ON_ALL_TABS) != 0 || | |
443 | ((m_flags & wxAUI_NB_CLOSE_ON_ACTIVE_TAB) != 0 && page.active)) | |
444 | { | |
445 | close_button = true; | |
446 | } | |
7baac3cb VZ |
447 | |
448 | ||
4953f8cf | 449 | int x_extent = 0; |
a6b0e5bd | 450 | wxSize size = m_art->GetTabSize(dc, |
01372b8f | 451 | wnd, |
41b76acd | 452 | page.caption, |
2b9aac33 | 453 | page.bitmap, |
41b76acd BW |
454 | page.active, |
455 | close_button ? | |
456 | wxAUI_BUTTON_STATE_NORMAL : | |
457 | wxAUI_BUTTON_STATE_HIDDEN, | |
458 | &x_extent); | |
7baac3cb | 459 | |
4953f8cf BW |
460 | if (i+1 < page_count) |
461 | total_width += x_extent; | |
cedd7b22 | 462 | else |
4953f8cf | 463 | total_width += size.x; |
7baac3cb | 464 | |
9a29fe70 | 465 | if (i >= m_tabOffset) |
25d7497c BW |
466 | { |
467 | if (i+1 < page_count) | |
468 | visible_width += x_extent; | |
cedd7b22 | 469 | else |
25d7497c BW |
470 | visible_width += size.x; |
471 | } | |
4953f8cf | 472 | } |
7baac3cb | 473 | |
9a29fe70 | 474 | if (total_width > m_rect.GetWidth() || m_tabOffset != 0) |
4953f8cf BW |
475 | { |
476 | // show left/right buttons | |
477 | for (i = 0; i < button_count; ++i) | |
478 | { | |
479 | wxAuiTabContainerButton& button = m_buttons.Item(i); | |
480 | if (button.id == wxAUI_BUTTON_LEFT || | |
481 | button.id == wxAUI_BUTTON_RIGHT) | |
482 | { | |
9a29fe70 | 483 | button.curState &= ~wxAUI_BUTTON_STATE_HIDDEN; |
4953f8cf BW |
484 | } |
485 | } | |
486 | } | |
cedd7b22 | 487 | else |
4953f8cf BW |
488 | { |
489 | // hide left/right buttons | |
490 | for (i = 0; i < button_count; ++i) | |
491 | { | |
492 | wxAuiTabContainerButton& button = m_buttons.Item(i); | |
493 | if (button.id == wxAUI_BUTTON_LEFT || | |
494 | button.id == wxAUI_BUTTON_RIGHT) | |
495 | { | |
9a29fe70 | 496 | button.curState |= wxAUI_BUTTON_STATE_HIDDEN; |
4953f8cf BW |
497 | } |
498 | } | |
499 | } | |
500 | ||
25d7497c BW |
501 | // determine whether left button should be enabled |
502 | for (i = 0; i < button_count; ++i) | |
503 | { | |
504 | wxAuiTabContainerButton& button = m_buttons.Item(i); | |
505 | if (button.id == wxAUI_BUTTON_LEFT) | |
506 | { | |
9a29fe70 VZ |
507 | if (m_tabOffset == 0) |
508 | button.curState |= wxAUI_BUTTON_STATE_DISABLED; | |
cedd7b22 | 509 | else |
9a29fe70 | 510 | button.curState &= ~wxAUI_BUTTON_STATE_DISABLED; |
25d7497c BW |
511 | } |
512 | if (button.id == wxAUI_BUTTON_RIGHT) | |
513 | { | |
514 | if (visible_width < m_rect.GetWidth() - ((int)button_count*16)) | |
9a29fe70 | 515 | button.curState |= wxAUI_BUTTON_STATE_DISABLED; |
cedd7b22 | 516 | else |
9a29fe70 | 517 | button.curState &= ~wxAUI_BUTTON_STATE_DISABLED; |
25d7497c BW |
518 | } |
519 | } | |
520 | ||
4953f8cf BW |
521 | |
522 | ||
523 | // draw background | |
a6b0e5bd | 524 | m_art->DrawBackground(dc, wnd, m_rect); |
4444d148 | 525 | |
4953f8cf BW |
526 | // draw buttons |
527 | int left_buttons_width = 0; | |
528 | int right_buttons_width = 0; | |
7baac3cb | 529 | |
cd05bf23 | 530 | int offset = 0; |
b6418695 BW |
531 | |
532 | // draw the buttons on the right side | |
533 | offset = m_rect.x + m_rect.width; | |
b6418695 BW |
534 | for (i = 0; i < button_count; ++i) |
535 | { | |
536 | wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); | |
7baac3cb | 537 | |
b6418695 BW |
538 | if (button.location != wxRIGHT) |
539 | continue; | |
9a29fe70 | 540 | if (button.curState & wxAUI_BUTTON_STATE_HIDDEN) |
4953f8cf | 541 | continue; |
7baac3cb | 542 | |
4953f8cf BW |
543 | wxRect button_rect = m_rect; |
544 | button_rect.SetY(1); | |
545 | button_rect.SetWidth(offset); | |
546 | ||
a6b0e5bd | 547 | m_art->DrawButton(dc, |
01372b8f | 548 | wnd, |
4953f8cf BW |
549 | button_rect, |
550 | button.id, | |
9a29fe70 | 551 | button.curState, |
4953f8cf | 552 | wxRIGHT, |
4953f8cf BW |
553 | &button.rect); |
554 | ||
555 | offset -= button.rect.GetWidth(); | |
556 | right_buttons_width += button.rect.GetWidth(); | |
b6418695 BW |
557 | } |
558 | ||
559 | ||
560 | ||
561 | offset = 0; | |
7baac3cb | 562 | |
b6418695 BW |
563 | // draw the buttons on the left side |
564 | ||
565 | for (i = 0; i < button_count; ++i) | |
566 | { | |
567 | wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); | |
7baac3cb | 568 | |
b6418695 BW |
569 | if (button.location != wxLEFT) |
570 | continue; | |
9a29fe70 | 571 | if (button.curState & wxAUI_BUTTON_STATE_HIDDEN) |
4953f8cf | 572 | continue; |
7baac3cb | 573 | |
4953f8cf BW |
574 | wxRect button_rect(offset, 1, 1000, m_rect.height); |
575 | ||
a6b0e5bd | 576 | m_art->DrawButton(dc, |
01372b8f | 577 | wnd, |
4953f8cf BW |
578 | button_rect, |
579 | button.id, | |
9a29fe70 | 580 | button.curState, |
4953f8cf | 581 | wxLEFT, |
4953f8cf | 582 | &button.rect); |
7baac3cb | 583 | |
4953f8cf BW |
584 | offset += button.rect.GetWidth(); |
585 | left_buttons_width += button.rect.GetWidth(); | |
b6418695 BW |
586 | } |
587 | ||
4953f8cf | 588 | offset = left_buttons_width; |
7baac3cb | 589 | |
b0d17f7c | 590 | if (offset == 0) |
7baac3cb VZ |
591 | offset += m_art->GetIndentSize(); |
592 | ||
593 | ||
41b76acd | 594 | // prepare the tab-close-button array |
049333c2 | 595 | // make sure tab button entries which aren't used are marked as hidden |
9a29fe70 VZ |
596 | for (i = page_count; i < m_tabCloseButtons.GetCount(); ++i) |
597 | m_tabCloseButtons.Item(i).curState = wxAUI_BUTTON_STATE_HIDDEN; | |
7baac3cb | 598 | |
049333c2 | 599 | // make sure there are enough tab button entries to accommodate all tabs |
9a29fe70 | 600 | while (m_tabCloseButtons.GetCount() < page_count) |
41b76acd BW |
601 | { |
602 | wxAuiTabContainerButton tempbtn; | |
603 | tempbtn.id = wxAUI_BUTTON_CLOSE; | |
604 | tempbtn.location = wxCENTER; | |
9a29fe70 VZ |
605 | tempbtn.curState = wxAUI_BUTTON_STATE_HIDDEN; |
606 | m_tabCloseButtons.Add(tempbtn); | |
41b76acd | 607 | } |
7baac3cb VZ |
608 | |
609 | ||
4abf84fb | 610 | // buttons before the tab offset must be set to hidden |
9a29fe70 | 611 | for (i = 0; i < m_tabOffset; ++i) |
41b76acd | 612 | { |
9a29fe70 | 613 | m_tabCloseButtons.Item(i).curState = wxAUI_BUTTON_STATE_HIDDEN; |
41b76acd | 614 | } |
7baac3cb VZ |
615 | |
616 | ||
b6418695 | 617 | // draw the tabs |
cd05bf23 BW |
618 | |
619 | size_t active = 999; | |
620 | int active_offset = 0; | |
b0d17f7c | 621 | wxRect active_rect; |
4444d148 | 622 | |
cd05bf23 BW |
623 | int x_extent = 0; |
624 | wxRect rect = m_rect; | |
625 | rect.y = 0; | |
cd05bf23 | 626 | rect.height = m_rect.height; |
4444d148 | 627 | |
9a29fe70 | 628 | for (i = m_tabOffset; i < page_count; ++i) |
cd05bf23 BW |
629 | { |
630 | wxAuiNotebookPage& page = m_pages.Item(i); | |
9a29fe70 | 631 | wxAuiTabContainerButton& tab_button = m_tabCloseButtons.Item(i); |
4444d148 | 632 | |
702b1c7e | 633 | // determine if a close button is on this tab |
702b1c7e BW |
634 | if ((m_flags & wxAUI_NB_CLOSE_ON_ALL_TABS) != 0 || |
635 | ((m_flags & wxAUI_NB_CLOSE_ON_ACTIVE_TAB) != 0 && page.active)) | |
636 | { | |
9a29fe70 | 637 | if (tab_button.curState == wxAUI_BUTTON_STATE_HIDDEN) |
41b76acd BW |
638 | { |
639 | tab_button.id = wxAUI_BUTTON_CLOSE; | |
9a29fe70 | 640 | tab_button.curState = wxAUI_BUTTON_STATE_NORMAL; |
41b76acd BW |
641 | tab_button.location = wxCENTER; |
642 | } | |
643 | } | |
cedd7b22 | 644 | else |
41b76acd | 645 | { |
9a29fe70 | 646 | tab_button.curState = wxAUI_BUTTON_STATE_HIDDEN; |
702b1c7e BW |
647 | } |
648 | ||
cd05bf23 | 649 | rect.x = offset; |
b0d17f7c BW |
650 | rect.width = m_rect.width - right_buttons_width - offset - 2; |
651 | ||
47b6bebb BW |
652 | if (rect.width <= 0) |
653 | break; | |
654 | ||
a6b0e5bd | 655 | m_art->DrawTab(dc, |
01372b8f | 656 | wnd, |
793d4365 | 657 | page, |
01372b8f | 658 | rect, |
9a29fe70 | 659 | tab_button.curState, |
01372b8f BW |
660 | &page.rect, |
661 | &tab_button.rect, | |
662 | &x_extent); | |
4444d148 | 663 | |
cd05bf23 BW |
664 | if (page.active) |
665 | { | |
666 | active = i; | |
667 | active_offset = offset; | |
b0d17f7c | 668 | active_rect = rect; |
cd05bf23 | 669 | } |
7baac3cb | 670 | |
cd05bf23 BW |
671 | offset += x_extent; |
672 | } | |
4444d148 | 673 | |
4abf84fb BW |
674 | |
675 | // make sure to deactivate buttons which are off the screen to the right | |
9a29fe70 | 676 | for (++i; i < m_tabCloseButtons.GetCount(); ++i) |
4abf84fb | 677 | { |
9a29fe70 | 678 | m_tabCloseButtons.Item(i).curState = wxAUI_BUTTON_STATE_HIDDEN; |
4abf84fb BW |
679 | } |
680 | ||
681 | ||
cd05bf23 | 682 | // draw the active tab again so it stands in the foreground |
9a29fe70 | 683 | if (active >= m_tabOffset && active < m_pages.GetCount()) |
cd05bf23 BW |
684 | { |
685 | wxAuiNotebookPage& page = m_pages.Item(active); | |
686 | ||
9a29fe70 | 687 | wxAuiTabContainerButton& tab_button = m_tabCloseButtons.Item(active); |
41b76acd | 688 | |
cd05bf23 | 689 | rect.x = active_offset; |
a6b0e5bd | 690 | m_art->DrawTab(dc, |
01372b8f | 691 | wnd, |
793d4365 | 692 | page, |
b0d17f7c | 693 | active_rect, |
9a29fe70 | 694 | tab_button.curState, |
01372b8f BW |
695 | &page.rect, |
696 | &tab_button.rect, | |
697 | &x_extent); | |
cd05bf23 | 698 | } |
4444d148 | 699 | |
7baac3cb | 700 | |
4953f8cf BW |
701 | raw_dc->Blit(m_rect.x, m_rect.y, |
702 | m_rect.GetWidth(), m_rect.GetHeight(), | |
703 | &dc, 0, 0); | |
cd05bf23 BW |
704 | } |
705 | ||
a0c2e4a0 | 706 | // Is the tab visible? |
0b3b8742 | 707 | bool wxAuiTabContainer::IsTabVisible(int tabPage, int tabOffset, wxDC* dc, wxWindow* wnd) |
a0c2e4a0 JS |
708 | { |
709 | if (!dc || !dc->IsOk()) | |
710 | return false; | |
711 | ||
712 | size_t i; | |
713 | size_t page_count = m_pages.GetCount(); | |
714 | size_t button_count = m_buttons.GetCount(); | |
715 | ||
716 | // Hasn't been rendered yet; assume it's visible | |
9a29fe70 | 717 | if (m_tabCloseButtons.GetCount() < page_count) |
a0c2e4a0 JS |
718 | return true; |
719 | ||
720 | // First check if both buttons are disabled - if so, there's no need to | |
721 | // check further for visibility. | |
722 | int arrowButtonVisibleCount = 0; | |
723 | for (i = 0; i < button_count; ++i) | |
724 | { | |
725 | wxAuiTabContainerButton& button = m_buttons.Item(i); | |
726 | if (button.id == wxAUI_BUTTON_LEFT || | |
727 | button.id == wxAUI_BUTTON_RIGHT) | |
728 | { | |
9a29fe70 | 729 | if ((button.curState & wxAUI_BUTTON_STATE_HIDDEN) == 0) |
a0c2e4a0 JS |
730 | arrowButtonVisibleCount ++; |
731 | } | |
732 | } | |
733 | ||
734 | // Tab must be visible | |
735 | if (arrowButtonVisibleCount == 0) | |
736 | return true; | |
737 | ||
738 | // If tab is less than the given offset, it must be invisible by definition | |
739 | if (tabPage < tabOffset) | |
740 | return false; | |
741 | ||
742 | // draw buttons | |
743 | int left_buttons_width = 0; | |
744 | int right_buttons_width = 0; | |
745 | ||
746 | int offset = 0; | |
747 | ||
748 | // calculate size of the buttons on the right side | |
749 | offset = m_rect.x + m_rect.width; | |
750 | for (i = 0; i < button_count; ++i) | |
751 | { | |
752 | wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); | |
753 | ||
754 | if (button.location != wxRIGHT) | |
755 | continue; | |
9a29fe70 | 756 | if (button.curState & wxAUI_BUTTON_STATE_HIDDEN) |
a0c2e4a0 JS |
757 | continue; |
758 | ||
759 | offset -= button.rect.GetWidth(); | |
760 | right_buttons_width += button.rect.GetWidth(); | |
761 | } | |
762 | ||
763 | offset = 0; | |
764 | ||
765 | // calculate size of the buttons on the left side | |
766 | for (i = 0; i < button_count; ++i) | |
767 | { | |
768 | wxAuiTabContainerButton& button = m_buttons.Item(button_count - i - 1); | |
769 | ||
770 | if (button.location != wxLEFT) | |
771 | continue; | |
9a29fe70 | 772 | if (button.curState & wxAUI_BUTTON_STATE_HIDDEN) |
a0c2e4a0 JS |
773 | continue; |
774 | ||
775 | offset += button.rect.GetWidth(); | |
776 | left_buttons_width += button.rect.GetWidth(); | |
777 | } | |
778 | ||
779 | offset = left_buttons_width; | |
780 | ||
781 | if (offset == 0) | |
782 | offset += m_art->GetIndentSize(); | |
783 | ||
784 | wxRect active_rect; | |
785 | ||
786 | wxRect rect = m_rect; | |
787 | rect.y = 0; | |
788 | rect.height = m_rect.height; | |
789 | ||
790 | // See if the given page is visible at the given tab offset (effectively scroll position) | |
791 | for (i = tabOffset; i < page_count; ++i) | |
792 | { | |
0b3b8742 PC |
793 | wxAuiNotebookPage& page = m_pages.Item(i); |
794 | wxAuiTabContainerButton& tab_button = m_tabCloseButtons.Item(i); | |
795 | ||
a0c2e4a0 JS |
796 | rect.x = offset; |
797 | rect.width = m_rect.width - right_buttons_width - offset - 2; | |
798 | ||
799 | if (rect.width <= 0) | |
800 | return false; // haven't found the tab, and we've run out of space, so return false | |
801 | ||
802 | int x_extent = 0; | |
0b3b8742 PC |
803 | m_art->GetTabSize(*dc, |
804 | wnd, | |
805 | page.caption, | |
806 | page.bitmap, | |
807 | page.active, | |
808 | tab_button.curState, | |
809 | &x_extent); | |
810 | ||
a0c2e4a0 JS |
811 | offset += x_extent; |
812 | ||
813 | if (i == (size_t) tabPage) | |
814 | { | |
815 | // If not all of the tab is visible, and supposing there's space to display it all, | |
816 | // we could do better so we return false. | |
817 | if (((m_rect.width - right_buttons_width - offset - 2) <= 0) && ((m_rect.width - right_buttons_width - left_buttons_width) > x_extent)) | |
818 | return false; | |
819 | else | |
820 | return true; | |
821 | } | |
822 | } | |
823 | ||
824 | // Shouldn't really get here, but if it does, assume the tab is visible to prevent | |
825 | // further looping in calling code. | |
826 | return true; | |
827 | } | |
828 | ||
829 | // Make the tab visible if it wasn't already | |
830 | void wxAuiTabContainer::MakeTabVisible(int tabPage, wxWindow* win) | |
831 | { | |
832 | wxClientDC dc(win); | |
833 | if (!IsTabVisible(tabPage, GetTabOffset(), & dc, win)) | |
834 | { | |
835 | int i; | |
836 | for (i = 0; i < (int) m_pages.GetCount(); i++) | |
837 | { | |
838 | if (IsTabVisible(tabPage, i, & dc, win)) | |
839 | { | |
840 | SetTabOffset(i); | |
841 | win->Refresh(); | |
842 | return; | |
843 | } | |
844 | } | |
845 | } | |
846 | } | |
cd05bf23 BW |
847 | |
848 | // TabHitTest() tests if a tab was hit, passing the window pointer | |
849 | // back if that condition was fulfilled. The function returns | |
850 | // true if a tab was hit, otherwise false | |
851 | bool wxAuiTabContainer::TabHitTest(int x, int y, wxWindow** hit) const | |
852 | { | |
22a35096 | 853 | if (!m_rect.Contains(x,y)) |
cd05bf23 | 854 | return false; |
7baac3cb | 855 | |
41b76acd | 856 | wxAuiTabContainerButton* btn = NULL; |
9a29fe70 | 857 | if (ButtonHitTest(x, y, &btn) && !(btn->curState & wxAUI_BUTTON_STATE_DISABLED)) |
41b76acd BW |
858 | { |
859 | if (m_buttons.Index(*btn) != wxNOT_FOUND) | |
860 | return false; | |
861 | } | |
4444d148 | 862 | |
cd05bf23 | 863 | size_t i, page_count = m_pages.GetCount(); |
4444d148 | 864 | |
9a29fe70 | 865 | for (i = m_tabOffset; i < page_count; ++i) |
cd05bf23 BW |
866 | { |
867 | wxAuiNotebookPage& page = m_pages.Item(i); | |
22a35096 | 868 | if (page.rect.Contains(x,y)) |
cd05bf23 | 869 | { |
4953f8cf BW |
870 | if (hit) |
871 | *hit = page.window; | |
cd05bf23 BW |
872 | return true; |
873 | } | |
874 | } | |
4444d148 | 875 | |
cd05bf23 BW |
876 | return false; |
877 | } | |
878 | ||
879 | // ButtonHitTest() tests if a button was hit. The function returns | |
880 | // true if a button was hit, otherwise false | |
881 | bool wxAuiTabContainer::ButtonHitTest(int x, int y, | |
882 | wxAuiTabContainerButton** hit) const | |
883 | { | |
22a35096 | 884 | if (!m_rect.Contains(x,y)) |
cd05bf23 | 885 | return false; |
4444d148 | 886 | |
41b76acd | 887 | size_t i, button_count; |
7baac3cb VZ |
888 | |
889 | ||
41b76acd | 890 | button_count = m_buttons.GetCount(); |
cd05bf23 BW |
891 | for (i = 0; i < button_count; ++i) |
892 | { | |
893 | wxAuiTabContainerButton& button = m_buttons.Item(i); | |
9b405ab3 | 894 | if (button.rect.Contains(x,y) && |
9a29fe70 | 895 | !(button.curState & wxAUI_BUTTON_STATE_HIDDEN )) |
cd05bf23 | 896 | { |
4953f8cf BW |
897 | if (hit) |
898 | *hit = &button; | |
cd05bf23 BW |
899 | return true; |
900 | } | |
901 | } | |
7baac3cb | 902 | |
9a29fe70 | 903 | button_count = m_tabCloseButtons.GetCount(); |
41b76acd BW |
904 | for (i = 0; i < button_count; ++i) |
905 | { | |
9a29fe70 | 906 | wxAuiTabContainerButton& button = m_tabCloseButtons.Item(i); |
9b405ab3 | 907 | if (button.rect.Contains(x,y) && |
9a29fe70 | 908 | !(button.curState & (wxAUI_BUTTON_STATE_HIDDEN | |
9b405ab3 | 909 | wxAUI_BUTTON_STATE_DISABLED))) |
41b76acd BW |
910 | { |
911 | if (hit) | |
912 | *hit = &button; | |
913 | return true; | |
914 | } | |
915 | } | |
7baac3cb | 916 | |
cd05bf23 BW |
917 | return false; |
918 | } | |
919 | ||
920 | ||
921 | ||
922 | // the utility function ShowWnd() is the same as show, | |
a3a5df9d | 923 | // except it handles wxAuiMDIChildFrame windows as well, |
cd05bf23 BW |
924 | // as the Show() method on this class is "unplugged" |
925 | static void ShowWnd(wxWindow* wnd, bool show) | |
926 | { | |
89272c55 | 927 | #if wxUSE_MDI |
a3a5df9d | 928 | if (wnd->IsKindOf(CLASSINFO(wxAuiMDIChildFrame))) |
cd05bf23 | 929 | { |
a3a5df9d | 930 | wxAuiMDIChildFrame* cf = (wxAuiMDIChildFrame*)wnd; |
cd05bf23 BW |
931 | cf->DoShow(show); |
932 | } | |
cedd7b22 | 933 | else |
89272c55 | 934 | #endif |
cd05bf23 BW |
935 | { |
936 | wnd->Show(show); | |
937 | } | |
938 | } | |
939 | ||
940 | ||
941 | // DoShowHide() this function shows the active window, then | |
942 | // hides all of the other windows (in that order) | |
943 | void wxAuiTabContainer::DoShowHide() | |
944 | { | |
945 | wxAuiNotebookPageArray& pages = GetPages(); | |
946 | size_t i, page_count = pages.GetCount(); | |
947 | ||
948 | // show new active page first | |
949 | for (i = 0; i < page_count; ++i) | |
950 | { | |
951 | wxAuiNotebookPage& page = pages.Item(i); | |
952 | if (page.active) | |
953 | { | |
954 | ShowWnd(page.window, true); | |
955 | break; | |
956 | } | |
957 | } | |
958 | ||
959 | // hide all other pages | |
960 | for (i = 0; i < page_count; ++i) | |
961 | { | |
962 | wxAuiNotebookPage& page = pages.Item(i); | |
badcaaaf BW |
963 | if (!page.active) |
964 | ShowWnd(page.window, false); | |
cd05bf23 BW |
965 | } |
966 | } | |
967 | ||
968 | ||
969 | ||
970 | ||
971 | ||
972 | ||
973 | // -- wxAuiTabCtrl class implementation -- | |
974 | ||
975 | ||
cd05bf23 BW |
976 | |
977 | BEGIN_EVENT_TABLE(wxAuiTabCtrl, wxControl) | |
978 | EVT_PAINT(wxAuiTabCtrl::OnPaint) | |
979 | EVT_ERASE_BACKGROUND(wxAuiTabCtrl::OnEraseBackground) | |
980 | EVT_SIZE(wxAuiTabCtrl::OnSize) | |
981 | EVT_LEFT_DOWN(wxAuiTabCtrl::OnLeftDown) | |
198be845 | 982 | EVT_LEFT_DCLICK(wxAuiTabCtrl::OnLeftDClick) |
cd05bf23 | 983 | EVT_LEFT_UP(wxAuiTabCtrl::OnLeftUp) |
69f5e420 BW |
984 | EVT_MIDDLE_DOWN(wxAuiTabCtrl::OnMiddleDown) |
985 | EVT_MIDDLE_UP(wxAuiTabCtrl::OnMiddleUp) | |
986 | EVT_RIGHT_DOWN(wxAuiTabCtrl::OnRightDown) | |
987 | EVT_RIGHT_UP(wxAuiTabCtrl::OnRightUp) | |
cd05bf23 BW |
988 | EVT_MOTION(wxAuiTabCtrl::OnMotion) |
989 | EVT_LEAVE_WINDOW(wxAuiTabCtrl::OnLeaveWindow) | |
c58ba15f | 990 | EVT_AUINOTEBOOK_BUTTON(wxID_ANY, wxAuiTabCtrl::OnButton) |
a0c2e4a0 JS |
991 | EVT_SET_FOCUS(wxAuiTabCtrl::OnSetFocus) |
992 | EVT_KILL_FOCUS(wxAuiTabCtrl::OnKillFocus) | |
993 | EVT_CHAR(wxAuiTabCtrl::OnChar) | |
45ca0e77 | 994 | EVT_MOUSE_CAPTURE_LOST(wxAuiTabCtrl::OnCaptureLost) |
cd05bf23 BW |
995 | END_EVENT_TABLE() |
996 | ||
997 | ||
998 | wxAuiTabCtrl::wxAuiTabCtrl(wxWindow* parent, | |
999 | wxWindowID id, | |
1000 | const wxPoint& pos, | |
1001 | const wxSize& size, | |
4444d148 | 1002 | long style) : wxControl(parent, id, pos, size, style) |
cd05bf23 | 1003 | { |
c7bfb76a | 1004 | SetName(wxT("wxAuiTabCtrl")); |
9a29fe70 VZ |
1005 | m_clickPt = wxDefaultPosition; |
1006 | m_isDragging = false; | |
1007 | m_hoverButton = NULL; | |
1008 | m_pressedButton = NULL; | |
cd05bf23 BW |
1009 | } |
1010 | ||
26da5e4f BW |
1011 | wxAuiTabCtrl::~wxAuiTabCtrl() |
1012 | { | |
1013 | } | |
cd05bf23 BW |
1014 | |
1015 | void wxAuiTabCtrl::OnPaint(wxPaintEvent&) | |
1016 | { | |
1017 | wxPaintDC dc(this); | |
4444d148 | 1018 | |
cd05bf23 | 1019 | dc.SetFont(GetFont()); |
4444d148 | 1020 | |
cd05bf23 | 1021 | if (GetPageCount() > 0) |
01372b8f | 1022 | Render(&dc, this); |
cd05bf23 BW |
1023 | } |
1024 | ||
1025 | void wxAuiTabCtrl::OnEraseBackground(wxEraseEvent& WXUNUSED(evt)) | |
1026 | { | |
1027 | } | |
1028 | ||
1029 | void wxAuiTabCtrl::OnSize(wxSizeEvent& evt) | |
1030 | { | |
1031 | wxSize s = evt.GetSize(); | |
1032 | wxRect r(0, 0, s.GetWidth(), s.GetHeight()); | |
1033 | SetRect(r); | |
1034 | } | |
1035 | ||
1036 | void wxAuiTabCtrl::OnLeftDown(wxMouseEvent& evt) | |
1037 | { | |
1038 | CaptureMouse(); | |
9a29fe70 VZ |
1039 | m_clickPt = wxDefaultPosition; |
1040 | m_isDragging = false; | |
1041 | m_clickTab = NULL; | |
1042 | m_pressedButton = NULL; | |
4444d148 | 1043 | |
760d3542 | 1044 | |
cd05bf23 BW |
1045 | wxWindow* wnd; |
1046 | if (TabHitTest(evt.m_x, evt.m_y, &wnd)) | |
9b405ab3 | 1047 | { |
049333c2 | 1048 | int new_selection = GetIdxFromWindow(wnd); |
7baac3cb | 1049 | |
68fd4f2c BW |
1050 | // wxAuiNotebooks always want to receive this event |
1051 | // even if the tab is already active, because they may | |
1052 | // have multiple tab controls | |
1053 | if (new_selection != GetActivePage() || | |
1054 | GetParent()->IsKindOf(CLASSINFO(wxAuiNotebook))) | |
049333c2 BW |
1055 | { |
1056 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, m_windowId); | |
1057 | e.SetSelection(new_selection); | |
1058 | e.SetOldSelection(GetActivePage()); | |
1059 | e.SetEventObject(this); | |
1060 | GetEventHandler()->ProcessEvent(e); | |
1061 | } | |
4444d148 | 1062 | |
9a29fe70 VZ |
1063 | m_clickPt.x = evt.m_x; |
1064 | m_clickPt.y = evt.m_y; | |
1065 | m_clickTab = wnd; | |
cd05bf23 | 1066 | } |
7baac3cb | 1067 | |
9a29fe70 | 1068 | if (m_hoverButton) |
cd05bf23 | 1069 | { |
9a29fe70 VZ |
1070 | m_pressedButton = m_hoverButton; |
1071 | m_pressedButton->curState = wxAUI_BUTTON_STATE_PRESSED; | |
cd05bf23 BW |
1072 | Refresh(); |
1073 | Update(); | |
1074 | } | |
1075 | } | |
1076 | ||
45ca0e77 BW |
1077 | void wxAuiTabCtrl::OnCaptureLost(wxMouseCaptureLostEvent& WXUNUSED(event)) |
1078 | { | |
9a29fe70 | 1079 | if (m_isDragging) |
2bd82d72 | 1080 | { |
9a29fe70 | 1081 | m_isDragging = false; |
2bd82d72 VZ |
1082 | |
1083 | wxAuiNotebookEvent evt(wxEVT_COMMAND_AUINOTEBOOK_CANCEL_DRAG, m_windowId); | |
9a29fe70 | 1084 | evt.SetSelection(GetIdxFromWindow(m_clickTab)); |
2bd82d72 VZ |
1085 | evt.SetOldSelection(evt.GetSelection()); |
1086 | evt.SetEventObject(this); | |
1087 | GetEventHandler()->ProcessEvent(evt); | |
1088 | } | |
45ca0e77 BW |
1089 | } |
1090 | ||
9b3f654a | 1091 | void wxAuiTabCtrl::OnLeftUp(wxMouseEvent& evt) |
cd05bf23 BW |
1092 | { |
1093 | if (GetCapture() == this) | |
1094 | ReleaseMouse(); | |
4444d148 | 1095 | |
9a29fe70 | 1096 | if (m_isDragging) |
cd05bf23 | 1097 | { |
9a29fe70 | 1098 | m_isDragging = false; |
cedd7b22 | 1099 | |
cd05bf23 | 1100 | wxAuiNotebookEvent evt(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, m_windowId); |
9a29fe70 | 1101 | evt.SetSelection(GetIdxFromWindow(m_clickTab)); |
08c068a4 | 1102 | evt.SetOldSelection(evt.GetSelection()); |
cd05bf23 BW |
1103 | evt.SetEventObject(this); |
1104 | GetEventHandler()->ProcessEvent(evt); | |
cedd7b22 | 1105 | |
cd05bf23 BW |
1106 | return; |
1107 | } | |
4444d148 | 1108 | |
9a29fe70 | 1109 | if (m_pressedButton) |
cd05bf23 | 1110 | { |
9b3f654a BW |
1111 | // make sure we're still clicking the button |
1112 | wxAuiTabContainerButton* button = NULL; | |
65052c6f | 1113 | if (!ButtonHitTest(evt.m_x, evt.m_y, &button) || |
9a29fe70 | 1114 | button->curState & wxAUI_BUTTON_STATE_DISABLED) |
9b3f654a | 1115 | return; |
7baac3cb | 1116 | |
9a29fe70 | 1117 | if (button != m_pressedButton) |
9b3f654a | 1118 | { |
9a29fe70 | 1119 | m_pressedButton = NULL; |
9b3f654a BW |
1120 | return; |
1121 | } | |
1122 | ||
cd05bf23 BW |
1123 | Refresh(); |
1124 | Update(); | |
4444d148 | 1125 | |
9a29fe70 | 1126 | if (!(m_pressedButton->curState & wxAUI_BUTTON_STATE_DISABLED)) |
25d7497c BW |
1127 | { |
1128 | wxAuiNotebookEvent evt(wxEVT_COMMAND_AUINOTEBOOK_BUTTON, m_windowId); | |
9a29fe70 VZ |
1129 | evt.SetSelection(GetIdxFromWindow(m_clickTab)); |
1130 | evt.SetInt(m_pressedButton->id); | |
25d7497c BW |
1131 | evt.SetEventObject(this); |
1132 | GetEventHandler()->ProcessEvent(evt); | |
1133 | } | |
7baac3cb | 1134 | |
9a29fe70 | 1135 | m_pressedButton = NULL; |
cd05bf23 | 1136 | } |
4444d148 | 1137 | |
9a29fe70 VZ |
1138 | m_clickPt = wxDefaultPosition; |
1139 | m_isDragging = false; | |
1140 | m_clickTab = NULL; | |
cd05bf23 BW |
1141 | } |
1142 | ||
69f5e420 BW |
1143 | void wxAuiTabCtrl::OnMiddleUp(wxMouseEvent& evt) |
1144 | { | |
1145 | wxWindow* wnd = NULL; | |
1146 | if (!TabHitTest(evt.m_x, evt.m_y, &wnd)) | |
1147 | return; | |
1148 | ||
1149 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, m_windowId); | |
1150 | e.SetEventObject(this); | |
1151 | e.SetSelection(GetIdxFromWindow(wnd)); | |
1152 | GetEventHandler()->ProcessEvent(e); | |
1153 | } | |
1154 | ||
1155 | void wxAuiTabCtrl::OnMiddleDown(wxMouseEvent& evt) | |
1156 | { | |
1157 | wxWindow* wnd = NULL; | |
1158 | if (!TabHitTest(evt.m_x, evt.m_y, &wnd)) | |
1159 | return; | |
1160 | ||
1161 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, m_windowId); | |
1162 | e.SetEventObject(this); | |
1163 | e.SetSelection(GetIdxFromWindow(wnd)); | |
1164 | GetEventHandler()->ProcessEvent(e); | |
1165 | } | |
1166 | ||
1167 | void wxAuiTabCtrl::OnRightUp(wxMouseEvent& evt) | |
1168 | { | |
1169 | wxWindow* wnd = NULL; | |
1170 | if (!TabHitTest(evt.m_x, evt.m_y, &wnd)) | |
1171 | return; | |
1172 | ||
1173 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, m_windowId); | |
1174 | e.SetEventObject(this); | |
1175 | e.SetSelection(GetIdxFromWindow(wnd)); | |
1176 | GetEventHandler()->ProcessEvent(e); | |
1177 | } | |
1178 | ||
1179 | void wxAuiTabCtrl::OnRightDown(wxMouseEvent& evt) | |
1180 | { | |
1181 | wxWindow* wnd = NULL; | |
1182 | if (!TabHitTest(evt.m_x, evt.m_y, &wnd)) | |
1183 | return; | |
1184 | ||
1185 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, m_windowId); | |
1186 | e.SetEventObject(this); | |
1187 | e.SetSelection(GetIdxFromWindow(wnd)); | |
1188 | GetEventHandler()->ProcessEvent(e); | |
1189 | } | |
1190 | ||
198be845 JS |
1191 | void wxAuiTabCtrl::OnLeftDClick(wxMouseEvent& evt) |
1192 | { | |
1193 | wxWindow* wnd; | |
1194 | wxAuiTabContainerButton* button; | |
1195 | if (!TabHitTest(evt.m_x, evt.m_y, &wnd) && !ButtonHitTest(evt.m_x, evt.m_y, &button)) | |
1196 | { | |
1197 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, m_windowId); | |
1198 | e.SetEventObject(this); | |
1199 | GetEventHandler()->ProcessEvent(e); | |
1200 | } | |
1201 | } | |
1202 | ||
cd05bf23 BW |
1203 | void wxAuiTabCtrl::OnMotion(wxMouseEvent& evt) |
1204 | { | |
1205 | wxPoint pos = evt.GetPosition(); | |
1206 | ||
1207 | // check if the mouse is hovering above a button | |
1208 | wxAuiTabContainerButton* button; | |
9a29fe70 | 1209 | if (ButtonHitTest(pos.x, pos.y, &button) && !(button->curState & wxAUI_BUTTON_STATE_DISABLED)) |
cd05bf23 | 1210 | { |
9a29fe70 | 1211 | if (m_hoverButton && button != m_hoverButton) |
b6418695 | 1212 | { |
9a29fe70 VZ |
1213 | m_hoverButton->curState = wxAUI_BUTTON_STATE_NORMAL; |
1214 | m_hoverButton = NULL; | |
b6418695 BW |
1215 | Refresh(); |
1216 | Update(); | |
1217 | } | |
7baac3cb | 1218 | |
9a29fe70 | 1219 | if (button->curState != wxAUI_BUTTON_STATE_HOVER) |
cd05bf23 | 1220 | { |
9a29fe70 | 1221 | button->curState = wxAUI_BUTTON_STATE_HOVER; |
cd05bf23 BW |
1222 | Refresh(); |
1223 | Update(); | |
8c7fb508 | 1224 | |
9a29fe70 | 1225 | m_hoverButton = button; |
cd05bf23 BW |
1226 | return; |
1227 | } | |
1228 | } | |
cedd7b22 | 1229 | else |
cd05bf23 | 1230 | { |
9a29fe70 | 1231 | if (m_hoverButton) |
cd05bf23 | 1232 | { |
9a29fe70 VZ |
1233 | m_hoverButton->curState = wxAUI_BUTTON_STATE_NORMAL; |
1234 | m_hoverButton = NULL; | |
cd05bf23 BW |
1235 | Refresh(); |
1236 | Update(); | |
1237 | } | |
1238 | } | |
4444d148 WS |
1239 | |
1240 | ||
9a29fe70 | 1241 | if (!evt.LeftIsDown() || m_clickPt == wxDefaultPosition) |
cd05bf23 | 1242 | return; |
4444d148 | 1243 | |
9a29fe70 | 1244 | if (m_isDragging) |
cd05bf23 BW |
1245 | { |
1246 | wxAuiNotebookEvent evt(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, m_windowId); | |
9a29fe70 | 1247 | evt.SetSelection(GetIdxFromWindow(m_clickTab)); |
08c068a4 | 1248 | evt.SetOldSelection(evt.GetSelection()); |
cd05bf23 BW |
1249 | evt.SetEventObject(this); |
1250 | GetEventHandler()->ProcessEvent(evt); | |
1251 | return; | |
4444d148 WS |
1252 | } |
1253 | ||
1254 | ||
cd05bf23 BW |
1255 | int drag_x_threshold = wxSystemSettings::GetMetric(wxSYS_DRAG_X); |
1256 | int drag_y_threshold = wxSystemSettings::GetMetric(wxSYS_DRAG_Y); | |
1257 | ||
9a29fe70 VZ |
1258 | if (abs(pos.x - m_clickPt.x) > drag_x_threshold || |
1259 | abs(pos.y - m_clickPt.y) > drag_y_threshold) | |
cd05bf23 BW |
1260 | { |
1261 | wxAuiNotebookEvent evt(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, m_windowId); | |
9a29fe70 | 1262 | evt.SetSelection(GetIdxFromWindow(m_clickTab)); |
08c068a4 | 1263 | evt.SetOldSelection(evt.GetSelection()); |
cd05bf23 BW |
1264 | evt.SetEventObject(this); |
1265 | GetEventHandler()->ProcessEvent(evt); | |
4444d148 | 1266 | |
9a29fe70 | 1267 | m_isDragging = true; |
cd05bf23 BW |
1268 | } |
1269 | } | |
1270 | ||
1271 | void wxAuiTabCtrl::OnLeaveWindow(wxMouseEvent& WXUNUSED(event)) | |
1272 | { | |
9a29fe70 | 1273 | if (m_hoverButton) |
cd05bf23 | 1274 | { |
9a29fe70 VZ |
1275 | m_hoverButton->curState = wxAUI_BUTTON_STATE_NORMAL; |
1276 | m_hoverButton = NULL; | |
cd05bf23 BW |
1277 | Refresh(); |
1278 | Update(); | |
1279 | } | |
1280 | } | |
1281 | ||
4953f8cf BW |
1282 | void wxAuiTabCtrl::OnButton(wxAuiNotebookEvent& event) |
1283 | { | |
1284 | int button = event.GetInt(); | |
7baac3cb | 1285 | |
4953f8cf BW |
1286 | if (button == wxAUI_BUTTON_LEFT || button == wxAUI_BUTTON_RIGHT) |
1287 | { | |
1288 | if (button == wxAUI_BUTTON_LEFT) | |
1289 | { | |
1290 | if (GetTabOffset() > 0) | |
1291 | { | |
1292 | SetTabOffset(GetTabOffset()-1); | |
1293 | Refresh(); | |
1294 | Update(); | |
1295 | } | |
1296 | } | |
cedd7b22 | 1297 | else |
4953f8cf BW |
1298 | { |
1299 | SetTabOffset(GetTabOffset()+1); | |
1300 | Refresh(); | |
1301 | Update(); | |
1302 | } | |
01372b8f | 1303 | } |
cedd7b22 | 1304 | else if (button == wxAUI_BUTTON_WINDOWLIST) |
01372b8f | 1305 | { |
793d4365 | 1306 | int idx = GetArtProvider()->ShowDropDown(this, m_pages, GetActivePage()); |
7baac3cb | 1307 | |
01372b8f BW |
1308 | if (idx != -1) |
1309 | { | |
1310 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, m_windowId); | |
1311 | e.SetSelection(idx); | |
1312 | e.SetOldSelection(GetActivePage()); | |
1313 | e.SetEventObject(this); | |
1314 | GetEventHandler()->ProcessEvent(e); | |
1315 | } | |
4953f8cf | 1316 | } |
cedd7b22 | 1317 | else |
4953f8cf BW |
1318 | { |
1319 | event.Skip(); | |
1320 | } | |
1321 | } | |
cd05bf23 | 1322 | |
a0c2e4a0 JS |
1323 | void wxAuiTabCtrl::OnSetFocus(wxFocusEvent& WXUNUSED(event)) |
1324 | { | |
1325 | Refresh(); | |
1326 | } | |
1327 | ||
1328 | void wxAuiTabCtrl::OnKillFocus(wxFocusEvent& WXUNUSED(event)) | |
1329 | { | |
1330 | Refresh(); | |
1331 | } | |
1332 | ||
1333 | void wxAuiTabCtrl::OnChar(wxKeyEvent& event) | |
1334 | { | |
1335 | if (GetActivePage() == -1) | |
1336 | { | |
1337 | event.Skip(); | |
1338 | return; | |
1339 | } | |
1340 | ||
1341 | // We can't leave tab processing to the system; on Windows, tabs and keys | |
1342 | // get eaten by the system and not processed properly if we specify both | |
1343 | // wxTAB_TRAVERSAL and wxWANTS_CHARS. And if we specify just wxTAB_TRAVERSAL, | |
1344 | // we don't key arrow key events. | |
1345 | ||
1346 | int key = event.GetKeyCode(); | |
1347 | ||
1348 | if (key == WXK_NUMPAD_PAGEUP) | |
1349 | key = WXK_PAGEUP; | |
1350 | if (key == WXK_NUMPAD_PAGEDOWN) | |
1351 | key = WXK_PAGEDOWN; | |
1352 | if (key == WXK_NUMPAD_HOME) | |
1353 | key = WXK_HOME; | |
1354 | if (key == WXK_NUMPAD_END) | |
1355 | key = WXK_END; | |
1356 | if (key == WXK_NUMPAD_LEFT) | |
1357 | key = WXK_LEFT; | |
1358 | if (key == WXK_NUMPAD_RIGHT) | |
1359 | key = WXK_RIGHT; | |
1360 | ||
1361 | if (key == WXK_TAB || key == WXK_PAGEUP || key == WXK_PAGEDOWN) | |
1362 | { | |
1363 | bool bCtrlDown = event.ControlDown(); | |
1364 | bool bShiftDown = event.ShiftDown(); | |
1365 | ||
1366 | bool bForward = (key == WXK_TAB && !bShiftDown) || (key == WXK_PAGEDOWN); | |
1367 | bool bWindowChange = (key == WXK_PAGEUP) || (key == WXK_PAGEDOWN) || bCtrlDown; | |
1368 | bool bFromTab = (key == WXK_TAB); | |
1369 | ||
1370 | wxAuiNotebook* nb = wxDynamicCast(GetParent(), wxAuiNotebook); | |
1371 | if (!nb) | |
1372 | { | |
1373 | event.Skip(); | |
1374 | return; | |
1375 | } | |
1376 | ||
1377 | wxNavigationKeyEvent keyEvent; | |
1378 | keyEvent.SetDirection(bForward); | |
1379 | keyEvent.SetWindowChange(bWindowChange); | |
1380 | keyEvent.SetFromTab(bFromTab); | |
1381 | keyEvent.SetEventObject(nb); | |
1382 | ||
1383 | if (!nb->GetEventHandler()->ProcessEvent(keyEvent)) | |
1384 | { | |
1385 | // Not processed? Do an explicit tab into the page. | |
1386 | wxWindow* win = GetWindowFromIdx(GetActivePage()); | |
1387 | if (win) | |
1388 | win->SetFocus(); | |
1389 | } | |
1390 | return; | |
1391 | } | |
1392 | ||
1393 | if (m_pages.GetCount() < 2) | |
1394 | { | |
1395 | event.Skip(); | |
1396 | return; | |
1397 | } | |
1398 | ||
1399 | int newPage = -1; | |
1400 | ||
5c58a3a9 VZ |
1401 | int forwardKey, backwardKey; |
1402 | if (GetLayoutDirection() == wxLayout_RightToLeft) | |
1403 | { | |
1404 | forwardKey = WXK_LEFT; | |
1405 | backwardKey = WXK_RIGHT; | |
1406 | } | |
1407 | else | |
1408 | { | |
1409 | forwardKey = WXK_RIGHT; | |
1410 | backwardKey = WXK_LEFT; | |
1411 | } | |
1412 | ||
1413 | if (key == forwardKey) | |
a0c2e4a0 JS |
1414 | { |
1415 | if (m_pages.GetCount() > 1) | |
1416 | { | |
1417 | if (GetActivePage() == -1) | |
1418 | newPage = 0; | |
1419 | else if (GetActivePage() < (int) (m_pages.GetCount() - 1)) | |
1420 | newPage = GetActivePage() + 1; | |
1421 | } | |
1422 | } | |
5c58a3a9 | 1423 | else if (key == backwardKey) |
a0c2e4a0 JS |
1424 | { |
1425 | if (m_pages.GetCount() > 1) | |
1426 | { | |
1427 | if (GetActivePage() == -1) | |
1428 | newPage = (int) (m_pages.GetCount() - 1); | |
1429 | else if (GetActivePage() > 0) | |
1430 | newPage = GetActivePage() - 1; | |
1431 | } | |
1432 | } | |
1433 | else if (key == WXK_HOME) | |
1434 | { | |
1435 | newPage = 0; | |
1436 | } | |
1437 | else if (key == WXK_END) | |
1438 | { | |
1439 | newPage = (int) (m_pages.GetCount() - 1); | |
1440 | } | |
1441 | else | |
1442 | event.Skip(); | |
1443 | ||
1444 | if (newPage != -1) | |
1445 | { | |
1446 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, m_windowId); | |
1447 | e.SetSelection(newPage); | |
1448 | e.SetOldSelection(newPage); | |
1449 | e.SetEventObject(this); | |
1450 | this->GetEventHandler()->ProcessEvent(e); | |
1451 | } | |
1452 | else | |
1453 | event.Skip(); | |
1454 | } | |
1455 | ||
cd05bf23 BW |
1456 | // wxTabFrame is an interesting case. It's important that all child pages |
1457 | // of the multi-notebook control are all actually children of that control | |
1458 | // (and not grandchildren). wxTabFrame facilitates this. There is one | |
1459 | // instance of wxTabFrame for each tab control inside the multi-notebook. | |
1460 | // It's important to know that wxTabFrame is not a real window, but it merely | |
1461 | // used to capture the dimensions/positioning of the internal tab control and | |
1462 | // it's managed page windows | |
1463 | ||
1464 | class wxTabFrame : public wxWindow | |
1465 | { | |
1466 | public: | |
1467 | ||
1468 | wxTabFrame() | |
1469 | { | |
1470 | m_tabs = NULL; | |
1471 | m_rect = wxRect(0,0,200,200); | |
9a29fe70 | 1472 | m_tabCtrlHeight = 20; |
da5e85d9 | 1473 | } |
4444d148 | 1474 | |
cedd7b22 PC |
1475 | ~wxTabFrame() |
1476 | { | |
1477 | wxDELETE(m_tabs); | |
1478 | } | |
bd4e0834 | 1479 | |
da5e85d9 BW |
1480 | void SetTabCtrlHeight(int h) |
1481 | { | |
9a29fe70 | 1482 | m_tabCtrlHeight = h; |
cd05bf23 | 1483 | } |
4444d148 | 1484 | |
cedd7b22 | 1485 | protected: |
cd05bf23 BW |
1486 | void DoSetSize(int x, int y, |
1487 | int width, int height, | |
1488 | int WXUNUSED(sizeFlags = wxSIZE_AUTO)) | |
1489 | { | |
1490 | m_rect = wxRect(x, y, width, height); | |
1491 | DoSizing(); | |
1492 | } | |
4444d148 | 1493 | |
cd05bf23 BW |
1494 | void DoGetClientSize(int* x, int* y) const |
1495 | { | |
1496 | *x = m_rect.width; | |
1497 | *y = m_rect.height; | |
1498 | } | |
4f450f41 | 1499 | |
cedd7b22 | 1500 | public: |
4f450f41 | 1501 | bool Show( bool WXUNUSED(show = true) ) { return false; } |
4444d148 | 1502 | |
cd05bf23 BW |
1503 | void DoSizing() |
1504 | { | |
1505 | if (!m_tabs) | |
1506 | return; | |
4444d148 | 1507 | |
64178c36 JS |
1508 | if (m_tabs->IsFrozen() || m_tabs->GetParent()->IsFrozen()) |
1509 | return; | |
1510 | ||
9a29fe70 | 1511 | m_tab_rect = wxRect(m_rect.x, m_rect.y, m_rect.width, m_tabCtrlHeight); |
134198f1 JS |
1512 | if (m_tabs->GetFlags() & wxAUI_NB_BOTTOM) |
1513 | { | |
9a29fe70 VZ |
1514 | m_tab_rect = wxRect (m_rect.x, m_rect.y + m_rect.height - m_tabCtrlHeight, m_rect.width, m_tabCtrlHeight); |
1515 | m_tabs->SetSize (m_rect.x, m_rect.y + m_rect.height - m_tabCtrlHeight, m_rect.width, m_tabCtrlHeight); | |
1516 | m_tabs->SetRect (wxRect(0, 0, m_rect.width, m_tabCtrlHeight)); | |
134198f1 JS |
1517 | } |
1518 | else //TODO: if (GetFlags() & wxAUI_NB_TOP) | |
1519 | { | |
9a29fe70 VZ |
1520 | m_tab_rect = wxRect (m_rect.x, m_rect.y, m_rect.width, m_tabCtrlHeight); |
1521 | m_tabs->SetSize (m_rect.x, m_rect.y, m_rect.width, m_tabCtrlHeight); | |
1522 | m_tabs->SetRect (wxRect(0, 0, m_rect.width, m_tabCtrlHeight)); | |
134198f1 JS |
1523 | } |
1524 | // TODO: else if (GetFlags() & wxAUI_NB_LEFT){} | |
1525 | // TODO: else if (GetFlags() & wxAUI_NB_RIGHT){} | |
1526 | ||
cd05bf23 | 1527 | m_tabs->Refresh(); |
9d59bf68 | 1528 | m_tabs->Update(); |
4444d148 | 1529 | |
cd05bf23 BW |
1530 | wxAuiNotebookPageArray& pages = m_tabs->GetPages(); |
1531 | size_t i, page_count = pages.GetCount(); | |
4444d148 | 1532 | |
cd05bf23 BW |
1533 | for (i = 0; i < page_count; ++i) |
1534 | { | |
9a29fe70 | 1535 | int height = m_rect.height - m_tabCtrlHeight; |
f96f6a88 VZ |
1536 | if ( height < 0 ) |
1537 | { | |
1538 | // avoid passing negative height to wxWindow::SetSize(), this | |
1539 | // results in assert failures/GTK+ warnings | |
1540 | height = 0; | |
1541 | } | |
1542 | ||
cd05bf23 | 1543 | wxAuiNotebookPage& page = pages.Item(i); |
134198f1 JS |
1544 | if (m_tabs->GetFlags() & wxAUI_NB_BOTTOM) |
1545 | { | |
f96f6a88 | 1546 | page.window->SetSize(m_rect.x, m_rect.y, m_rect.width, height); |
134198f1 JS |
1547 | } |
1548 | else //TODO: if (GetFlags() & wxAUI_NB_TOP) | |
1549 | { | |
9a29fe70 | 1550 | page.window->SetSize(m_rect.x, m_rect.y + m_tabCtrlHeight, |
f96f6a88 | 1551 | m_rect.width, height); |
134198f1 JS |
1552 | } |
1553 | // TODO: else if (GetFlags() & wxAUI_NB_LEFT){} | |
1554 | // TODO: else if (GetFlags() & wxAUI_NB_RIGHT){} | |
4444d148 | 1555 | |
89272c55 | 1556 | #if wxUSE_MDI |
a3a5df9d | 1557 | if (page.window->IsKindOf(CLASSINFO(wxAuiMDIChildFrame))) |
cd05bf23 | 1558 | { |
a3a5df9d | 1559 | wxAuiMDIChildFrame* wnd = (wxAuiMDIChildFrame*)page.window; |
cd05bf23 BW |
1560 | wnd->ApplyMDIChildFrameRect(); |
1561 | } | |
89272c55 | 1562 | #endif |
cd05bf23 BW |
1563 | } |
1564 | } | |
1565 | ||
cedd7b22 | 1566 | protected: |
134e83cb BW |
1567 | void DoGetSize(int* x, int* y) const |
1568 | { | |
1569 | if (x) | |
1570 | *x = m_rect.GetWidth(); | |
1571 | if (y) | |
1572 | *y = m_rect.GetHeight(); | |
1573 | } | |
4444d148 | 1574 | |
cedd7b22 | 1575 | public: |
134e83cb BW |
1576 | void Update() |
1577 | { | |
1578 | // does nothing | |
1579 | } | |
4444d148 | 1580 | |
cd05bf23 BW |
1581 | wxRect m_rect; |
1582 | wxRect m_tab_rect; | |
1583 | wxAuiTabCtrl* m_tabs; | |
9a29fe70 | 1584 | int m_tabCtrlHeight; |
cd05bf23 BW |
1585 | }; |
1586 | ||
1587 | ||
7ebc40e8 | 1588 | const int wxAuiBaseTabCtrlId = 5380; |
cd05bf23 BW |
1589 | |
1590 | ||
a3a5df9d | 1591 | // -- wxAuiNotebook class implementation -- |
cd05bf23 | 1592 | |
3c778901 VZ |
1593 | #define EVT_AUI_RANGE(id1, id2, event, func) \ |
1594 | wx__DECLARE_EVT2(event, id1, id2, wxAuiNotebookEventHandler(func)) | |
1595 | ||
a3a5df9d | 1596 | BEGIN_EVENT_TABLE(wxAuiNotebook, wxControl) |
9fbb7d80 | 1597 | EVT_SIZE(wxAuiNotebook::OnSize) |
5bf3f27f | 1598 | EVT_CHILD_FOCUS(wxAuiNotebook::OnChildFocusNotebook) |
3c778901 | 1599 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
cd05bf23 | 1600 | wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, |
a3a5df9d | 1601 | wxAuiNotebook::OnTabClicked) |
3c778901 | 1602 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
cd05bf23 | 1603 | wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, |
a3a5df9d | 1604 | wxAuiNotebook::OnTabBeginDrag) |
3c778901 | 1605 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
cd05bf23 | 1606 | wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, |
a3a5df9d | 1607 | wxAuiNotebook::OnTabEndDrag) |
2bd82d72 VZ |
1608 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
1609 | wxEVT_COMMAND_AUINOTEBOOK_CANCEL_DRAG, | |
1610 | wxAuiNotebook::OnTabCancelDrag) | |
3c778901 | 1611 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
cd05bf23 | 1612 | wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, |
a3a5df9d | 1613 | wxAuiNotebook::OnTabDragMotion) |
3c778901 | 1614 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
cd05bf23 | 1615 | wxEVT_COMMAND_AUINOTEBOOK_BUTTON, |
a3a5df9d | 1616 | wxAuiNotebook::OnTabButton) |
3c778901 | 1617 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
69f5e420 BW |
1618 | wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, |
1619 | wxAuiNotebook::OnTabMiddleDown) | |
3c778901 | 1620 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
69f5e420 BW |
1621 | wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, |
1622 | wxAuiNotebook::OnTabMiddleUp) | |
3c778901 | 1623 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
69f5e420 BW |
1624 | wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, |
1625 | wxAuiNotebook::OnTabRightDown) | |
3c778901 | 1626 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
69f5e420 BW |
1627 | wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, |
1628 | wxAuiNotebook::OnTabRightUp) | |
3c778901 | 1629 | EVT_AUI_RANGE(wxAuiBaseTabCtrlId, wxAuiBaseTabCtrlId+500, |
198be845 JS |
1630 | wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, |
1631 | wxAuiNotebook::OnTabBgDClick) | |
5bf3f27f | 1632 | EVT_NAVIGATION_KEY(wxAuiNotebook::OnNavigationKeyNotebook) |
cd05bf23 BW |
1633 | END_EVENT_TABLE() |
1634 | ||
90230407 | 1635 | void wxAuiNotebook::Init() |
cd05bf23 | 1636 | { |
9a29fe70 VZ |
1637 | m_curPage = -1; |
1638 | m_tabIdCounter = wxAuiBaseTabCtrlId; | |
1639 | m_dummyWnd = NULL; | |
1640 | m_tabCtrlHeight = 20; | |
1641 | m_requestedBmpSize = wxDefaultSize; | |
1642 | m_requestedTabCtrlHeight = -1; | |
cd05bf23 BW |
1643 | } |
1644 | ||
a3a5df9d | 1645 | bool wxAuiNotebook::Create(wxWindow* parent, |
cd05bf23 BW |
1646 | wxWindowID id, |
1647 | const wxPoint& pos, | |
1648 | const wxSize& size, | |
1649 | long style) | |
1650 | { | |
1651 | if (!wxControl::Create(parent, id, pos, size, style)) | |
1652 | return false; | |
4444d148 | 1653 | |
702b1c7e | 1654 | InitNotebook(style); |
4444d148 | 1655 | |
cd05bf23 BW |
1656 | return true; |
1657 | } | |
1658 | ||
1659 | // InitNotebook() contains common initialization | |
1660 | // code called by all constructors | |
a3a5df9d | 1661 | void wxAuiNotebook::InitNotebook(long style) |
cd05bf23 | 1662 | { |
c7bfb76a | 1663 | SetName(wxT("wxAuiNotebook")); |
9a29fe70 VZ |
1664 | m_curPage = -1; |
1665 | m_tabIdCounter = wxAuiBaseTabCtrlId; | |
1666 | m_dummyWnd = NULL; | |
702b1c7e | 1667 | m_flags = (unsigned int)style; |
9a29fe70 | 1668 | m_tabCtrlHeight = 20; |
c58ba15f | 1669 | |
9a29fe70 VZ |
1670 | m_normalFont = *wxNORMAL_FONT; |
1671 | m_selectedFont = *wxNORMAL_FONT; | |
1672 | m_selectedFont.SetWeight(wxBOLD); | |
4444d148 | 1673 | |
b0d17f7c | 1674 | SetArtProvider(new wxAuiDefaultTabArt); |
4444d148 | 1675 | |
9a29fe70 VZ |
1676 | m_dummyWnd = new wxWindow(this, wxID_ANY, wxPoint(0,0), wxSize(0,0)); |
1677 | m_dummyWnd->SetSize(200, 200); | |
1678 | m_dummyWnd->Show(false); | |
4444d148 | 1679 | |
cd05bf23 | 1680 | m_mgr.SetManagedWindow(this); |
a6b7a521 VZ |
1681 | m_mgr.SetFlags(wxAUI_MGR_DEFAULT); |
1682 | m_mgr.SetDockSizeConstraint(1.0, 1.0); // no dock size constraint | |
4444d148 | 1683 | |
9a29fe70 | 1684 | m_mgr.AddPane(m_dummyWnd, |
9fbb7d80 | 1685 | wxAuiPaneInfo().Name(wxT("dummy")).Bottom().CaptionVisible(false).Show(false)); |
4444d148 | 1686 | |
cd05bf23 BW |
1687 | m_mgr.Update(); |
1688 | } | |
1689 | ||
a3a5df9d | 1690 | wxAuiNotebook::~wxAuiNotebook() |
cd05bf23 | 1691 | { |
18b40f30 | 1692 | // Indicate we're deleting pages |
c6212a0c | 1693 | SendDestroyEvent(); |
18b40f30 | 1694 | |
1c0955dd JS |
1695 | while ( GetPageCount() > 0 ) |
1696 | DeletePage(0); | |
1697 | ||
cd05bf23 BW |
1698 | m_mgr.UnInit(); |
1699 | } | |
1700 | ||
a3a5df9d | 1701 | void wxAuiNotebook::SetArtProvider(wxAuiTabArt* art) |
3f69756e BW |
1702 | { |
1703 | m_tabs.SetArtProvider(art); | |
7baac3cb | 1704 | |
4026f044 VZ |
1705 | // Update the height and do nothing else if it did something but otherwise |
1706 | // (i.e. if the new art provider uses the same height as the old one) we | |
1707 | // need to manually set the art provider for all tabs ourselves. | |
1708 | if ( !UpdateTabCtrlHeight() ) | |
1709 | { | |
1710 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); | |
1711 | const size_t pane_count = all_panes.GetCount(); | |
1712 | for (size_t i = 0; i < pane_count; ++i) | |
1713 | { | |
1714 | wxAuiPaneInfo& pane = all_panes.Item(i); | |
1715 | if (pane.name == wxT("dummy")) | |
1716 | continue; | |
1717 | wxTabFrame* tab_frame = (wxTabFrame*)pane.window; | |
1718 | wxAuiTabCtrl* tabctrl = tab_frame->m_tabs; | |
1719 | tabctrl->SetArtProvider(art->Clone()); | |
1720 | } | |
1721 | } | |
2b9aac33 BW |
1722 | } |
1723 | ||
ca0d4407 BW |
1724 | // SetTabCtrlHeight() is the highest-level override of the |
1725 | // tab height. A call to this function effectively enforces a | |
1726 | // specified tab ctrl height, overriding all other considerations, | |
1727 | // such as text or bitmap height. It overrides any call to | |
1728 | // SetUniformBitmapSize(). Specifying a height of -1 reverts | |
4c51a665 | 1729 | // any previous call and returns to the default behaviour |
ca0d4407 BW |
1730 | |
1731 | void wxAuiNotebook::SetTabCtrlHeight(int height) | |
1732 | { | |
9a29fe70 | 1733 | m_requestedTabCtrlHeight = height; |
c58ba15f | 1734 | |
ca0d4407 | 1735 | // if window is already initialized, recalculate the tab height |
9a29fe70 | 1736 | if (m_dummyWnd) |
ca0d4407 BW |
1737 | { |
1738 | UpdateTabCtrlHeight(); | |
1739 | } | |
1740 | } | |
1741 | ||
1742 | ||
1743 | // SetUniformBitmapSize() ensures that all tabs will have | |
1744 | // the same height, even if some tabs don't have bitmaps | |
1745 | // Passing wxDefaultSize to this function will instruct | |
1746 | // the control to use dynamic tab height-- so when a tab | |
1747 | // with a large bitmap is added, the tab ctrl's height will | |
1748 | // automatically increase to accommodate the bitmap | |
1749 | ||
9fbb7d80 BW |
1750 | void wxAuiNotebook::SetUniformBitmapSize(const wxSize& size) |
1751 | { | |
9a29fe70 | 1752 | m_requestedBmpSize = size; |
c58ba15f | 1753 | |
9fbb7d80 | 1754 | // if window is already initialized, recalculate the tab height |
9a29fe70 | 1755 | if (m_dummyWnd) |
dbbe02ea | 1756 | { |
ca0d4407 | 1757 | UpdateTabCtrlHeight(); |
dbbe02ea | 1758 | } |
9fbb7d80 BW |
1759 | } |
1760 | ||
ca0d4407 | 1761 | // UpdateTabCtrlHeight() does the actual tab resizing. It's meant |
4026f044 VZ |
1762 | // to be used internally |
1763 | bool wxAuiNotebook::UpdateTabCtrlHeight() | |
2b9aac33 | 1764 | { |
ca0d4407 BW |
1765 | // get the tab ctrl height we will use |
1766 | int height = CalculateTabCtrlHeight(); | |
c58ba15f | 1767 | |
2b9aac33 BW |
1768 | // if the tab control height needs to change, update |
1769 | // all of our tab controls with the new height | |
9a29fe70 | 1770 | if (m_tabCtrlHeight == height) |
4026f044 | 1771 | return false; |
7baac3cb | 1772 | |
4026f044 | 1773 | wxAuiTabArt* art = m_tabs.GetArtProvider(); |
7baac3cb | 1774 | |
9a29fe70 | 1775 | m_tabCtrlHeight = height; |
4026f044 VZ |
1776 | |
1777 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); | |
1778 | size_t i, pane_count = all_panes.GetCount(); | |
1779 | for (i = 0; i < pane_count; ++i) | |
1780 | { | |
1781 | wxAuiPaneInfo& pane = all_panes.Item(i); | |
1782 | if (pane.name == wxT("dummy")) | |
1783 | continue; | |
1784 | wxTabFrame* tab_frame = (wxTabFrame*)pane.window; | |
1785 | wxAuiTabCtrl* tabctrl = tab_frame->m_tabs; | |
9a29fe70 | 1786 | tab_frame->SetTabCtrlHeight(m_tabCtrlHeight); |
4026f044 VZ |
1787 | tabctrl->SetArtProvider(art->Clone()); |
1788 | tab_frame->DoSizing(); | |
b0d17f7c | 1789 | } |
4026f044 VZ |
1790 | |
1791 | return true; | |
3f69756e BW |
1792 | } |
1793 | ||
9fbb7d80 BW |
1794 | void wxAuiNotebook::UpdateHintWindowSize() |
1795 | { | |
1796 | wxSize size = CalculateNewSplitSize(); | |
c58ba15f | 1797 | |
9fbb7d80 BW |
1798 | // the placeholder hint window should be set to this size |
1799 | wxAuiPaneInfo& info = m_mgr.GetPane(wxT("dummy")); | |
1800 | if (info.IsOk()) | |
1801 | { | |
1802 | info.MinSize(size); | |
1803 | info.BestSize(size); | |
9a29fe70 | 1804 | m_dummyWnd->SetSize(size); |
9fbb7d80 BW |
1805 | } |
1806 | } | |
1807 | ||
1808 | ||
1809 | // calculates the size of the new split | |
1810 | wxSize wxAuiNotebook::CalculateNewSplitSize() | |
1811 | { | |
1812 | // count number of tab controls | |
1813 | int tab_ctrl_count = 0; | |
1814 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); | |
1815 | size_t i, pane_count = all_panes.GetCount(); | |
1816 | for (i = 0; i < pane_count; ++i) | |
1817 | { | |
1818 | wxAuiPaneInfo& pane = all_panes.Item(i); | |
1819 | if (pane.name == wxT("dummy")) | |
1820 | continue; | |
1821 | tab_ctrl_count++; | |
1822 | } | |
1823 | ||
1824 | wxSize new_split_size; | |
c58ba15f | 1825 | |
9fbb7d80 BW |
1826 | // if there is only one tab control, the first split |
1827 | // should happen around the middle | |
1828 | if (tab_ctrl_count < 2) | |
1829 | { | |
1830 | new_split_size = GetClientSize(); | |
1831 | new_split_size.x /= 2; | |
1832 | new_split_size.y /= 2; | |
1833 | } | |
cedd7b22 | 1834 | else |
9fbb7d80 BW |
1835 | { |
1836 | // this is in place of a more complicated calculation | |
1837 | // that needs to be implemented | |
1838 | new_split_size = wxSize(180,180); | |
1839 | } | |
c58ba15f | 1840 | |
9fbb7d80 BW |
1841 | return new_split_size; |
1842 | } | |
1843 | ||
2b9aac33 BW |
1844 | int wxAuiNotebook::CalculateTabCtrlHeight() |
1845 | { | |
ca0d4407 BW |
1846 | // if a fixed tab ctrl height is specified, |
1847 | // just return that instead of calculating a | |
1848 | // tab height | |
9a29fe70 VZ |
1849 | if (m_requestedTabCtrlHeight != -1) |
1850 | return m_requestedTabCtrlHeight; | |
c58ba15f | 1851 | |
2b9aac33 BW |
1852 | // find out new best tab height |
1853 | wxAuiTabArt* art = m_tabs.GetArtProvider(); | |
7baac3cb | 1854 | |
9fbb7d80 BW |
1855 | return art->GetBestTabCtrlSize(this, |
1856 | m_tabs.GetPages(), | |
9a29fe70 | 1857 | m_requestedBmpSize); |
2b9aac33 BW |
1858 | } |
1859 | ||
1860 | ||
e0dc13d4 | 1861 | wxAuiTabArt* wxAuiNotebook::GetArtProvider() const |
3f69756e BW |
1862 | { |
1863 | return m_tabs.GetArtProvider(); | |
1864 | } | |
1865 | ||
0ce53f32 BW |
1866 | void wxAuiNotebook::SetWindowStyleFlag(long style) |
1867 | { | |
1868 | wxControl::SetWindowStyleFlag(style); | |
7baac3cb | 1869 | |
0ce53f32 | 1870 | m_flags = (unsigned int)style; |
7baac3cb | 1871 | |
0ce53f32 BW |
1872 | // if the control is already initialized |
1873 | if (m_mgr.GetManagedWindow() == (wxWindow*)this) | |
1874 | { | |
1875 | // let all of the tab children know about the new style | |
7baac3cb | 1876 | |
0ce53f32 BW |
1877 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
1878 | size_t i, pane_count = all_panes.GetCount(); | |
1879 | for (i = 0; i < pane_count; ++i) | |
1880 | { | |
1881 | wxAuiPaneInfo& pane = all_panes.Item(i); | |
1882 | if (pane.name == wxT("dummy")) | |
1883 | continue; | |
97ac2d5e BW |
1884 | wxTabFrame* tabframe = (wxTabFrame*)pane.window; |
1885 | wxAuiTabCtrl* tabctrl = tabframe->m_tabs; | |
0ce53f32 | 1886 | tabctrl->SetFlags(m_flags); |
97ac2d5e | 1887 | tabframe->DoSizing(); |
0ce53f32 BW |
1888 | tabctrl->Refresh(); |
1889 | tabctrl->Update(); | |
1890 | } | |
1891 | } | |
1892 | } | |
1893 | ||
1894 | ||
a3a5df9d | 1895 | bool wxAuiNotebook::AddPage(wxWindow* page, |
cd05bf23 BW |
1896 | const wxString& caption, |
1897 | bool select, | |
1898 | const wxBitmap& bitmap) | |
1899 | { | |
1900 | return InsertPage(GetPageCount(), page, caption, select, bitmap); | |
1901 | } | |
4444d148 | 1902 | |
a3a5df9d | 1903 | bool wxAuiNotebook::InsertPage(size_t page_idx, |
cd05bf23 BW |
1904 | wxWindow* page, |
1905 | const wxString& caption, | |
1906 | bool select, | |
1907 | const wxBitmap& bitmap) | |
1908 | { | |
c36cdfc0 BW |
1909 | wxASSERT_MSG(page, wxT("page pointer must be non-NULL")); |
1910 | if (!page) | |
1911 | return false; | |
5c58a3a9 | 1912 | |
3d9b52a8 JS |
1913 | page->Reparent(this); |
1914 | ||
cd05bf23 BW |
1915 | wxAuiNotebookPage info; |
1916 | info.window = page; | |
1917 | info.caption = caption; | |
1918 | info.bitmap = bitmap; | |
1919 | info.active = false; | |
1920 | ||
1921 | // if there are currently no tabs, the first added | |
1922 | // tab must be active | |
1923 | if (m_tabs.GetPageCount() == 0) | |
1924 | info.active = true; | |
1925 | ||
1926 | m_tabs.InsertPage(page, info, page_idx); | |
1927 | ||
298773ec BW |
1928 | // if that was the first page added, even if |
1929 | // select is false, it must become the "current page" | |
1930 | // (though no select events will be fired) | |
1931 | if (!select && m_tabs.GetPageCount() == 1) | |
092d7f88 | 1932 | select = true; |
9a29fe70 | 1933 | //m_curPage = GetPageIndex(page); |
298773ec | 1934 | |
cd05bf23 BW |
1935 | wxAuiTabCtrl* active_tabctrl = GetActiveTabCtrl(); |
1936 | if (page_idx >= active_tabctrl->GetPageCount()) | |
1937 | active_tabctrl->AddPage(page, info); | |
cedd7b22 | 1938 | else |
cd05bf23 | 1939 | active_tabctrl->InsertPage(page, info, page_idx); |
4444d148 | 1940 | |
ca0d4407 | 1941 | UpdateTabCtrlHeight(); |
cd05bf23 BW |
1942 | DoSizing(); |
1943 | active_tabctrl->DoShowHide(); | |
4444d148 | 1944 | |
3d9b52a8 | 1945 | // adjust selected index |
9a29fe70 VZ |
1946 | if(m_curPage >= (int) page_idx) |
1947 | m_curPage++; | |
3d9b52a8 | 1948 | |
cd05bf23 BW |
1949 | if (select) |
1950 | { | |
849c353a | 1951 | SetSelectionToWindow(page); |
cd05bf23 | 1952 | } |
4444d148 | 1953 | |
cd05bf23 BW |
1954 | return true; |
1955 | } | |
1956 | ||
1957 | ||
1958 | // DeletePage() removes a tab from the multi-notebook, | |
1959 | // and destroys the window as well | |
a3a5df9d | 1960 | bool wxAuiNotebook::DeletePage(size_t page_idx) |
7baac3cb | 1961 | { |
fd749f4a BW |
1962 | if (page_idx >= m_tabs.GetPageCount()) |
1963 | return false; | |
cedd7b22 | 1964 | |
4444d148 | 1965 | wxWindow* wnd = m_tabs.GetWindowFromIdx(page_idx); |
cedd7b22 | 1966 | |
fd749f4a BW |
1967 | // hide the window in advance, as this will |
1968 | // prevent flicker | |
1969 | ShowWnd(wnd, false); | |
5d3aeb0f BW |
1970 | |
1971 | if (!RemovePage(page_idx)) | |
1972 | return false; | |
1973 | ||
89272c55 | 1974 | #if wxUSE_MDI |
5d3aeb0f BW |
1975 | // actually destroy the window now |
1976 | if (wnd->IsKindOf(CLASSINFO(wxAuiMDIChildFrame))) | |
1977 | { | |
1978 | // delete the child frame with pending delete, as is | |
1979 | // customary with frame windows | |
1980 | if (!wxPendingDelete.Member(wnd)) | |
1981 | wxPendingDelete.Append(wnd); | |
1982 | } | |
cedd7b22 | 1983 | else |
89272c55 | 1984 | #endif |
5d3aeb0f BW |
1985 | { |
1986 | wnd->Destroy(); | |
1987 | } | |
7baac3cb | 1988 | |
5d3aeb0f | 1989 | return true; |
cd05bf23 BW |
1990 | } |
1991 | ||
1992 | ||
1993 | ||
1994 | // RemovePage() removes a tab from the multi-notebook, | |
1995 | // but does not destroy the window | |
a3a5df9d | 1996 | bool wxAuiNotebook::RemovePage(size_t page_idx) |
cd05bf23 | 1997 | { |
9b362935 BW |
1998 | // save active window pointer |
1999 | wxWindow* active_wnd = NULL; | |
9a29fe70 VZ |
2000 | if (m_curPage >= 0) |
2001 | active_wnd = m_tabs.GetWindowFromIdx(m_curPage); | |
cedd7b22 | 2002 | |
9b362935 | 2003 | // save pointer of window being deleted |
cd05bf23 | 2004 | wxWindow* wnd = m_tabs.GetWindowFromIdx(page_idx); |
5d3aeb0f | 2005 | wxWindow* new_active = NULL; |
4444d148 | 2006 | |
13aaa50f BW |
2007 | // make sure we found the page |
2008 | if (!wnd) | |
2009 | return false; | |
cedd7b22 | 2010 | |
5d3aeb0f | 2011 | // find out which onscreen tab ctrl owns this tab |
cd05bf23 BW |
2012 | wxAuiTabCtrl* ctrl; |
2013 | int ctrl_idx; | |
5d3aeb0f BW |
2014 | if (!FindTab(wnd, &ctrl, &ctrl_idx)) |
2015 | return false; | |
2016 | ||
9a29fe70 | 2017 | bool is_curpage = (m_curPage == (int)page_idx); |
13aaa50f | 2018 | bool is_active_in_split = ctrl->GetPage(ctrl_idx).active; |
5d3aeb0f | 2019 | |
4444d148 | 2020 | |
5d3aeb0f BW |
2021 | // remove the tab from main catalog |
2022 | if (!m_tabs.RemovePage(wnd)) | |
2023 | return false; | |
2024 | ||
2025 | // remove the tab from the onscreen tab ctrl | |
2026 | ctrl->RemovePage(wnd); | |
2027 | ||
13aaa50f BW |
2028 | if (is_active_in_split) |
2029 | { | |
2030 | int ctrl_new_page_count = (int)ctrl->GetPageCount(); | |
cedd7b22 | 2031 | |
13aaa50f BW |
2032 | if (ctrl_idx >= ctrl_new_page_count) |
2033 | ctrl_idx = ctrl_new_page_count-1; | |
cedd7b22 | 2034 | |
13aaa50f BW |
2035 | if (ctrl_idx >= 0 && ctrl_idx < (int)ctrl->GetPageCount()) |
2036 | { | |
2037 | // set new page as active in the tab split | |
2038 | ctrl->SetActivePage(ctrl_idx); | |
cedd7b22 | 2039 | |
13aaa50f BW |
2040 | // if the page deleted was the current page for the |
2041 | // entire tab control, then record the window | |
2042 | // pointer of the new active page for activation | |
2043 | if (is_curpage) | |
2044 | { | |
2045 | new_active = ctrl->GetWindowFromIdx(ctrl_idx); | |
2046 | } | |
2047 | } | |
2048 | } | |
cedd7b22 | 2049 | else |
9b362935 BW |
2050 | { |
2051 | // we are not deleting the active page, so keep it the same | |
2052 | new_active = active_wnd; | |
2053 | } | |
13aaa50f | 2054 | |
cedd7b22 | 2055 | |
13aaa50f BW |
2056 | if (!new_active) |
2057 | { | |
2058 | // we haven't yet found a new page to active, | |
2059 | // so select the next page from the main tab | |
2060 | // catalogue | |
cedd7b22 | 2061 | |
13aaa50f BW |
2062 | if (page_idx < m_tabs.GetPageCount()) |
2063 | { | |
2064 | new_active = m_tabs.GetPage(page_idx).window; | |
2065 | } | |
cedd7b22 | 2066 | |
13aaa50f BW |
2067 | if (!new_active && m_tabs.GetPageCount() > 0) |
2068 | { | |
2069 | new_active = m_tabs.GetPage(0).window; | |
2070 | } | |
2071 | } | |
5d3aeb0f | 2072 | |
cedd7b22 | 2073 | |
5d3aeb0f BW |
2074 | RemoveEmptyTabFrames(); |
2075 | ||
9a29fe70 | 2076 | m_curPage = wxNOT_FOUND; |
917f228a VZ |
2077 | |
2078 | // set new active pane unless we're being destroyed anyhow | |
18b40f30 | 2079 | if (new_active && !m_isBeingDeleted) |
849c353a | 2080 | SetSelectionToWindow(new_active); |
cedd7b22 | 2081 | |
5d3aeb0f | 2082 | return true; |
cd05bf23 BW |
2083 | } |
2084 | ||
e0dc13d4 BW |
2085 | // GetPageIndex() returns the index of the page, or -1 if the |
2086 | // page could not be located in the notebook | |
2087 | int wxAuiNotebook::GetPageIndex(wxWindow* page_wnd) const | |
2088 | { | |
2089 | return m_tabs.GetIdxFromWindow(page_wnd); | |
2090 | } | |
2091 | ||
2092 | ||
2093 | ||
cd05bf23 | 2094 | // SetPageText() changes the tab caption of the specified page |
a3a5df9d | 2095 | bool wxAuiNotebook::SetPageText(size_t page_idx, const wxString& text) |
4444d148 | 2096 | { |
cd05bf23 BW |
2097 | if (page_idx >= m_tabs.GetPageCount()) |
2098 | return false; | |
4444d148 | 2099 | |
cd05bf23 BW |
2100 | // update our own tab catalog |
2101 | wxAuiNotebookPage& page_info = m_tabs.GetPage(page_idx); | |
2102 | page_info.caption = text; | |
4444d148 | 2103 | |
cd05bf23 BW |
2104 | // update what's on screen |
2105 | wxAuiTabCtrl* ctrl; | |
2106 | int ctrl_idx; | |
2107 | if (FindTab(page_info.window, &ctrl, &ctrl_idx)) | |
2108 | { | |
2109 | wxAuiNotebookPage& info = ctrl->GetPage(ctrl_idx); | |
2110 | info.caption = text; | |
2111 | ctrl->Refresh(); | |
639a4f7b | 2112 | ctrl->Update(); |
cd05bf23 | 2113 | } |
4444d148 | 2114 | |
cd05bf23 BW |
2115 | return true; |
2116 | } | |
2117 | ||
c3e016e4 JS |
2118 | // returns the page caption |
2119 | wxString wxAuiNotebook::GetPageText(size_t page_idx) const | |
2120 | { | |
2121 | if (page_idx >= m_tabs.GetPageCount()) | |
2122 | return wxEmptyString; | |
2123 | ||
2124 | // update our own tab catalog | |
2125 | const wxAuiNotebookPage& page_info = m_tabs.GetPage(page_idx); | |
2126 | return page_info.caption; | |
2127 | } | |
e0dc13d4 BW |
2128 | |
2129 | bool wxAuiNotebook::SetPageBitmap(size_t page_idx, const wxBitmap& bitmap) | |
2130 | { | |
2131 | if (page_idx >= m_tabs.GetPageCount()) | |
2132 | return false; | |
7baac3cb | 2133 | |
e0dc13d4 BW |
2134 | // update our own tab catalog |
2135 | wxAuiNotebookPage& page_info = m_tabs.GetPage(page_idx); | |
2136 | page_info.bitmap = bitmap; | |
7baac3cb | 2137 | |
e0dc13d4 | 2138 | // tab height might have changed |
ca0d4407 | 2139 | UpdateTabCtrlHeight(); |
7baac3cb | 2140 | |
e0dc13d4 BW |
2141 | // update what's on screen |
2142 | wxAuiTabCtrl* ctrl; | |
2143 | int ctrl_idx; | |
2144 | if (FindTab(page_info.window, &ctrl, &ctrl_idx)) | |
2145 | { | |
2146 | wxAuiNotebookPage& info = ctrl->GetPage(ctrl_idx); | |
2147 | info.bitmap = bitmap; | |
2148 | ctrl->Refresh(); | |
2149 | ctrl->Update(); | |
2150 | } | |
7baac3cb | 2151 | |
e0dc13d4 BW |
2152 | return true; |
2153 | } | |
2154 | ||
c3e016e4 JS |
2155 | // returns the page bitmap |
2156 | wxBitmap wxAuiNotebook::GetPageBitmap(size_t page_idx) const | |
2157 | { | |
2158 | if (page_idx >= m_tabs.GetPageCount()) | |
2159 | return wxBitmap(); | |
2160 | ||
2161 | // update our own tab catalog | |
2162 | const wxAuiNotebookPage& page_info = m_tabs.GetPage(page_idx); | |
2163 | return page_info.bitmap; | |
2164 | } | |
e0dc13d4 | 2165 | |
cd05bf23 | 2166 | // GetSelection() returns the index of the currently active page |
a3a5df9d | 2167 | int wxAuiNotebook::GetSelection() const |
cd05bf23 | 2168 | { |
9a29fe70 | 2169 | return m_curPage; |
cd05bf23 BW |
2170 | } |
2171 | ||
2172 | // SetSelection() sets the currently active page | |
873ff54b | 2173 | int wxAuiNotebook::SetSelection(size_t new_page) |
cd05bf23 | 2174 | { |
873ff54b | 2175 | return DoModifySelection(new_page, true); |
cd05bf23 BW |
2176 | } |
2177 | ||
849c353a VZ |
2178 | void wxAuiNotebook::SetSelectionToWindow(wxWindow *win) |
2179 | { | |
2180 | const int idx = m_tabs.GetIdxFromWindow(win); | |
9a83f860 | 2181 | wxCHECK_RET( idx != wxNOT_FOUND, wxT("invalid notebook page") ); |
849c353a | 2182 | |
ea34484c BW |
2183 | |
2184 | // since a tab was clicked, let the parent know that we received | |
2185 | // the focus, even if we will assign that focus immediately | |
2186 | // to the child tab in the SetSelection call below | |
2187 | // (the child focus event will also let wxAuiManager, if any, | |
2188 | // know that the notebook control has been activated) | |
03647350 | 2189 | |
ea34484c BW |
2190 | wxWindow* parent = GetParent(); |
2191 | if (parent) | |
2192 | { | |
2193 | wxChildFocusEvent eventFocus(this); | |
2194 | parent->GetEventHandler()->ProcessEvent(eventFocus); | |
2195 | } | |
2196 | ||
2197 | ||
849c353a VZ |
2198 | SetSelection(idx); |
2199 | } | |
2200 | ||
cd05bf23 BW |
2201 | // GetPageCount() returns the total number of |
2202 | // pages managed by the multi-notebook | |
a3a5df9d | 2203 | size_t wxAuiNotebook::GetPageCount() const |
cd05bf23 BW |
2204 | { |
2205 | return m_tabs.GetPageCount(); | |
2206 | } | |
2207 | ||
2208 | // GetPage() returns the wxWindow pointer of the | |
2209 | // specified page | |
a3a5df9d | 2210 | wxWindow* wxAuiNotebook::GetPage(size_t page_idx) const |
cd05bf23 BW |
2211 | { |
2212 | wxASSERT(page_idx < m_tabs.GetPageCount()); | |
4444d148 | 2213 | |
cd05bf23 BW |
2214 | return m_tabs.GetWindowFromIdx(page_idx); |
2215 | } | |
2216 | ||
2217 | // DoSizing() performs all sizing operations in each tab control | |
a3a5df9d | 2218 | void wxAuiNotebook::DoSizing() |
cd05bf23 | 2219 | { |
a3a5df9d | 2220 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2221 | size_t i, pane_count = all_panes.GetCount(); |
2222 | for (i = 0; i < pane_count; ++i) | |
2223 | { | |
2224 | if (all_panes.Item(i).name == wxT("dummy")) | |
2225 | continue; | |
2226 | ||
2227 | wxTabFrame* tabframe = (wxTabFrame*)all_panes.Item(i).window; | |
2228 | tabframe->DoSizing(); | |
2229 | } | |
2230 | } | |
2231 | ||
2232 | // GetActiveTabCtrl() returns the active tab control. It is | |
2233 | // called to determine which control gets new windows being added | |
a3a5df9d | 2234 | wxAuiTabCtrl* wxAuiNotebook::GetActiveTabCtrl() |
cd05bf23 | 2235 | { |
9a29fe70 | 2236 | if (m_curPage >= 0 && m_curPage < (int)m_tabs.GetPageCount()) |
cd05bf23 BW |
2237 | { |
2238 | wxAuiTabCtrl* ctrl; | |
2239 | int idx; | |
4444d148 | 2240 | |
cd05bf23 | 2241 | // find the tab ctrl with the current page |
9a29fe70 | 2242 | if (FindTab(m_tabs.GetPage(m_curPage).window, |
cd05bf23 | 2243 | &ctrl, &idx)) |
4444d148 | 2244 | { |
cd05bf23 BW |
2245 | return ctrl; |
2246 | } | |
2247 | } | |
4444d148 | 2248 | |
cd05bf23 | 2249 | // no current page, just find the first tab ctrl |
a3a5df9d | 2250 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2251 | size_t i, pane_count = all_panes.GetCount(); |
2252 | for (i = 0; i < pane_count; ++i) | |
2253 | { | |
2254 | if (all_panes.Item(i).name == wxT("dummy")) | |
2255 | continue; | |
4444d148 | 2256 | |
cd05bf23 BW |
2257 | wxTabFrame* tabframe = (wxTabFrame*)all_panes.Item(i).window; |
2258 | return tabframe->m_tabs; | |
2259 | } | |
4444d148 | 2260 | |
cd05bf23 BW |
2261 | // If there is no tabframe at all, create one |
2262 | wxTabFrame* tabframe = new wxTabFrame; | |
9a29fe70 | 2263 | tabframe->SetTabCtrlHeight(m_tabCtrlHeight); |
cd05bf23 | 2264 | tabframe->m_tabs = new wxAuiTabCtrl(this, |
9a29fe70 | 2265 | m_tabIdCounter++, |
cd05bf23 BW |
2266 | wxDefaultPosition, |
2267 | wxDefaultSize, | |
a0c2e4a0 | 2268 | wxNO_BORDER|wxWANTS_CHARS); |
702b1c7e | 2269 | tabframe->m_tabs->SetFlags(m_flags); |
b0d17f7c | 2270 | tabframe->m_tabs->SetArtProvider(m_tabs.GetArtProvider()->Clone()); |
cd05bf23 | 2271 | m_mgr.AddPane(tabframe, |
a3a5df9d | 2272 | wxAuiPaneInfo().Center().CaptionVisible(false)); |
4444d148 | 2273 | |
cd05bf23 | 2274 | m_mgr.Update(); |
4444d148 | 2275 | |
cd05bf23 BW |
2276 | return tabframe->m_tabs; |
2277 | } | |
2278 | ||
2279 | // FindTab() finds the tab control that currently contains the window as well | |
2280 | // as the index of the window in the tab control. It returns true if the | |
2281 | // window was found, otherwise false. | |
a3a5df9d | 2282 | bool wxAuiNotebook::FindTab(wxWindow* page, wxAuiTabCtrl** ctrl, int* idx) |
cd05bf23 | 2283 | { |
a3a5df9d | 2284 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2285 | size_t i, pane_count = all_panes.GetCount(); |
2286 | for (i = 0; i < pane_count; ++i) | |
2287 | { | |
2288 | if (all_panes.Item(i).name == wxT("dummy")) | |
2289 | continue; | |
4444d148 | 2290 | |
cd05bf23 | 2291 | wxTabFrame* tabframe = (wxTabFrame*)all_panes.Item(i).window; |
4444d148 | 2292 | |
cd05bf23 BW |
2293 | int page_idx = tabframe->m_tabs->GetIdxFromWindow(page); |
2294 | if (page_idx != -1) | |
2295 | { | |
2296 | *ctrl = tabframe->m_tabs; | |
2297 | *idx = page_idx; | |
2298 | return true; | |
2299 | } | |
2300 | } | |
4444d148 | 2301 | |
cd05bf23 BW |
2302 | return false; |
2303 | } | |
2304 | ||
d606b6e9 BW |
2305 | void wxAuiNotebook::Split(size_t page, int direction) |
2306 | { | |
2307 | wxSize cli_size = GetClientSize(); | |
54a8a78e | 2308 | |
d606b6e9 BW |
2309 | // get the page's window pointer |
2310 | wxWindow* wnd = GetPage(page); | |
2311 | if (!wnd) | |
2312 | return; | |
54a8a78e | 2313 | |
d606b6e9 BW |
2314 | // notebooks with 1 or less pages can't be split |
2315 | if (GetPageCount() < 2) | |
2316 | return; | |
54a8a78e | 2317 | |
d606b6e9 BW |
2318 | // find out which tab control the page currently belongs to |
2319 | wxAuiTabCtrl *src_tabs, *dest_tabs; | |
2320 | int src_idx = -1; | |
2321 | src_tabs = NULL; | |
2322 | if (!FindTab(wnd, &src_tabs, &src_idx)) | |
2323 | return; | |
2324 | if (!src_tabs || src_idx == -1) | |
2325 | return; | |
54a8a78e | 2326 | |
d606b6e9 BW |
2327 | // choose a split size |
2328 | wxSize split_size; | |
2329 | if (GetPageCount() > 2) | |
2330 | { | |
2331 | split_size = CalculateNewSplitSize(); | |
2332 | } | |
cedd7b22 | 2333 | else |
d606b6e9 BW |
2334 | { |
2335 | // because there are two panes, always split them | |
2336 | // equally | |
2337 | split_size = GetClientSize(); | |
2338 | split_size.x /= 2; | |
2339 | split_size.y /= 2; | |
2340 | } | |
54a8a78e VZ |
2341 | |
2342 | ||
d606b6e9 BW |
2343 | // create a new tab frame |
2344 | wxTabFrame* new_tabs = new wxTabFrame; | |
2345 | new_tabs->m_rect = wxRect(wxPoint(0,0), split_size); | |
9a29fe70 | 2346 | new_tabs->SetTabCtrlHeight(m_tabCtrlHeight); |
d606b6e9 | 2347 | new_tabs->m_tabs = new wxAuiTabCtrl(this, |
9a29fe70 | 2348 | m_tabIdCounter++, |
d606b6e9 BW |
2349 | wxDefaultPosition, |
2350 | wxDefaultSize, | |
a0c2e4a0 | 2351 | wxNO_BORDER|wxWANTS_CHARS); |
d606b6e9 BW |
2352 | new_tabs->m_tabs->SetArtProvider(m_tabs.GetArtProvider()->Clone()); |
2353 | new_tabs->m_tabs->SetFlags(m_flags); | |
2354 | dest_tabs = new_tabs->m_tabs; | |
2355 | ||
2356 | // create a pane info structure with the information | |
2357 | // about where the pane should be added | |
9a29fe70 | 2358 | wxAuiPaneInfo paneInfo = wxAuiPaneInfo().Bottom().CaptionVisible(false); |
d606b6e9 | 2359 | wxPoint mouse_pt; |
54a8a78e | 2360 | |
d606b6e9 BW |
2361 | if (direction == wxLEFT) |
2362 | { | |
9a29fe70 | 2363 | paneInfo.Left(); |
d606b6e9 BW |
2364 | mouse_pt = wxPoint(0, cli_size.y/2); |
2365 | } | |
cedd7b22 | 2366 | else if (direction == wxRIGHT) |
d606b6e9 | 2367 | { |
9a29fe70 | 2368 | paneInfo.Right(); |
d606b6e9 BW |
2369 | mouse_pt = wxPoint(cli_size.x, cli_size.y/2); |
2370 | } | |
cedd7b22 | 2371 | else if (direction == wxTOP) |
d606b6e9 | 2372 | { |
9a29fe70 | 2373 | paneInfo.Top(); |
d606b6e9 BW |
2374 | mouse_pt = wxPoint(cli_size.x/2, 0); |
2375 | } | |
cedd7b22 | 2376 | else if (direction == wxBOTTOM) |
d606b6e9 | 2377 | { |
9a29fe70 | 2378 | paneInfo.Bottom(); |
d606b6e9 BW |
2379 | mouse_pt = wxPoint(cli_size.x/2, cli_size.y); |
2380 | } | |
54a8a78e | 2381 | |
9a29fe70 | 2382 | m_mgr.AddPane(new_tabs, paneInfo, mouse_pt); |
d606b6e9 | 2383 | m_mgr.Update(); |
54a8a78e | 2384 | |
d606b6e9 BW |
2385 | // remove the page from the source tabs |
2386 | wxAuiNotebookPage page_info = src_tabs->GetPage(src_idx); | |
2387 | page_info.active = false; | |
2388 | src_tabs->RemovePage(page_info.window); | |
2389 | if (src_tabs->GetPageCount() > 0) | |
2390 | { | |
2391 | src_tabs->SetActivePage((size_t)0); | |
2392 | src_tabs->DoShowHide(); | |
2393 | src_tabs->Refresh(); | |
2394 | } | |
2395 | ||
2396 | ||
2397 | // add the page to the destination tabs | |
2398 | dest_tabs->InsertPage(page_info.window, page_info, 0); | |
2399 | ||
2400 | if (src_tabs->GetPageCount() == 0) | |
2401 | { | |
2402 | RemoveEmptyTabFrames(); | |
2403 | } | |
2404 | ||
2405 | DoSizing(); | |
2406 | dest_tabs->DoShowHide(); | |
2407 | dest_tabs->Refresh(); | |
2408 | ||
2409 | // force the set selection function reset the selection | |
9a29fe70 | 2410 | m_curPage = -1; |
54a8a78e | 2411 | |
d606b6e9 | 2412 | // set the active page to the one we just split off |
849c353a | 2413 | SetSelectionToPage(page_info); |
54a8a78e | 2414 | |
d606b6e9 BW |
2415 | UpdateHintWindowSize(); |
2416 | } | |
2417 | ||
2418 | ||
9fbb7d80 | 2419 | void wxAuiNotebook::OnSize(wxSizeEvent& evt) |
cd05bf23 | 2420 | { |
9fbb7d80 | 2421 | UpdateHintWindowSize(); |
c58ba15f | 2422 | |
9fbb7d80 | 2423 | evt.Skip(); |
cd05bf23 BW |
2424 | } |
2425 | ||
3c778901 | 2426 | void wxAuiNotebook::OnTabClicked(wxAuiNotebookEvent& evt) |
cd05bf23 | 2427 | { |
cd05bf23 BW |
2428 | wxAuiTabCtrl* ctrl = (wxAuiTabCtrl*)evt.GetEventObject(); |
2429 | wxASSERT(ctrl != NULL); | |
4444d148 | 2430 | |
cd05bf23 BW |
2431 | wxWindow* wnd = ctrl->GetWindowFromIdx(evt.GetSelection()); |
2432 | wxASSERT(wnd != NULL); | |
4444d148 | 2433 | |
849c353a | 2434 | SetSelectionToWindow(wnd); |
cd05bf23 BW |
2435 | } |
2436 | ||
3c778901 | 2437 | void wxAuiNotebook::OnTabBgDClick(wxAuiNotebookEvent& WXUNUSED(evt)) |
198be845 JS |
2438 | { |
2439 | // notify owner that the tabbar background has been double-clicked | |
2440 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_BG_DCLICK, m_windowId); | |
2441 | e.SetEventObject(this); | |
2442 | GetEventHandler()->ProcessEvent(e); | |
2443 | } | |
2444 | ||
3c778901 | 2445 | void wxAuiNotebook::OnTabBeginDrag(wxAuiNotebookEvent&) |
cd05bf23 | 2446 | { |
9a29fe70 | 2447 | m_lastDragX = 0; |
cd05bf23 BW |
2448 | } |
2449 | ||
3c778901 | 2450 | void wxAuiNotebook::OnTabDragMotion(wxAuiNotebookEvent& evt) |
cd05bf23 BW |
2451 | { |
2452 | wxPoint screen_pt = ::wxGetMousePosition(); | |
2453 | wxPoint client_pt = ScreenToClient(screen_pt); | |
2454 | wxPoint zero(0,0); | |
4444d148 | 2455 | |
cd05bf23 | 2456 | wxAuiTabCtrl* src_tabs = (wxAuiTabCtrl*)evt.GetEventObject(); |
08c068a4 | 2457 | wxAuiTabCtrl* dest_tabs = GetTabCtrlFromPoint(client_pt); |
7baac3cb | 2458 | |
08c068a4 | 2459 | if (dest_tabs == src_tabs) |
cd05bf23 | 2460 | { |
3941df70 BW |
2461 | if (src_tabs) |
2462 | { | |
2463 | src_tabs->SetCursor(wxCursor(wxCURSOR_ARROW)); | |
2464 | } | |
7baac3cb | 2465 | |
08c068a4 | 2466 | // always hide the hint for inner-tabctrl drag |
cd05bf23 | 2467 | m_mgr.HideHint(); |
7baac3cb | 2468 | |
695c0088 BW |
2469 | // if tab moving is not allowed, leave |
2470 | if (!(m_flags & wxAUI_NB_TAB_MOVE)) | |
2471 | { | |
2472 | return; | |
2473 | } | |
7baac3cb | 2474 | |
08c068a4 BW |
2475 | wxPoint pt = dest_tabs->ScreenToClient(screen_pt); |
2476 | wxWindow* dest_location_tab; | |
7baac3cb | 2477 | |
08c068a4 BW |
2478 | // this is an inner-tab drag/reposition |
2479 | if (dest_tabs->TabHitTest(pt.x, pt.y, &dest_location_tab)) | |
2480 | { | |
2481 | int src_idx = evt.GetSelection(); | |
2482 | int dest_idx = dest_tabs->GetIdxFromWindow(dest_location_tab); | |
7baac3cb | 2483 | |
08c068a4 BW |
2484 | // prevent jumpy drag |
2485 | if ((src_idx == dest_idx) || dest_idx == -1 || | |
9a29fe70 VZ |
2486 | (src_idx > dest_idx && m_lastDragX <= pt.x) || |
2487 | (src_idx < dest_idx && m_lastDragX >= pt.x)) | |
08c068a4 | 2488 | { |
9a29fe70 | 2489 | m_lastDragX = pt.x; |
08c068a4 BW |
2490 | return; |
2491 | } | |
2492 | ||
2493 | ||
2494 | wxWindow* src_tab = dest_tabs->GetWindowFromIdx(src_idx); | |
2495 | dest_tabs->MovePage(src_tab, dest_idx); | |
2496 | dest_tabs->SetActivePage((size_t)dest_idx); | |
2497 | dest_tabs->DoShowHide(); | |
2498 | dest_tabs->Refresh(); | |
9a29fe70 | 2499 | m_lastDragX = pt.x; |
08c068a4 BW |
2500 | |
2501 | } | |
7baac3cb | 2502 | |
cd05bf23 BW |
2503 | return; |
2504 | } | |
4444d148 | 2505 | |
695c0088 | 2506 | |
5d3aeb0f BW |
2507 | // if external drag is allowed, check if the tab is being dragged |
2508 | // over a different wxAuiNotebook control | |
2509 | if (m_flags & wxAUI_NB_TAB_EXTERNAL_MOVE) | |
2510 | { | |
2511 | wxWindow* tab_ctrl = ::wxFindWindowAtPoint(screen_pt); | |
7baac3cb | 2512 | |
87e5fe69 BW |
2513 | // if we aren't over any window, stop here |
2514 | if (!tab_ctrl) | |
2515 | return; | |
7baac3cb | 2516 | |
13d0b605 | 2517 | // make sure we are not over the hint window |
87e5fe69 | 2518 | if (!tab_ctrl->IsKindOf(CLASSINFO(wxFrame))) |
5d3aeb0f | 2519 | { |
13d0b605 | 2520 | while (tab_ctrl) |
5d3aeb0f | 2521 | { |
13d0b605 BW |
2522 | if (tab_ctrl->IsKindOf(CLASSINFO(wxAuiTabCtrl))) |
2523 | break; | |
2524 | tab_ctrl = tab_ctrl->GetParent(); | |
5d3aeb0f | 2525 | } |
7baac3cb | 2526 | |
13d0b605 BW |
2527 | if (tab_ctrl) |
2528 | { | |
2529 | wxAuiNotebook* nb = (wxAuiNotebook*)tab_ctrl->GetParent(); | |
7baac3cb | 2530 | |
13d0b605 BW |
2531 | if (nb != this) |
2532 | { | |
87e5fe69 | 2533 | wxRect hint_rect = tab_ctrl->GetClientRect(); |
13d0b605 BW |
2534 | tab_ctrl->ClientToScreen(&hint_rect.x, &hint_rect.y); |
2535 | m_mgr.ShowHint(hint_rect); | |
2536 | return; | |
2537 | } | |
87e5fe69 BW |
2538 | } |
2539 | } | |
cedd7b22 | 2540 | else |
87e5fe69 BW |
2541 | { |
2542 | if (!dest_tabs) | |
2543 | { | |
2544 | // we are either over a hint window, or not over a tab | |
2545 | // window, and there is no where to drag to, so exit | |
2546 | return; | |
13d0b605 | 2547 | } |
5d3aeb0f BW |
2548 | } |
2549 | } | |
2550 | ||
2551 | ||
69685ee0 BW |
2552 | // if there are less than two panes, split can't happen, so leave |
2553 | if (m_tabs.GetPageCount() < 2) | |
2554 | return; | |
7baac3cb | 2555 | |
695c0088 BW |
2556 | // if tab moving is not allowed, leave |
2557 | if (!(m_flags & wxAUI_NB_TAB_SPLIT)) | |
695c0088 | 2558 | return; |
695c0088 | 2559 | |
3941df70 BW |
2560 | |
2561 | if (src_tabs) | |
2562 | { | |
2563 | src_tabs->SetCursor(wxCursor(wxCURSOR_SIZING)); | |
2564 | } | |
7baac3cb VZ |
2565 | |
2566 | ||
08c068a4 | 2567 | if (dest_tabs) |
cd05bf23 | 2568 | { |
08c068a4 | 2569 | wxRect hint_rect = dest_tabs->GetRect(); |
cd05bf23 BW |
2570 | ClientToScreen(&hint_rect.x, &hint_rect.y); |
2571 | m_mgr.ShowHint(hint_rect); | |
2572 | } | |
cedd7b22 | 2573 | else |
cd05bf23 | 2574 | { |
9a29fe70 | 2575 | m_mgr.DrawHintRect(m_dummyWnd, client_pt, zero); |
cd05bf23 BW |
2576 | } |
2577 | } | |
2578 | ||
2579 | ||
2580 | ||
3c778901 | 2581 | void wxAuiNotebook::OnTabEndDrag(wxAuiNotebookEvent& evt) |
cd05bf23 | 2582 | { |
cd05bf23 | 2583 | m_mgr.HideHint(); |
4444d148 | 2584 | |
7baac3cb | 2585 | |
3941df70 | 2586 | wxAuiTabCtrl* src_tabs = (wxAuiTabCtrl*)evt.GetEventObject(); |
9a83f860 | 2587 | wxCHECK_RET( src_tabs, wxT("no source object?") ); |
54a8a78e VZ |
2588 | |
2589 | src_tabs->SetCursor(wxCursor(wxCURSOR_ARROW)); | |
7baac3cb | 2590 | |
cd05bf23 BW |
2591 | // get the mouse position, which will be used to determine the drop point |
2592 | wxPoint mouse_screen_pt = ::wxGetMousePosition(); | |
2593 | wxPoint mouse_client_pt = ScreenToClient(mouse_screen_pt); | |
2594 | ||
2595 | ||
4444d148 | 2596 | |
5d3aeb0f BW |
2597 | // check for an external move |
2598 | if (m_flags & wxAUI_NB_TAB_EXTERNAL_MOVE) | |
cd05bf23 | 2599 | { |
5d3aeb0f | 2600 | wxWindow* tab_ctrl = ::wxFindWindowAtPoint(mouse_screen_pt); |
7baac3cb | 2601 | |
5d3aeb0f | 2602 | while (tab_ctrl) |
c69532f7 | 2603 | { |
5d3aeb0f BW |
2604 | if (tab_ctrl->IsKindOf(CLASSINFO(wxAuiTabCtrl))) |
2605 | break; | |
2606 | tab_ctrl = tab_ctrl->GetParent(); | |
c69532f7 | 2607 | } |
7baac3cb | 2608 | |
5d3aeb0f BW |
2609 | if (tab_ctrl) |
2610 | { | |
2611 | wxAuiNotebook* nb = (wxAuiNotebook*)tab_ctrl->GetParent(); | |
7baac3cb | 2612 | |
5d3aeb0f BW |
2613 | if (nb != this) |
2614 | { | |
2615 | // find out from the destination control | |
2616 | // if it's ok to drop this tab here | |
2617 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND, m_windowId); | |
2618 | e.SetSelection(evt.GetSelection()); | |
2619 | e.SetOldSelection(evt.GetSelection()); | |
2620 | e.SetEventObject(this); | |
2621 | e.SetDragSource(this); | |
2622 | e.Veto(); // dropping must be explicitly approved by control owner | |
7baac3cb | 2623 | |
5d3aeb0f | 2624 | nb->GetEventHandler()->ProcessEvent(e); |
7baac3cb | 2625 | |
5d3aeb0f BW |
2626 | if (!e.IsAllowed()) |
2627 | { | |
2628 | // no answer or negative answer | |
2629 | m_mgr.HideHint(); | |
2630 | return; | |
2631 | } | |
7baac3cb | 2632 | |
5d3aeb0f BW |
2633 | // drop was allowed |
2634 | int src_idx = evt.GetSelection(); | |
2635 | wxWindow* src_page = src_tabs->GetWindowFromIdx(src_idx); | |
7baac3cb | 2636 | |
884a369a JS |
2637 | // Check that it's not an impossible parent relationship |
2638 | wxWindow* p = nb; | |
2639 | while (p && !p->IsTopLevel()) | |
2640 | { | |
2641 | if (p == src_page) | |
2642 | { | |
2643 | return; | |
2644 | } | |
2645 | p = p->GetParent(); | |
2646 | } | |
2647 | ||
5d3aeb0f BW |
2648 | // get main index of the page |
2649 | int main_idx = m_tabs.GetIdxFromWindow(src_page); | |
9a83f860 | 2650 | wxCHECK_RET( main_idx != wxNOT_FOUND, wxT("no source page?") ); |
849c353a | 2651 | |
7baac3cb | 2652 | |
5d3aeb0f | 2653 | // make a copy of the page info |
849c353a | 2654 | wxAuiNotebookPage page_info = m_tabs.GetPage(main_idx); |
7baac3cb | 2655 | |
5d3aeb0f BW |
2656 | // remove the page from the source notebook |
2657 | RemovePage(main_idx); | |
7baac3cb | 2658 | |
5d3aeb0f BW |
2659 | // reparent the page |
2660 | src_page->Reparent(nb); | |
7baac3cb VZ |
2661 | |
2662 | ||
5d3aeb0f BW |
2663 | // found out the insert idx |
2664 | wxAuiTabCtrl* dest_tabs = (wxAuiTabCtrl*)tab_ctrl; | |
2665 | wxPoint pt = dest_tabs->ScreenToClient(mouse_screen_pt); | |
2666 | ||
2667 | wxWindow* target = NULL; | |
2668 | int insert_idx = -1; | |
2669 | dest_tabs->TabHitTest(pt.x, pt.y, &target); | |
2670 | if (target) | |
2671 | { | |
2672 | insert_idx = dest_tabs->GetIdxFromWindow(target); | |
2673 | } | |
702b1c7e | 2674 | |
7baac3cb | 2675 | |
5d3aeb0f BW |
2676 | // add the page to the new notebook |
2677 | if (insert_idx == -1) | |
2678 | insert_idx = dest_tabs->GetPageCount(); | |
2679 | dest_tabs->InsertPage(page_info.window, page_info, insert_idx); | |
2680 | nb->m_tabs.AddPage(page_info.window, page_info); | |
2681 | ||
2682 | nb->DoSizing(); | |
2683 | dest_tabs->DoShowHide(); | |
2684 | dest_tabs->Refresh(); | |
7baac3cb | 2685 | |
5d3aeb0f | 2686 | // set the selection in the destination tab control |
849c353a | 2687 | nb->SetSelectionToPage(page_info); |
5d3aeb0f | 2688 | |
d92f353c JS |
2689 | // notify owner that the tab has been dragged |
2690 | wxAuiNotebookEvent e2(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, m_windowId); | |
2691 | e2.SetSelection(evt.GetSelection()); | |
2692 | e2.SetOldSelection(evt.GetSelection()); | |
2693 | e2.SetEventObject(this); | |
2694 | GetEventHandler()->ProcessEvent(e2); | |
2695 | ||
5d3aeb0f BW |
2696 | return; |
2697 | } | |
2698 | } | |
cd05bf23 | 2699 | } |
4444d148 WS |
2700 | |
2701 | ||
2702 | ||
5d3aeb0f BW |
2703 | |
2704 | // only perform a tab split if it's allowed | |
54a8a78e VZ |
2705 | wxAuiTabCtrl* dest_tabs = NULL; |
2706 | ||
69685ee0 | 2707 | if ((m_flags & wxAUI_NB_TAB_SPLIT) && m_tabs.GetPageCount() >= 2) |
cd05bf23 | 2708 | { |
5d3aeb0f BW |
2709 | // If the pointer is in an existing tab frame, do a tab insert |
2710 | wxWindow* hit_wnd = ::wxFindWindowAtPoint(mouse_screen_pt); | |
2711 | wxTabFrame* tab_frame = (wxTabFrame*)GetTabFrameFromTabCtrl(hit_wnd); | |
2712 | int insert_idx = -1; | |
2713 | if (tab_frame) | |
2714 | { | |
2715 | dest_tabs = tab_frame->m_tabs; | |
cd05bf23 | 2716 | |
5d3aeb0f BW |
2717 | if (dest_tabs == src_tabs) |
2718 | return; | |
7baac3cb VZ |
2719 | |
2720 | ||
5d3aeb0f BW |
2721 | wxPoint pt = dest_tabs->ScreenToClient(mouse_screen_pt); |
2722 | wxWindow* target = NULL; | |
2723 | dest_tabs->TabHitTest(pt.x, pt.y, &target); | |
2724 | if (target) | |
2725 | { | |
2726 | insert_idx = dest_tabs->GetIdxFromWindow(target); | |
2727 | } | |
2728 | } | |
54a8a78e | 2729 | else |
5d3aeb0f | 2730 | { |
ce15b45f | 2731 | wxPoint zero(0,0); |
9a29fe70 | 2732 | wxRect rect = m_mgr.CalculateHintRect(m_dummyWnd, |
ce15b45f BW |
2733 | mouse_client_pt, |
2734 | zero); | |
2735 | if (rect.IsEmpty()) | |
2736 | { | |
2737 | // there is no suitable drop location here, exit out | |
2738 | return; | |
2739 | } | |
7baac3cb | 2740 | |
5d3aeb0f BW |
2741 | // If there is no tabframe at all, create one |
2742 | wxTabFrame* new_tabs = new wxTabFrame; | |
9fbb7d80 | 2743 | new_tabs->m_rect = wxRect(wxPoint(0,0), CalculateNewSplitSize()); |
9a29fe70 | 2744 | new_tabs->SetTabCtrlHeight(m_tabCtrlHeight); |
5d3aeb0f | 2745 | new_tabs->m_tabs = new wxAuiTabCtrl(this, |
9a29fe70 | 2746 | m_tabIdCounter++, |
5d3aeb0f BW |
2747 | wxDefaultPosition, |
2748 | wxDefaultSize, | |
a0c2e4a0 | 2749 | wxNO_BORDER|wxWANTS_CHARS); |
b0d17f7c | 2750 | new_tabs->m_tabs->SetArtProvider(m_tabs.GetArtProvider()->Clone()); |
5d3aeb0f BW |
2751 | new_tabs->m_tabs->SetFlags(m_flags); |
2752 | ||
2753 | m_mgr.AddPane(new_tabs, | |
2754 | wxAuiPaneInfo().Bottom().CaptionVisible(false), | |
2755 | mouse_client_pt); | |
2756 | m_mgr.Update(); | |
2757 | dest_tabs = new_tabs->m_tabs; | |
2758 | } | |
4444d148 WS |
2759 | |
2760 | ||
4444d148 | 2761 | |
5d3aeb0f BW |
2762 | // remove the page from the source tabs |
2763 | wxAuiNotebookPage page_info = src_tabs->GetPage(evt.GetSelection()); | |
2764 | page_info.active = false; | |
2765 | src_tabs->RemovePage(page_info.window); | |
2766 | if (src_tabs->GetPageCount() > 0) | |
2767 | { | |
2768 | src_tabs->SetActivePage((size_t)0); | |
2769 | src_tabs->DoShowHide(); | |
2770 | src_tabs->Refresh(); | |
2771 | } | |
4444d148 | 2772 | |
cd05bf23 | 2773 | |
5d3aeb0f BW |
2774 | |
2775 | // add the page to the destination tabs | |
2776 | if (insert_idx == -1) | |
2777 | insert_idx = dest_tabs->GetPageCount(); | |
2778 | dest_tabs->InsertPage(page_info.window, page_info, insert_idx); | |
2779 | ||
2780 | if (src_tabs->GetPageCount() == 0) | |
2781 | { | |
2782 | RemoveEmptyTabFrames(); | |
2783 | } | |
2784 | ||
2785 | DoSizing(); | |
2786 | dest_tabs->DoShowHide(); | |
2787 | dest_tabs->Refresh(); | |
2788 | ||
68fd4f2c | 2789 | // force the set selection function reset the selection |
9a29fe70 | 2790 | m_curPage = -1; |
c58ba15f | 2791 | |
68fd4f2c | 2792 | // set the active page to the one we just split off |
849c353a | 2793 | SetSelectionToPage(page_info); |
c58ba15f | 2794 | |
9fbb7d80 | 2795 | UpdateHintWindowSize(); |
5d3aeb0f | 2796 | } |
d92f353c JS |
2797 | |
2798 | // notify owner that the tab has been dragged | |
2799 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_DRAG_DONE, m_windowId); | |
2800 | e.SetSelection(evt.GetSelection()); | |
2801 | e.SetOldSelection(evt.GetSelection()); | |
2802 | e.SetEventObject(this); | |
2803 | GetEventHandler()->ProcessEvent(e); | |
cd05bf23 BW |
2804 | } |
2805 | ||
3941df70 BW |
2806 | |
2807 | ||
2bd82d72 VZ |
2808 | void wxAuiNotebook::OnTabCancelDrag(wxAuiNotebookEvent& command_evt) |
2809 | { | |
2810 | wxAuiNotebookEvent& evt = (wxAuiNotebookEvent&)command_evt; | |
2811 | ||
2812 | m_mgr.HideHint(); | |
2813 | ||
2814 | wxAuiTabCtrl* src_tabs = (wxAuiTabCtrl*)evt.GetEventObject(); | |
2e92ad1b | 2815 | wxCHECK_RET( src_tabs, wxT("no source object?") ); |
2bd82d72 VZ |
2816 | |
2817 | src_tabs->SetCursor(wxCursor(wxCURSOR_ARROW)); | |
2818 | } | |
2819 | ||
a3a5df9d | 2820 | wxAuiTabCtrl* wxAuiNotebook::GetTabCtrlFromPoint(const wxPoint& pt) |
cd05bf23 BW |
2821 | { |
2822 | // if we've just removed the last tab from the source | |
2823 | // tab set, the remove the tab control completely | |
a3a5df9d | 2824 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2825 | size_t i, pane_count = all_panes.GetCount(); |
2826 | for (i = 0; i < pane_count; ++i) | |
2827 | { | |
2828 | if (all_panes.Item(i).name == wxT("dummy")) | |
2829 | continue; | |
4444d148 | 2830 | |
cd05bf23 | 2831 | wxTabFrame* tabframe = (wxTabFrame*)all_panes.Item(i).window; |
22a35096 | 2832 | if (tabframe->m_tab_rect.Contains(pt)) |
cd05bf23 BW |
2833 | return tabframe->m_tabs; |
2834 | } | |
4444d148 | 2835 | |
cd05bf23 BW |
2836 | return NULL; |
2837 | } | |
2838 | ||
a3a5df9d | 2839 | wxWindow* wxAuiNotebook::GetTabFrameFromTabCtrl(wxWindow* tab_ctrl) |
cd05bf23 BW |
2840 | { |
2841 | // if we've just removed the last tab from the source | |
2842 | // tab set, the remove the tab control completely | |
a3a5df9d | 2843 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2844 | size_t i, pane_count = all_panes.GetCount(); |
2845 | for (i = 0; i < pane_count; ++i) | |
2846 | { | |
2847 | if (all_panes.Item(i).name == wxT("dummy")) | |
2848 | continue; | |
4444d148 | 2849 | |
cd05bf23 BW |
2850 | wxTabFrame* tabframe = (wxTabFrame*)all_panes.Item(i).window; |
2851 | if (tabframe->m_tabs == tab_ctrl) | |
2852 | { | |
2853 | return tabframe; | |
2854 | } | |
2855 | } | |
4444d148 | 2856 | |
cd05bf23 BW |
2857 | return NULL; |
2858 | } | |
2859 | ||
a3a5df9d | 2860 | void wxAuiNotebook::RemoveEmptyTabFrames() |
cd05bf23 | 2861 | { |
cd05bf23 BW |
2862 | // if we've just removed the last tab from the source |
2863 | // tab set, the remove the tab control completely | |
a3a5df9d | 2864 | wxAuiPaneInfoArray all_panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2865 | size_t i, pane_count = all_panes.GetCount(); |
2866 | for (i = 0; i < pane_count; ++i) | |
2867 | { | |
2868 | if (all_panes.Item(i).name == wxT("dummy")) | |
2869 | continue; | |
2870 | ||
2871 | wxTabFrame* tab_frame = (wxTabFrame*)all_panes.Item(i).window; | |
2872 | if (tab_frame->m_tabs->GetPageCount() == 0) | |
2873 | { | |
2874 | m_mgr.DetachPane(tab_frame); | |
4444d148 | 2875 | |
cd05bf23 BW |
2876 | // use pending delete because sometimes during |
2877 | // window closing, refreshs are pending | |
2878 | if (!wxPendingDelete.Member(tab_frame->m_tabs)) | |
4444d148 | 2879 | wxPendingDelete.Append(tab_frame->m_tabs); |
cedd7b22 | 2880 | |
13aaa50f | 2881 | tab_frame->m_tabs = NULL; |
4444d148 | 2882 | |
cd05bf23 | 2883 | delete tab_frame; |
cd05bf23 BW |
2884 | } |
2885 | } | |
4444d148 WS |
2886 | |
2887 | ||
cd05bf23 BW |
2888 | // check to see if there is still a center pane; |
2889 | // if there isn't, make a frame the center pane | |
a3a5df9d | 2890 | wxAuiPaneInfoArray panes = m_mgr.GetAllPanes(); |
cd05bf23 BW |
2891 | pane_count = panes.GetCount(); |
2892 | wxWindow* first_good = NULL; | |
2893 | bool center_found = false; | |
2894 | for (i = 0; i < pane_count; ++i) | |
2895 | { | |
2896 | if (panes.Item(i).name == wxT("dummy")) | |
2897 | continue; | |
2898 | if (panes.Item(i).dock_direction == wxAUI_DOCK_CENTRE) | |
2899 | center_found = true; | |
2900 | if (!first_good) | |
2901 | first_good = panes.Item(i).window; | |
2902 | } | |
2903 | ||
2904 | if (!center_found && first_good) | |
2905 | { | |
2906 | m_mgr.GetPane(first_good).Centre(); | |
cd05bf23 BW |
2907 | } |
2908 | ||
18b40f30 JS |
2909 | if (!m_isBeingDeleted) |
2910 | m_mgr.Update(); | |
cd05bf23 BW |
2911 | } |
2912 | ||
5bf3f27f | 2913 | void wxAuiNotebook::OnChildFocusNotebook(wxChildFocusEvent& evt) |
cd05bf23 | 2914 | { |
d4f4657a VZ |
2915 | evt.Skip(); |
2916 | ||
d16619f8 BW |
2917 | // if we're dragging a tab, don't change the current selection. |
2918 | // This code prevents a bug that used to happen when the hint window | |
2919 | // was hidden. In the bug, the focus would return to the notebook | |
2920 | // child, which would then enter this handler and call | |
2921 | // SetSelection, which is not desired turn tab dragging. | |
cedd7b22 | 2922 | |
d16619f8 BW |
2923 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); |
2924 | size_t i, pane_count = all_panes.GetCount(); | |
2925 | for (i = 0; i < pane_count; ++i) | |
2926 | { | |
2927 | wxAuiPaneInfo& pane = all_panes.Item(i); | |
2928 | if (pane.name == wxT("dummy")) | |
2929 | continue; | |
2930 | wxTabFrame* tabframe = (wxTabFrame*)pane.window; | |
2931 | if (tabframe->m_tabs->IsDragging()) | |
2932 | return; | |
2933 | } | |
2934 | ||
2935 | ||
2936 | // change the tab selection to the child | |
2937 | // which was focused | |
cd05bf23 | 2938 | int idx = m_tabs.GetIdxFromWindow(evt.GetWindow()); |
9a29fe70 | 2939 | if (idx != -1 && idx != m_curPage) |
cd05bf23 | 2940 | { |
4444d148 | 2941 | SetSelection(idx); |
cd05bf23 BW |
2942 | } |
2943 | } | |
2944 | ||
5bf3f27f | 2945 | void wxAuiNotebook::OnNavigationKeyNotebook(wxNavigationKeyEvent& event) |
a0c2e4a0 JS |
2946 | { |
2947 | if ( event.IsWindowChange() ) { | |
2948 | // change pages | |
2949 | // FIXME: the problem with this is that if we have a split notebook, | |
2950 | // we selection may go all over the place. | |
2951 | AdvanceSelection(event.GetDirection()); | |
2952 | } | |
2953 | else { | |
2954 | // we get this event in 3 cases | |
2955 | // | |
2956 | // a) one of our pages might have generated it because the user TABbed | |
2957 | // out from it in which case we should propagate the event upwards and | |
2958 | // our parent will take care of setting the focus to prev/next sibling | |
2959 | // | |
2960 | // or | |
2961 | // | |
2962 | // b) the parent panel wants to give the focus to us so that we | |
2963 | // forward it to our selected page. We can't deal with this in | |
2964 | // OnSetFocus() because we don't know which direction the focus came | |
2965 | // from in this case and so can't choose between setting the focus to | |
2966 | // first or last panel child | |
2967 | // | |
2968 | // or | |
2969 | // | |
2970 | // c) we ourselves (see MSWTranslateMessage) generated the event | |
2971 | // | |
2972 | wxWindow * const parent = GetParent(); | |
2973 | ||
2974 | // the wxObject* casts are required to avoid MinGW GCC 2.95.3 ICE | |
2975 | const bool isFromParent = event.GetEventObject() == (wxObject*) parent; | |
2976 | const bool isFromSelf = event.GetEventObject() == (wxObject*) this; | |
2977 | ||
2978 | if ( isFromParent || isFromSelf ) | |
2979 | { | |
2980 | // no, it doesn't come from child, case (b) or (c): forward to a | |
2981 | // page but only if direction is backwards (TAB) or from ourselves, | |
2982 | if ( GetSelection() != wxNOT_FOUND && | |
2983 | (!event.GetDirection() || isFromSelf) ) | |
2984 | { | |
2985 | // so that the page knows that the event comes from it's parent | |
2986 | // and is being propagated downwards | |
2987 | event.SetEventObject(this); | |
2988 | ||
2989 | wxWindow *page = GetPage(GetSelection()); | |
2990 | if ( !page->GetEventHandler()->ProcessEvent(event) ) | |
2991 | { | |
2992 | page->SetFocus(); | |
2993 | } | |
2994 | //else: page manages focus inside it itself | |
2995 | } | |
2996 | else // otherwise set the focus to the notebook itself | |
2997 | { | |
2998 | SetFocus(); | |
2999 | } | |
3000 | } | |
3001 | else | |
3002 | { | |
3003 | // it comes from our child, case (a), pass to the parent, but only | |
3004 | // if the direction is forwards. Otherwise set the focus to the | |
3005 | // notebook itself. The notebook is always the 'first' control of a | |
3006 | // page. | |
3007 | if ( !event.GetDirection() ) | |
3008 | { | |
3009 | SetFocus(); | |
3010 | } | |
3011 | else if ( parent ) | |
3012 | { | |
3013 | event.SetCurrentFocus(this); | |
3014 | parent->GetEventHandler()->ProcessEvent(event); | |
3015 | } | |
3016 | } | |
3017 | } | |
3018 | } | |
cd05bf23 | 3019 | |
3c778901 | 3020 | void wxAuiNotebook::OnTabButton(wxAuiNotebookEvent& evt) |
cd05bf23 | 3021 | { |
cd05bf23 | 3022 | wxAuiTabCtrl* tabs = (wxAuiTabCtrl*)evt.GetEventObject(); |
4444d148 | 3023 | |
cd05bf23 | 3024 | int button_id = evt.GetInt(); |
4444d148 | 3025 | |
4953f8cf | 3026 | if (button_id == wxAUI_BUTTON_CLOSE) |
cd05bf23 | 3027 | { |
9b362935 | 3028 | int selection = evt.GetSelection(); |
4444d148 | 3029 | |
94473fa8 BW |
3030 | if (selection == -1) |
3031 | { | |
3032 | // if the close button is to the right, use the active | |
3033 | // page selection to determine which page to close | |
b27fdc38 | 3034 | selection = tabs->GetActivePage(); |
94473fa8 | 3035 | } |
884a369a | 3036 | |
cd05bf23 BW |
3037 | if (selection != -1) |
3038 | { | |
3039 | wxWindow* close_wnd = tabs->GetWindowFromIdx(selection); | |
4444d148 | 3040 | |
3fd8c988 BW |
3041 | // ask owner if it's ok to close the tab |
3042 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, m_windowId); | |
3043 | e.SetSelection(m_tabs.GetIdxFromWindow(close_wnd)); | |
d92f353c JS |
3044 | const int idx = m_tabs.GetIdxFromWindow(close_wnd); |
3045 | e.SetSelection(idx); | |
3fd8c988 BW |
3046 | e.SetOldSelection(evt.GetSelection()); |
3047 | e.SetEventObject(this); | |
7ebc40e8 | 3048 | GetEventHandler()->ProcessEvent(e); |
3fd8c988 BW |
3049 | if (!e.IsAllowed()) |
3050 | return; | |
3051 | ||
3052 | ||
89272c55 | 3053 | #if wxUSE_MDI |
a3a5df9d | 3054 | if (close_wnd->IsKindOf(CLASSINFO(wxAuiMDIChildFrame))) |
cd05bf23 BW |
3055 | { |
3056 | close_wnd->Close(); | |
3057 | } | |
760fdb67 | 3058 | else |
89272c55 | 3059 | #endif |
cd05bf23 BW |
3060 | { |
3061 | int main_idx = m_tabs.GetIdxFromWindow(close_wnd); | |
9a83f860 | 3062 | wxCHECK_RET( main_idx != wxNOT_FOUND, wxT("no page to delete?") ); |
760fdb67 | 3063 | |
cd05bf23 BW |
3064 | DeletePage(main_idx); |
3065 | } | |
d92f353c JS |
3066 | |
3067 | // notify owner that the tab has been closed | |
3068 | wxAuiNotebookEvent e2(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSED, m_windowId); | |
3069 | e2.SetSelection(idx); | |
3070 | e2.SetEventObject(this); | |
3071 | GetEventHandler()->ProcessEvent(e2); | |
cd05bf23 BW |
3072 | } |
3073 | } | |
3074 | } | |
3075 | ||
69f5e420 | 3076 | |
3c778901 | 3077 | void wxAuiNotebook::OnTabMiddleDown(wxAuiNotebookEvent& evt) |
69f5e420 BW |
3078 | { |
3079 | // patch event through to owner | |
3080 | wxAuiTabCtrl* tabs = (wxAuiTabCtrl*)evt.GetEventObject(); | |
3081 | wxWindow* wnd = tabs->GetWindowFromIdx(evt.GetSelection()); | |
3082 | ||
3083 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_DOWN, m_windowId); | |
3084 | e.SetSelection(m_tabs.GetIdxFromWindow(wnd)); | |
3085 | e.SetEventObject(this); | |
3086 | GetEventHandler()->ProcessEvent(e); | |
3087 | } | |
3088 | ||
3c778901 | 3089 | void wxAuiNotebook::OnTabMiddleUp(wxAuiNotebookEvent& evt) |
69f5e420 BW |
3090 | { |
3091 | // if the wxAUI_NB_MIDDLE_CLICK_CLOSE is specified, middle | |
3092 | // click should act like a tab close action. However, first | |
3093 | // give the owner an opportunity to handle the middle up event | |
3094 | // for custom action | |
cedd7b22 | 3095 | |
69f5e420 BW |
3096 | wxAuiTabCtrl* tabs = (wxAuiTabCtrl*)evt.GetEventObject(); |
3097 | wxWindow* wnd = tabs->GetWindowFromIdx(evt.GetSelection()); | |
3098 | ||
3099 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_MIDDLE_UP, m_windowId); | |
3100 | e.SetSelection(m_tabs.GetIdxFromWindow(wnd)); | |
3101 | e.SetEventObject(this); | |
3102 | if (GetEventHandler()->ProcessEvent(e)) | |
3103 | return; | |
3104 | if (!e.IsAllowed()) | |
3105 | return; | |
cedd7b22 | 3106 | |
69f5e420 BW |
3107 | // check if we are supposed to close on middle-up |
3108 | if ((m_flags & wxAUI_NB_MIDDLE_CLICK_CLOSE) == 0) | |
3109 | return; | |
cedd7b22 | 3110 | |
69f5e420 BW |
3111 | // simulate the user pressing the close button on the tab |
3112 | evt.SetInt(wxAUI_BUTTON_CLOSE); | |
3113 | OnTabButton(evt); | |
3114 | } | |
3115 | ||
3c778901 | 3116 | void wxAuiNotebook::OnTabRightDown(wxAuiNotebookEvent& evt) |
69f5e420 BW |
3117 | { |
3118 | // patch event through to owner | |
3119 | wxAuiTabCtrl* tabs = (wxAuiTabCtrl*)evt.GetEventObject(); | |
3120 | wxWindow* wnd = tabs->GetWindowFromIdx(evt.GetSelection()); | |
3121 | ||
3122 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_DOWN, m_windowId); | |
3123 | e.SetSelection(m_tabs.GetIdxFromWindow(wnd)); | |
3124 | e.SetEventObject(this); | |
3125 | GetEventHandler()->ProcessEvent(e); | |
3126 | } | |
3127 | ||
3c778901 | 3128 | void wxAuiNotebook::OnTabRightUp(wxAuiNotebookEvent& evt) |
69f5e420 BW |
3129 | { |
3130 | // patch event through to owner | |
3131 | wxAuiTabCtrl* tabs = (wxAuiTabCtrl*)evt.GetEventObject(); | |
3132 | wxWindow* wnd = tabs->GetWindowFromIdx(evt.GetSelection()); | |
3133 | ||
3134 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_TAB_RIGHT_UP, m_windowId); | |
3135 | e.SetSelection(m_tabs.GetIdxFromWindow(wnd)); | |
3136 | e.SetEventObject(this); | |
3137 | GetEventHandler()->ProcessEvent(e); | |
3138 | } | |
3139 | ||
fc17828a JS |
3140 | // Sets the normal font |
3141 | void wxAuiNotebook::SetNormalFont(const wxFont& font) | |
3142 | { | |
9a29fe70 | 3143 | m_normalFont = font; |
fc17828a JS |
3144 | GetArtProvider()->SetNormalFont(font); |
3145 | } | |
3146 | ||
3147 | // Sets the selected tab font | |
3148 | void wxAuiNotebook::SetSelectedFont(const wxFont& font) | |
3149 | { | |
9a29fe70 | 3150 | m_selectedFont = font; |
fc17828a JS |
3151 | GetArtProvider()->SetSelectedFont(font); |
3152 | } | |
3153 | ||
3154 | // Sets the measuring font | |
3155 | void wxAuiNotebook::SetMeasuringFont(const wxFont& font) | |
3156 | { | |
3157 | GetArtProvider()->SetMeasuringFont(font); | |
3158 | } | |
3159 | ||
3160 | // Sets the tab font | |
3161 | bool wxAuiNotebook::SetFont(const wxFont& font) | |
3162 | { | |
3163 | wxControl::SetFont(font); | |
cd05bf23 | 3164 | |
fc17828a JS |
3165 | wxFont normalFont(font); |
3166 | wxFont selectedFont(normalFont); | |
3167 | selectedFont.SetWeight(wxBOLD); | |
3168 | ||
3169 | SetNormalFont(normalFont); | |
3170 | SetSelectedFont(selectedFont); | |
3171 | SetMeasuringFont(selectedFont); | |
3172 | ||
3173 | return true; | |
3174 | } | |
3175 | ||
3176 | // Gets the tab control height | |
3177 | int wxAuiNotebook::GetTabCtrlHeight() const | |
3178 | { | |
9a29fe70 | 3179 | return m_tabCtrlHeight; |
fc17828a JS |
3180 | } |
3181 | ||
3182 | // Gets the height of the notebook for a given page height | |
3183 | int wxAuiNotebook::GetHeightForPageHeight(int pageHeight) | |
3184 | { | |
3185 | UpdateTabCtrlHeight(); | |
3186 | ||
3187 | int tabCtrlHeight = GetTabCtrlHeight(); | |
3188 | int decorHeight = 2; | |
3189 | return tabCtrlHeight + pageHeight + decorHeight; | |
3190 | } | |
cd05bf23 | 3191 | |
a0c2e4a0 JS |
3192 | // Advances the selection, generation page selection events |
3193 | void wxAuiNotebook::AdvanceSelection(bool forward) | |
3194 | { | |
3195 | if (GetPageCount() <= 1) | |
3196 | return; | |
3197 | ||
3198 | int currentSelection = GetSelection(); | |
3199 | ||
3200 | if (forward) | |
3201 | { | |
3202 | if (currentSelection == (int) (GetPageCount() - 1)) | |
3203 | return; | |
3204 | else if (currentSelection == -1) | |
3205 | currentSelection = 0; | |
3206 | else | |
3207 | currentSelection ++; | |
3208 | } | |
3209 | else | |
3210 | { | |
3211 | if (currentSelection <= 0) | |
3212 | return; | |
3213 | else | |
3214 | currentSelection --; | |
3215 | } | |
3216 | ||
3217 | SetSelection(currentSelection); | |
3218 | } | |
3219 | ||
3220 | // Shows the window menu | |
3221 | bool wxAuiNotebook::ShowWindowMenu() | |
3222 | { | |
3223 | wxAuiTabCtrl* tabCtrl = GetActiveTabCtrl(); | |
3224 | ||
3225 | int idx = tabCtrl->GetArtProvider()->ShowDropDown(tabCtrl, tabCtrl->GetPages(), tabCtrl->GetActivePage()); | |
3226 | ||
3227 | if (idx != -1) | |
3228 | { | |
3229 | wxAuiNotebookEvent e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, tabCtrl->GetId()); | |
3230 | e.SetSelection(idx); | |
3231 | e.SetOldSelection(tabCtrl->GetActivePage()); | |
3232 | e.SetEventObject(tabCtrl); | |
3233 | GetEventHandler()->ProcessEvent(e); | |
3234 | ||
3235 | return true; | |
3236 | } | |
3237 | else | |
3238 | return false; | |
3239 | } | |
cd05bf23 | 3240 | |
64178c36 JS |
3241 | void wxAuiNotebook::Thaw() |
3242 | { | |
3243 | DoSizing(); | |
3244 | ||
3245 | wxControl::Thaw(); | |
3246 | } | |
3247 | ||
873ff54b SL |
3248 | void wxAuiNotebook::SetPageSize (const wxSize& WXUNUSED(size)) |
3249 | { | |
3250 | wxFAIL_MSG("Not implemented for wxAuiNotebook"); | |
3251 | } | |
3252 | ||
3253 | int wxAuiNotebook::HitTest (const wxPoint& WXUNUSED(pt), long* WXUNUSED(flags)) const | |
3254 | { | |
3255 | wxFAIL_MSG("Not implemented for wxAuiNotebook"); | |
3256 | return wxNOT_FOUND; | |
3257 | } | |
3258 | ||
3259 | int wxAuiNotebook::GetPageImage(size_t WXUNUSED(n)) const | |
3260 | { | |
3261 | wxFAIL_MSG("Not implemented for wxAuiNotebook"); | |
3262 | return -1; | |
3263 | } | |
3264 | ||
3265 | bool wxAuiNotebook::SetPageImage(size_t n, int imageId) | |
3266 | { | |
3267 | return SetPageBitmap(n, GetImageList()->GetBitmap(imageId)); | |
3268 | } | |
3269 | ||
3270 | wxWindow* wxAuiNotebook::GetCurrentPage () const | |
3271 | { | |
b98eb28a VZ |
3272 | const int sel = GetSelection(); |
3273 | ||
3274 | return sel == wxNOT_FOUND ? NULL : GetPage(sel); | |
873ff54b SL |
3275 | } |
3276 | ||
3277 | int wxAuiNotebook::ChangeSelection(size_t n) | |
3278 | { | |
3279 | return DoModifySelection(n, false); | |
3280 | } | |
3281 | ||
3282 | bool wxAuiNotebook::AddPage(wxWindow *page, const wxString &text, bool select, | |
3283 | int imageId) | |
3284 | { | |
3285 | if(HasImageList()) | |
3286 | { | |
3287 | return AddPage(page, text, select, GetImageList()->GetBitmap(imageId)); | |
3288 | } | |
3289 | else | |
3290 | { | |
3291 | return AddPage(page, text, select, wxNullBitmap); | |
3292 | } | |
3293 | } | |
3294 | ||
3295 | bool wxAuiNotebook::DeleteAllPages() | |
3296 | { | |
3297 | size_t count = GetPageCount(); | |
3298 | for(size_t i = 0; i < count; i++) | |
3299 | { | |
3300 | DeletePage(0); | |
3301 | } | |
3302 | return true; | |
3303 | } | |
3304 | ||
3305 | bool wxAuiNotebook::InsertPage(size_t index, wxWindow *page, | |
3306 | const wxString &text, bool select, | |
3307 | int imageId) | |
3308 | { | |
3309 | if(HasImageList()) | |
3310 | { | |
3311 | return InsertPage(index, page, text, select, | |
3312 | GetImageList()->GetBitmap(imageId)); | |
3313 | } | |
3314 | else | |
3315 | { | |
3316 | return InsertPage(index, page, text, select, wxNullBitmap); | |
3317 | } | |
3318 | } | |
3319 | ||
3320 | int wxAuiNotebook::DoModifySelection(size_t n, bool events) | |
3321 | { | |
9a29fe70 | 3322 | wxWindow* wnd = m_tabs.GetWindowFromIdx(n); |
873ff54b | 3323 | if (!wnd) |
9a29fe70 | 3324 | return m_curPage; |
873ff54b SL |
3325 | |
3326 | // don't change the page unless necessary; | |
3327 | // however, clicking again on a tab should give it the focus. | |
9a29fe70 | 3328 | if ((int)n == m_curPage) |
873ff54b SL |
3329 | { |
3330 | wxAuiTabCtrl* ctrl; | |
3331 | int ctrl_idx; | |
3332 | if (FindTab(wnd, &ctrl, &ctrl_idx)) | |
3333 | { | |
3334 | if (FindFocus() != ctrl) | |
3335 | ctrl->SetFocus(); | |
3336 | } | |
9a29fe70 | 3337 | return m_curPage; |
873ff54b SL |
3338 | } |
3339 | ||
3340 | bool vetoed = false; | |
3341 | ||
3342 | wxAuiNotebookEvent evt(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, m_windowId); | |
3343 | ||
3344 | if(events) | |
3345 | { | |
3346 | evt.SetSelection(n); | |
9a29fe70 | 3347 | evt.SetOldSelection(m_curPage); |
873ff54b SL |
3348 | evt.SetEventObject(this); |
3349 | GetEventHandler()->ProcessEvent(evt); | |
3350 | vetoed = !evt.IsAllowed(); | |
3351 | } | |
3352 | ||
3353 | if (!vetoed) | |
3354 | { | |
9a29fe70 VZ |
3355 | int old_curpage = m_curPage; |
3356 | m_curPage = n; | |
873ff54b SL |
3357 | |
3358 | // program allows the page change | |
3359 | if(events) | |
3360 | { | |
3361 | evt.SetEventType(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED); | |
3362 | (void)GetEventHandler()->ProcessEvent(evt); | |
3363 | } | |
3364 | ||
3365 | ||
3366 | wxAuiTabCtrl* ctrl; | |
3367 | int ctrl_idx; | |
3368 | if (FindTab(wnd, &ctrl, &ctrl_idx)) | |
3369 | { | |
3370 | m_tabs.SetActivePage(wnd); | |
3371 | ||
3372 | ctrl->SetActivePage(ctrl_idx); | |
3373 | DoSizing(); | |
3374 | ctrl->DoShowHide(); | |
3375 | ||
3376 | ctrl->MakeTabVisible(ctrl_idx, ctrl); | |
3377 | ||
3378 | // set fonts | |
3379 | wxAuiPaneInfoArray& all_panes = m_mgr.GetAllPanes(); | |
3380 | size_t i, pane_count = all_panes.GetCount(); | |
3381 | for (i = 0; i < pane_count; ++i) | |
3382 | { | |
3383 | wxAuiPaneInfo& pane = all_panes.Item(i); | |
3384 | if (pane.name == wxT("dummy")) | |
3385 | continue; | |
3386 | wxAuiTabCtrl* tabctrl = ((wxTabFrame*)pane.window)->m_tabs; | |
3387 | if (tabctrl != ctrl) | |
9a29fe70 | 3388 | tabctrl->SetSelectedFont(m_normalFont); |
873ff54b | 3389 | else |
9a29fe70 | 3390 | tabctrl->SetSelectedFont(m_selectedFont); |
873ff54b SL |
3391 | tabctrl->Refresh(); |
3392 | } | |
3393 | ||
3394 | // Set the focus to the page if we're not currently focused on the tab. | |
3395 | // This is Firefox-like behaviour. | |
3396 | if (wnd->IsShownOnScreen() && FindFocus() != ctrl) | |
3397 | wnd->SetFocus(); | |
3398 | ||
3399 | return old_curpage; | |
3400 | } | |
3401 | } | |
3402 | ||
9a29fe70 | 3403 | return m_curPage; |
873ff54b SL |
3404 | } |
3405 | ||
3406 | ||
cd05bf23 | 3407 | #endif // wxUSE_AUI |