1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/aui/auibook.cpp
3 // Purpose: wxaui: wx advanced user interface - notebook
4 // Author: Benjamin I. Williams
7 // Copyright: (C) Copyright 2006, Kirix Corporation, All Rights Reserved
8 // Licence: wxWindows Library Licence, Version 3.1
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
15 #include "wx/wxprec.h"
23 #include "wx/aui/auibook.h"
26 #include "wx/settings.h"
30 #include "wx/aui/tabmdi.h"
31 #include "wx/dcbuffer.h"
35 #include "wx/mac/carbon/private.h"
38 #include "wx/arrimpl.cpp"
39 WX_DEFINE_OBJARRAY(wxAuiNotebookPageArray
)
40 WX_DEFINE_OBJARRAY(wxAuiTabContainerButtonArray
)
42 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
)
43 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
)
44 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
)
45 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
)
46 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
)
47 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
)
48 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
)
49 DEFINE_EVENT_TYPE(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
)
52 IMPLEMENT_CLASS(wxAuiNotebook
, wxControl
)
53 IMPLEMENT_CLASS(wxAuiTabCtrl
, wxControl
)
54 IMPLEMENT_DYNAMIC_CLASS(wxAuiNotebookEvent
, wxEvent
)
60 // This functions are here for this proof of concept
61 // and will be factored out later. See dockart.cpp
62 static wxColor
StepColour(const wxColor
& c
, int percent
)
64 int r
= c
.Red(), g
= c
.Green(), b
= c
.Blue();
65 return wxColour((unsigned char)wxMin((r
*percent
)/100,255),
66 (unsigned char)wxMin((g
*percent
)/100,255),
67 (unsigned char)wxMin((b
*percent
)/100,255));
70 // This functions are here for this proof of concept
71 // and will be factored out later. See dockart.cpp
72 static wxBitmap
BitmapFromBits(const unsigned char bits
[], int w
, int h
,
73 const wxColour
& color
)
75 wxImage img
= wxBitmap((const char*)bits
, w
, h
).ConvertToImage();
76 img
.Replace(0,0,0,123,123,123);
77 img
.Replace(255,255,255,color
.Red(),color
.Green(),color
.Blue());
78 img
.SetMaskColour(123,123,123);
82 static void DrawButtons(wxDC
& dc
,
85 const wxColour
& bkcolour
,
90 if (button_state
== wxAUI_BUTTON_STATE_PRESSED
)
96 if (button_state
== wxAUI_BUTTON_STATE_HOVER
||
97 button_state
== wxAUI_BUTTON_STATE_PRESSED
)
99 dc
.SetBrush(wxBrush(StepColour(bkcolour
, 120)));
100 dc
.SetPen(wxPen(StepColour(bkcolour
, 70)));
102 // draw the background behind the button
103 dc
.DrawRectangle(rect
.x
, rect
.y
, 15, 15);
106 // draw the button itself
107 dc
.DrawBitmap(bmp
, rect
.x
, rect
.y
, true);
110 static void IndentPressedBitmap(wxRect
* rect
, int button_state
)
112 if (button_state
== wxAUI_BUTTON_STATE_PRESSED
)
119 // chops the text so that it fits within |max_size| pixels.
120 // Also adds an elipsis if necessary
122 static wxString
ChopText(wxDC
& dc
, const wxString
& text
, int max_size
)
126 // first check if the text fits with no problems
127 dc
.GetTextExtent(text
, &x
, &y
);
131 size_t i
, len
= text
.Length();
132 size_t last_good_length
= 0;
133 for (i
= 0; i
< len
; ++i
)
135 wxString s
= text
.Left(i
);
138 dc
.GetTextExtent(s
, &x
, &y
);
142 last_good_length
= i
;
145 wxString ret
= text
.Left(last_good_length
);
151 // -- GUI helper classes and functions --
153 class wxAuiCommandCapture
: public wxEvtHandler
157 wxAuiCommandCapture() { m_last_id
= 0; }
158 int GetCommandId() const { return m_last_id
; }
160 bool ProcessEvent(wxEvent
& evt
)
162 if (evt
.GetEventType() == wxEVT_COMMAND_MENU_SELECTED
)
164 m_last_id
= evt
.GetId();
168 if (GetNextHandler())
169 return GetNextHandler()->ProcessEvent(evt
);
181 #if defined( __WXMAC__ )
182 static unsigned char close_bits
[]={
183 0xFF, 0xFF, 0xFF, 0xFF, 0x0F, 0xFE, 0x03, 0xF8, 0x01, 0xF0, 0x19, 0xF3,
184 0xB8, 0xE3, 0xF0, 0xE1, 0xE0, 0xE0, 0xF0, 0xE1, 0xB8, 0xE3, 0x19, 0xF3,
185 0x01, 0xF0, 0x03, 0xF8, 0x0F, 0xFE, 0xFF, 0xFF };
186 #elif defined( __WXGTK__)
187 static unsigned char close_bits
[]={
188 0xff, 0xff, 0xff, 0xff, 0x07, 0xf0, 0xfb, 0xef, 0xdb, 0xed, 0x8b, 0xe8,
189 0x1b, 0xec, 0x3b, 0xee, 0x1b, 0xec, 0x8b, 0xe8, 0xdb, 0xed, 0xfb, 0xef,
190 0x07, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
192 static unsigned char close_bits
[]={
193 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xf3, 0xcf, 0xf9,
194 0x9f, 0xfc, 0x3f, 0xfe, 0x3f, 0xfe, 0x9f, 0xfc, 0xcf, 0xf9, 0xe7, 0xf3,
195 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
198 static unsigned char left_bits
[] = {
199 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xfe, 0x3f, 0xfe,
200 0x1f, 0xfe, 0x0f, 0xfe, 0x1f, 0xfe, 0x3f, 0xfe, 0x7f, 0xfe, 0xff, 0xfe,
201 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
203 static unsigned char right_bits
[] = {
204 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0x9f, 0xff, 0x1f, 0xff,
205 0x1f, 0xfe, 0x1f, 0xfc, 0x1f, 0xfe, 0x1f, 0xff, 0x9f, 0xff, 0xdf, 0xff,
206 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
208 static unsigned char list_bits
[] = {
209 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
210 0x0f, 0xf8, 0xff, 0xff, 0x0f, 0xf8, 0x1f, 0xfc, 0x3f, 0xfe, 0x7f, 0xff,
211 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
218 // -- wxAuiDefaultTabArt class implementation --
220 wxAuiDefaultTabArt::wxAuiDefaultTabArt()
222 m_normal_font
= *wxNORMAL_FONT
;
223 m_selected_font
= *wxNORMAL_FONT
;
224 m_selected_font
.SetWeight(wxBOLD
);
225 m_measuring_font
= m_selected_font
;
227 m_fixed_tab_width
= 100;
228 m_tab_ctrl_height
= 0;
231 wxBrush toolbarbrush
;
232 toolbarbrush
.MacSetTheme( kThemeBrushToolbarBackground
);
233 wxColor base_colour
= toolbarbrush
.GetColour();
235 wxColor base_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
238 m_base_colour
= base_colour
;
239 wxColor darker2_colour
= StepColour(base_colour
, 70);
241 m_border_pen
= wxPen(darker2_colour
);
242 m_base_colour_pen
= wxPen(m_base_colour
);
243 m_base_colour_brush
= wxBrush(m_base_colour
);
245 m_active_close_bmp
= BitmapFromBits(close_bits
, 16, 16, *wxBLACK
);
246 m_disabled_close_bmp
= BitmapFromBits(close_bits
, 16, 16, wxColour(128,128,128));
248 m_active_left_bmp
= BitmapFromBits(left_bits
, 16, 16, *wxBLACK
);
249 m_disabled_left_bmp
= BitmapFromBits(left_bits
, 16, 16, wxColour(128,128,128));
251 m_active_right_bmp
= BitmapFromBits(right_bits
, 16, 16, *wxBLACK
);
252 m_disabled_right_bmp
= BitmapFromBits(right_bits
, 16, 16, wxColour(128,128,128));
254 m_active_windowlist_bmp
= BitmapFromBits(list_bits
, 16, 16, *wxBLACK
);
255 m_disabled_windowlist_bmp
= BitmapFromBits(list_bits
, 16, 16, wxColour(128,128,128));
260 wxAuiDefaultTabArt::~wxAuiDefaultTabArt()
264 wxAuiTabArt
* wxAuiDefaultTabArt::Clone()
266 return static_cast<wxAuiTabArt
*>(new wxAuiDefaultTabArt
);
269 void wxAuiDefaultTabArt::SetFlags(unsigned int flags
)
274 void wxAuiDefaultTabArt::SetSizingInfo(const wxSize
& tab_ctrl_size
,
277 m_fixed_tab_width
= 100;
279 int tot_width
= (int)tab_ctrl_size
.x
- GetIndentSize() - 4;
281 if (m_flags
& wxAUI_NB_CLOSE_BUTTON
)
282 tot_width
-= m_active_close_bmp
.GetWidth();
283 if (m_flags
& wxAUI_NB_WINDOWLIST_BUTTON
)
284 tot_width
-= m_active_windowlist_bmp
.GetWidth();
288 m_fixed_tab_width
= tot_width
/(int)tab_count
;
292 if (m_fixed_tab_width
< 100)
293 m_fixed_tab_width
= 100;
295 if (m_fixed_tab_width
> tot_width
/2)
296 m_fixed_tab_width
= tot_width
/2;
298 if (m_fixed_tab_width
> 220)
299 m_fixed_tab_width
= 220;
301 m_tab_ctrl_height
= tab_ctrl_size
.y
;
305 void wxAuiDefaultTabArt::DrawBackground(wxDC
& dc
,
306 wxWindow
* WXUNUSED(wnd
),
310 wxRect
r(rect
.x
, rect
.y
, rect
.width
+2, rect
.height
-3);
311 wxColor start_colour
= StepColour(m_base_colour
, 90);
312 wxColor end_colour
= StepColour(m_base_colour
, 110);
313 dc
.GradientFillLinear(r
, start_colour
, end_colour
, wxSOUTH
);
316 int y
= rect
.GetHeight();
317 int w
= rect
.GetWidth();
318 dc
.SetPen(m_border_pen
);
319 dc
.DrawLine(0, y
-4, w
, y
-4);
320 dc
.DrawLine(0, y
-1, w
, y
-1);
321 dc
.SetPen(wxPen(start_colour
));
322 dc
.DrawLine(0, y
-3, w
, y
-3);
323 dc
.DrawLine(0, y
-2, w
, y
-2);
327 // DrawTab() draws an individual tab.
330 // in_rect - rectangle the tab should be confined to
331 // caption - tab's caption
332 // active - whether or not the tab is active
333 // out_rect - actual output rectangle
334 // x_extent - the advance x; where the next tab should start
336 void wxAuiDefaultTabArt::DrawTab(wxDC
& dc
,
338 const wxRect
& in_rect
,
339 const wxString
& caption_text
,
340 const wxBitmap
& bitmap
,
342 int close_button_state
,
343 wxRect
* out_tab_rect
,
344 wxRect
* out_button_rect
,
347 wxCoord normal_textx
, normal_texty
;
348 wxCoord selected_textx
, selected_texty
;
349 wxCoord textx
, texty
;
351 // if the caption is empty, measure some temporary text
352 wxString caption
= caption_text
;
353 if (caption_text
.empty())
356 dc
.SetFont(m_selected_font
);
357 dc
.GetTextExtent(caption
, &selected_textx
, &selected_texty
);
359 dc
.SetFont(m_normal_font
);
360 dc
.GetTextExtent(caption
, &normal_textx
, &normal_texty
);
362 // figure out the size of the tab
363 wxSize tab_size
= GetTabSize(dc
,
371 wxCoord tab_height
= m_tab_ctrl_height
- 3;
372 wxCoord tab_width
= tab_size
.x
;
373 wxCoord tab_x
= in_rect
.x
;
374 wxCoord tab_y
= in_rect
.y
+ in_rect
.height
- tab_height
;
377 caption
= caption_text
;
380 // select pen, brush and font for the tab to be drawn
384 dc
.SetFont(m_selected_font
);
385 textx
= selected_textx
;
386 texty
= selected_texty
;
390 dc
.SetFont(m_normal_font
);
391 textx
= normal_textx
;
392 texty
= normal_texty
;
396 // create points that will make the tab outline
398 int clip_width
= tab_width
;
399 if (tab_x
+ clip_width
> in_rect
.x
+ in_rect
.width
)
400 clip_width
= (in_rect
.x
+ in_rect
.width
) - tab_x
;
402 wxPoint clip_points
[6];
403 clip_points
[0] = wxPoint(tab_x
, tab_y
+tab_height
-3);
404 clip_points
[1] = wxPoint(tab_x
, tab_y
+2);
405 clip_points
[2] = wxPoint(tab_x
+2, tab_y
);
406 clip_points
[3] = wxPoint(tab_x
+clip_width
-1, tab_y
);
407 clip_points
[4] = wxPoint(tab_x
+clip_width
+1, tab_y
+2);
408 clip_points
[5] = wxPoint(tab_x
+clip_width
+1, tab_y
+tab_height
-3);
410 // FIXME: these ports don't provide wxRegion ctor from array of points
411 #if !defined(__WXDFB__) && !defined(__WXCOCOA__)
412 // set the clipping region for the tab --
413 wxRegion
clipping_region(WXSIZEOF(clip_points
), clip_points
);
414 dc
.SetClippingRegion(clipping_region
);
415 #endif // !wxDFB && !wxCocoa
417 wxPoint border_points
[6];
418 border_points
[0] = wxPoint(tab_x
, tab_y
+tab_height
-4);
419 border_points
[1] = wxPoint(tab_x
, tab_y
+2);
420 border_points
[2] = wxPoint(tab_x
+2, tab_y
);
421 border_points
[3] = wxPoint(tab_x
+tab_width
-2, tab_y
);
422 border_points
[4] = wxPoint(tab_x
+tab_width
, tab_y
+2);
423 border_points
[5] = wxPoint(tab_x
+tab_width
, tab_y
+tab_height
-4);
426 int drawn_tab_yoff
= border_points
[1].y
;
427 int drawn_tab_height
= border_points
[0].y
- border_points
[1].y
;
434 // draw base background color
435 wxRect
r(tab_x
, tab_y
, tab_width
, tab_height
);
436 dc
.SetPen(m_base_colour_pen
);
437 dc
.SetBrush(m_base_colour_brush
);
438 dc
.DrawRectangle(r
.x
, r
.y
, r
.width
, r
.height
);
440 // this white helps fill out the gradient at the top of the tab
441 dc
.SetPen(*wxWHITE_PEN
);
442 dc
.SetBrush(*wxWHITE_BRUSH
);
443 dc
.DrawRectangle(r
.x
+2, r
.y
+2, r
.width
-3, r
.height
);
445 // these two points help the rounded corners appear more antialiased
446 dc
.SetPen(m_base_colour_pen
);
447 dc
.DrawPoint(r
.x
+2, r
.y
+2);
448 dc
.DrawPoint(r
.x
+r
.width
-2, r
.y
+2);
450 // set rectangle down a bit for gradient drawing
451 r
.SetHeight(r
.GetHeight()/2);
456 // draw gradient background
457 wxColor start_color
= StepColour(m_base_colour
, 95);
458 wxColor end_color
= *wxWHITE
;
459 dc
.GradientFillLinear(r
, start_color
, end_color
, wxNORTH
);
465 wxRect
r(tab_x
, tab_y
+1, tab_width
, tab_height
-3);
467 // draw base background color for inactive tabs
468 dc
.SetPen(m_base_colour_pen
);
469 dc
.SetBrush(m_base_colour_brush
);
470 dc
.DrawRectangle(r
.x
, r
.y
, r
.width
, r
.height
);
472 // start the gradent up a bit and leave the inside border inset
473 // by a pixel for a 3D look. Only the top half of the inactive
474 // tab will have a slight gradient
479 // -- draw bottom gradient fill for glossy look
480 wxColor top_color
= m_base_colour
;
481 wxColor bottom_color
= StepColour(top_color
, 106);
482 dc
.GradientFillLinear(r
, bottom_color
, top_color
, wxNORTH
);
486 dc
.SetPen(m_border_pen
);
487 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
488 dc
.DrawPolygon(WXSIZEOF(border_points
), border_points
);
490 // there are two horizontal grey lines at the bottom of the tab control,
491 // this gets rid of the top one of those lines in the tab control
494 wxColor start_color
= StepColour(m_base_colour
, 93);
495 dc
.SetPen(wxPen(start_color
));
496 dc
.DrawLine(border_points
[0].x
,
498 border_points
[5].x
+1,
503 int text_offset
= tab_x
+ 8;
504 int close_button_width
= 0;
505 if (close_button_state
!= wxAUI_BUTTON_STATE_HIDDEN
)
507 close_button_width
= m_active_close_bmp
.GetWidth();
513 int bitmap_offset
= tab_x
+ 8;
516 dc
.DrawBitmap(bitmap
,
518 drawn_tab_yoff
+ (drawn_tab_height
/2) - (bitmap
.GetHeight()/2) + 1,
521 text_offset
= bitmap_offset
+ bitmap
.GetWidth();
522 text_offset
+= 3; // bitmap padding
526 text_offset
= tab_x
+ 8;
530 wxString draw_text
= ChopText(dc
,
532 tab_width
- (text_offset
-tab_x
) - close_button_width
);
535 dc
.DrawText(draw_text
,
537 drawn_tab_yoff
+ (drawn_tab_height
)/2 - (texty
/2) - 1);
542 // draw close button if necessary
543 if (close_button_state
!= wxAUI_BUTTON_STATE_HIDDEN
)
545 wxBitmap bmp
= m_disabled_close_bmp
;
547 if (close_button_state
== wxAUI_BUTTON_STATE_HOVER
||
548 close_button_state
== wxAUI_BUTTON_STATE_PRESSED
)
550 bmp
= m_active_close_bmp
;
553 wxRect
rect(tab_x
+ tab_width
- close_button_width
- 1,
554 tab_y
+ (tab_height
/2) - (bmp
.GetHeight()/2),
557 IndentPressedBitmap(&rect
, close_button_state
);
558 dc
.DrawBitmap(bmp
, rect
.x
, rect
.y
, true);
560 *out_button_rect
= rect
;
563 *out_tab_rect
= wxRect(tab_x
, tab_y
, tab_width
, tab_height
);
565 dc
.DestroyClippingRegion();
568 int wxAuiDefaultTabArt::GetIndentSize()
573 wxSize
wxAuiDefaultTabArt::GetTabSize(wxDC
& dc
,
574 wxWindow
* WXUNUSED(wnd
),
575 const wxString
& caption
,
576 const wxBitmap
& bitmap
,
577 bool WXUNUSED(active
),
578 int close_button_state
,
581 wxCoord measured_textx
, measured_texty
, tmp
;
583 dc
.SetFont(m_measuring_font
);
584 dc
.GetTextExtent(caption
, &measured_textx
, &measured_texty
);
586 dc
.GetTextExtent(wxT("ABCDEFXj"), &tmp
, &measured_texty
);
588 // add padding around the text
589 wxCoord tab_width
= measured_textx
;
590 wxCoord tab_height
= measured_texty
;
592 // if the close button is showing, add space for it
593 if (close_button_state
!= wxAUI_BUTTON_STATE_HIDDEN
)
594 tab_width
+= m_active_close_bmp
.GetWidth() + 3;
596 // if there's a bitmap, add space for it
599 tab_width
+= bitmap
.GetWidth();
600 tab_width
+= 3; // right side bitmap padding
601 tab_height
= wxMax(tab_height
, bitmap
.GetHeight());
608 if (m_flags
& wxAUI_NB_TAB_FIXED_WIDTH
)
610 tab_width
= m_fixed_tab_width
;
613 *x_extent
= tab_width
;
615 return wxSize(tab_width
, tab_height
);
619 void wxAuiDefaultTabArt::DrawButton(wxDC
& dc
,
620 wxWindow
* WXUNUSED(wnd
),
621 const wxRect
& in_rect
,
625 const wxBitmap
& bitmap_override
,
631 if (bitmap_override
.IsOk())
633 bmp
= bitmap_override
;
639 case wxAUI_BUTTON_CLOSE
:
640 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
641 bmp
= m_disabled_close_bmp
;
643 bmp
= m_active_close_bmp
;
645 case wxAUI_BUTTON_LEFT
:
646 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
647 bmp
= m_disabled_left_bmp
;
649 bmp
= m_active_left_bmp
;
651 case wxAUI_BUTTON_RIGHT
:
652 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
653 bmp
= m_disabled_right_bmp
;
655 bmp
= m_active_right_bmp
;
657 case wxAUI_BUTTON_WINDOWLIST
:
658 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
659 bmp
= m_disabled_windowlist_bmp
;
661 bmp
= m_active_windowlist_bmp
;
671 if (orientation
== wxLEFT
)
673 rect
.SetX(in_rect
.x
);
674 rect
.SetY(((in_rect
.y
+ in_rect
.height
)/2) - (bmp
.GetHeight()/2));
675 rect
.SetWidth(bmp
.GetWidth());
676 rect
.SetHeight(bmp
.GetHeight());
680 rect
= wxRect(in_rect
.x
+ in_rect
.width
- bmp
.GetWidth(),
681 ((in_rect
.y
+ in_rect
.height
)/2) - (bmp
.GetHeight()/2),
682 bmp
.GetWidth(), bmp
.GetHeight());
685 IndentPressedBitmap(&rect
, button_state
);
686 dc
.DrawBitmap(bmp
, rect
.x
, rect
.y
, true);
692 int wxAuiDefaultTabArt::ShowWindowList(wxWindow
* wnd
,
693 const wxArrayString
& items
,
698 size_t i
, count
= items
.GetCount();
699 for (i
= 0; i
< count
; ++i
)
701 menuPopup
.AppendCheckItem(1000+i
, items
.Item(i
));
704 if (active_idx
!= -1)
706 menuPopup
.Check(1000+active_idx
, true);
709 // find out where to put the popup menu of window
710 // items. Subtract 100 for now to center the menu
711 // a bit, until a better mechanism can be implemented
712 wxPoint pt
= ::wxGetMousePosition();
713 pt
= wnd
->ScreenToClient(pt
);
719 // find out the screen coordinate at the bottom of the tab ctrl
720 wxRect cli_rect
= wnd
->GetClientRect();
721 pt
.y
= cli_rect
.y
+ cli_rect
.height
;
723 wxAuiCommandCapture
* cc
= new wxAuiCommandCapture
;
724 wnd
->PushEventHandler(cc
);
725 wnd
->PopupMenu(&menuPopup
, pt
);
726 int command
= cc
->GetCommandId();
727 wnd
->PopEventHandler(true);
735 int wxAuiDefaultTabArt::GetBestTabCtrlSize(wxWindow
* wnd
,
736 wxAuiNotebookPageArray
& pages
,
737 const wxSize
& required_bmp_size
)
740 dc
.SetFont(m_measuring_font
);
742 // sometimes a standard bitmap size needs to be enforced, especially
743 // if some tabs have bitmaps and others don't. This is important because
744 // it prevents the tab control from resizing when tabs are added.
745 wxBitmap measure_bmp
;
746 if (required_bmp_size
.IsFullySpecified())
748 measure_bmp
.Create(required_bmp_size
.x
,
749 required_bmp_size
.y
);
754 size_t i
, page_count
= pages
.GetCount();
755 for (i
= 0; i
< page_count
; ++i
)
757 wxAuiNotebookPage
& page
= pages
.Item(i
);
760 if (measure_bmp
.IsOk())
765 // we don't use the caption text because we don't
766 // want tab heights to be different in the case
767 // of a very short piece of text on one tab and a very
768 // tall piece of text on another tab
770 wxSize s
= GetTabSize(dc
,
775 wxAUI_BUTTON_STATE_HIDDEN
,
778 max_y
= wxMax(max_y
, s
.y
);
784 void wxAuiDefaultTabArt::SetNormalFont(const wxFont
& font
)
786 m_normal_font
= font
;
789 void wxAuiDefaultTabArt::SetSelectedFont(const wxFont
& font
)
791 m_selected_font
= font
;
794 void wxAuiDefaultTabArt::SetMeasuringFont(const wxFont
& font
)
796 m_measuring_font
= font
;
800 // -- wxAuiSimpleTabArt class implementation --
802 wxAuiSimpleTabArt::wxAuiSimpleTabArt()
804 m_normal_font
= *wxNORMAL_FONT
;
805 m_selected_font
= *wxNORMAL_FONT
;
806 m_selected_font
.SetWeight(wxBOLD
);
807 m_measuring_font
= m_selected_font
;
810 m_fixed_tab_width
= 100;
812 wxColour base_colour
= wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE
);
814 wxColour background_colour
= StepColour(base_colour
, 95);
815 wxColour normaltab_colour
= base_colour
;
816 wxColour selectedtab_colour
= *wxWHITE
;
818 m_bkbrush
= wxBrush(background_colour
);
819 m_normal_bkbrush
= wxBrush(normaltab_colour
);
820 m_normal_bkpen
= wxPen(normaltab_colour
);
821 m_selected_bkbrush
= wxBrush(selectedtab_colour
);
822 m_selected_bkpen
= wxPen(selectedtab_colour
);
824 m_active_close_bmp
= BitmapFromBits(close_bits
, 16, 16, *wxBLACK
);
825 m_disabled_close_bmp
= BitmapFromBits(close_bits
, 16, 16, wxColour(128,128,128));
827 m_active_left_bmp
= BitmapFromBits(left_bits
, 16, 16, *wxBLACK
);
828 m_disabled_left_bmp
= BitmapFromBits(left_bits
, 16, 16, wxColour(128,128,128));
830 m_active_right_bmp
= BitmapFromBits(right_bits
, 16, 16, *wxBLACK
);
831 m_disabled_right_bmp
= BitmapFromBits(right_bits
, 16, 16, wxColour(128,128,128));
833 m_active_windowlist_bmp
= BitmapFromBits(list_bits
, 16, 16, *wxBLACK
);
834 m_disabled_windowlist_bmp
= BitmapFromBits(list_bits
, 16, 16, wxColour(128,128,128));
838 wxAuiSimpleTabArt::~wxAuiSimpleTabArt()
842 wxAuiTabArt
* wxAuiSimpleTabArt::Clone()
844 return static_cast<wxAuiTabArt
*>(new wxAuiSimpleTabArt
);
848 void wxAuiSimpleTabArt::SetFlags(unsigned int flags
)
853 void wxAuiSimpleTabArt::SetSizingInfo(const wxSize
& tab_ctrl_size
,
856 m_fixed_tab_width
= 100;
858 int tot_width
= (int)tab_ctrl_size
.x
- GetIndentSize() - 4;
860 if (m_flags
& wxAUI_NB_CLOSE_BUTTON
)
861 tot_width
-= m_active_close_bmp
.GetWidth();
862 if (m_flags
& wxAUI_NB_WINDOWLIST_BUTTON
)
863 tot_width
-= m_active_windowlist_bmp
.GetWidth();
867 m_fixed_tab_width
= tot_width
/(int)tab_count
;
871 if (m_fixed_tab_width
< 100)
872 m_fixed_tab_width
= 100;
874 if (m_fixed_tab_width
> tot_width
/2)
875 m_fixed_tab_width
= tot_width
/2;
877 if (m_fixed_tab_width
> 220)
878 m_fixed_tab_width
= 220;
881 void wxAuiSimpleTabArt::DrawBackground(wxDC
& dc
,
882 wxWindow
* WXUNUSED(wnd
),
886 dc
.SetBrush(m_bkbrush
);
887 dc
.SetPen(*wxTRANSPARENT_PEN
);
888 dc
.DrawRectangle(-1, -1, rect
.GetWidth()+2, rect
.GetHeight()+2);
891 dc
.SetPen(*wxGREY_PEN
);
892 dc
.DrawLine(0, rect
.GetHeight()-1, rect
.GetWidth(), rect
.GetHeight()-1);
896 // DrawTab() draws an individual tab.
899 // in_rect - rectangle the tab should be confined to
900 // caption - tab's caption
901 // active - whether or not the tab is active
902 // out_rect - actual output rectangle
903 // x_extent - the advance x; where the next tab should start
905 void wxAuiSimpleTabArt::DrawTab(wxDC
& dc
,
907 const wxRect
& in_rect
,
908 const wxString
& caption_text
,
909 const wxBitmap
& bitmap
,
911 int close_button_state
,
912 wxRect
* out_tab_rect
,
913 wxRect
* out_button_rect
,
916 wxCoord normal_textx
, normal_texty
;
917 wxCoord selected_textx
, selected_texty
;
918 wxCoord textx
, texty
;
920 // if the caption is empty, measure some temporary text
921 wxString caption
= caption_text
;
922 if (caption_text
.empty())
925 dc
.SetFont(m_selected_font
);
926 dc
.GetTextExtent(caption
, &selected_textx
, &selected_texty
);
928 dc
.SetFont(m_normal_font
);
929 dc
.GetTextExtent(caption
, &normal_textx
, &normal_texty
);
931 // figure out the size of the tab
932 wxSize tab_size
= GetTabSize(dc
,
940 wxCoord tab_height
= tab_size
.y
;
941 wxCoord tab_width
= tab_size
.x
;
942 wxCoord tab_x
= in_rect
.x
;
943 wxCoord tab_y
= in_rect
.y
+ in_rect
.height
- tab_height
;
945 caption
= caption_text
;
947 // select pen, brush and font for the tab to be drawn
951 dc
.SetPen(m_selected_bkpen
);
952 dc
.SetBrush(m_selected_bkbrush
);
953 dc
.SetFont(m_selected_font
);
954 textx
= selected_textx
;
955 texty
= selected_texty
;
959 dc
.SetPen(m_normal_bkpen
);
960 dc
.SetBrush(m_normal_bkbrush
);
961 dc
.SetFont(m_normal_font
);
962 textx
= normal_textx
;
963 texty
= normal_texty
;
971 points
[0].y
= tab_y
+ tab_height
- 1;
972 points
[1].x
= tab_x
+ tab_height
- 3;
973 points
[1].y
= tab_y
+ 2;
974 points
[2].x
= tab_x
+ tab_height
+ 3;
976 points
[3].x
= tab_x
+ tab_width
- 2;
978 points
[4].x
= tab_x
+ tab_width
;
979 points
[4].y
= tab_y
+ 2;
980 points
[5].x
= tab_x
+ tab_width
;
981 points
[5].y
= tab_y
+ tab_height
- 1;
982 points
[6] = points
[0];
984 dc
.SetClippingRegion(in_rect
);
986 dc
.DrawPolygon(WXSIZEOF(points
) - 1, points
);
988 dc
.SetPen(*wxGREY_PEN
);
990 //dc.DrawLines(active ? WXSIZEOF(points) - 1 : WXSIZEOF(points), points);
991 dc
.DrawLines(WXSIZEOF(points
), points
);
996 int close_button_width
= 0;
997 if (close_button_state
!= wxAUI_BUTTON_STATE_HIDDEN
)
999 close_button_width
= m_active_close_bmp
.GetWidth();
1000 text_offset
= tab_x
+ (tab_height
/2) + ((tab_width
-close_button_width
)/2) - (textx
/2);
1004 text_offset
= tab_x
+ (tab_height
/3) + (tab_width
/2) - (textx
/2);
1007 // set minimum text offset
1008 if (text_offset
< tab_x
+ tab_height
)
1009 text_offset
= tab_x
+ tab_height
;
1011 // chop text if necessary
1012 wxString draw_text
= ChopText(dc
,
1014 tab_width
- (text_offset
-tab_x
) - close_button_width
);
1017 dc
.DrawText(draw_text
,
1019 (tab_y
+ tab_height
)/2 - (texty
/2) + 1);
1022 // draw close button if necessary
1023 if (close_button_state
!= wxAUI_BUTTON_STATE_HIDDEN
)
1027 bmp
= m_active_close_bmp
;
1029 bmp
= m_disabled_close_bmp
;
1031 wxRect
rect(tab_x
+ tab_width
- close_button_width
- 1,
1032 tab_y
+ (tab_height
/2) - (bmp
.GetHeight()/2) + 1,
1035 DrawButtons(dc
, rect
, bmp
, *wxWHITE
, close_button_state
);
1037 *out_button_rect
= rect
;
1041 *out_tab_rect
= wxRect(tab_x
, tab_y
, tab_width
, tab_height
);
1043 dc
.DestroyClippingRegion();
1046 int wxAuiSimpleTabArt::GetIndentSize()
1051 wxSize
wxAuiSimpleTabArt::GetTabSize(wxDC
& dc
,
1052 wxWindow
* WXUNUSED(wnd
),
1053 const wxString
& caption
,
1054 const wxBitmap
& WXUNUSED(bitmap
),
1055 bool WXUNUSED(active
),
1056 int close_button_state
,
1059 wxCoord measured_textx
, measured_texty
;
1061 dc
.SetFont(m_measuring_font
);
1062 dc
.GetTextExtent(caption
, &measured_textx
, &measured_texty
);
1064 wxCoord tab_height
= measured_texty
+ 4;
1065 wxCoord tab_width
= measured_textx
+ tab_height
+ 5;
1067 if (close_button_state
!= wxAUI_BUTTON_STATE_HIDDEN
)
1068 tab_width
+= m_active_close_bmp
.GetWidth();
1070 if (m_flags
& wxAUI_NB_TAB_FIXED_WIDTH
)
1072 tab_width
= m_fixed_tab_width
;
1075 *x_extent
= tab_width
- (tab_height
/2) - 1;
1077 return wxSize(tab_width
, tab_height
);
1081 void wxAuiSimpleTabArt::DrawButton(wxDC
& dc
,
1082 wxWindow
* WXUNUSED(wnd
),
1083 const wxRect
& in_rect
,
1087 const wxBitmap
& bitmap_override
,
1093 if (bitmap_override
.IsOk())
1095 bmp
= bitmap_override
;
1101 case wxAUI_BUTTON_CLOSE
:
1102 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
1103 bmp
= m_disabled_close_bmp
;
1105 bmp
= m_active_close_bmp
;
1107 case wxAUI_BUTTON_LEFT
:
1108 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
1109 bmp
= m_disabled_left_bmp
;
1111 bmp
= m_active_left_bmp
;
1113 case wxAUI_BUTTON_RIGHT
:
1114 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
1115 bmp
= m_disabled_right_bmp
;
1117 bmp
= m_active_right_bmp
;
1119 case wxAUI_BUTTON_WINDOWLIST
:
1120 if (button_state
& wxAUI_BUTTON_STATE_DISABLED
)
1121 bmp
= m_disabled_windowlist_bmp
;
1123 bmp
= m_active_windowlist_bmp
;
1133 if (orientation
== wxLEFT
)
1135 rect
.SetX(in_rect
.x
);
1136 rect
.SetY(((in_rect
.y
+ in_rect
.height
)/2) - (bmp
.GetHeight()/2));
1137 rect
.SetWidth(bmp
.GetWidth());
1138 rect
.SetHeight(bmp
.GetHeight());
1142 rect
= wxRect(in_rect
.x
+ in_rect
.width
- bmp
.GetWidth(),
1143 ((in_rect
.y
+ in_rect
.height
)/2) - (bmp
.GetHeight()/2),
1144 bmp
.GetWidth(), bmp
.GetHeight());
1148 DrawButtons(dc
, rect
, bmp
, *wxWHITE
, button_state
);
1154 int wxAuiSimpleTabArt::ShowWindowList(wxWindow
* wnd
,
1155 const wxArrayString
& items
,
1160 size_t i
, count
= items
.GetCount();
1161 for (i
= 0; i
< count
; ++i
)
1163 menuPopup
.AppendCheckItem(1000+i
, items
.Item(i
));
1166 if (active_idx
!= -1)
1168 menuPopup
.Check(1000+active_idx
, true);
1171 // find out where to put the popup menu of window
1172 // items. Subtract 100 for now to center the menu
1173 // a bit, until a better mechanism can be implemented
1174 wxPoint pt
= ::wxGetMousePosition();
1175 pt
= wnd
->ScreenToClient(pt
);
1181 // find out the screen coordinate at the bottom of the tab ctrl
1182 wxRect cli_rect
= wnd
->GetClientRect();
1183 pt
.y
= cli_rect
.y
+ cli_rect
.height
;
1185 wxAuiCommandCapture
* cc
= new wxAuiCommandCapture
;
1186 wnd
->PushEventHandler(cc
);
1187 wnd
->PopupMenu(&menuPopup
, pt
);
1188 int command
= cc
->GetCommandId();
1189 wnd
->PopEventHandler(true);
1191 if (command
>= 1000)
1192 return command
-1000;
1197 int wxAuiSimpleTabArt::GetBestTabCtrlSize(wxWindow
* wnd
,
1198 wxAuiNotebookPageArray
& WXUNUSED(pages
),
1199 const wxSize
& WXUNUSED(required_bmp_size
))
1202 dc
.SetFont(m_measuring_font
);
1204 wxSize s
= GetTabSize(dc
,
1209 wxAUI_BUTTON_STATE_HIDDEN
,
1214 void wxAuiSimpleTabArt::SetNormalFont(const wxFont
& font
)
1216 m_normal_font
= font
;
1219 void wxAuiSimpleTabArt::SetSelectedFont(const wxFont
& font
)
1221 m_selected_font
= font
;
1224 void wxAuiSimpleTabArt::SetMeasuringFont(const wxFont
& font
)
1226 m_measuring_font
= font
;
1232 // -- wxAuiTabContainer class implementation --
1235 // wxAuiTabContainer is a class which contains information about each
1236 // tab. It also can render an entire tab control to a specified DC.
1237 // It's not a window class itself, because this code will be used by
1238 // the wxFrameMananger, where it is disadvantageous to have separate
1239 // windows for each tab control in the case of "docked tabs"
1241 // A derived class, wxAuiTabCtrl, is an actual wxWindow-derived window
1242 // which can be used as a tab control in the normal sense.
1245 wxAuiTabContainer::wxAuiTabContainer()
1249 m_art
= new wxAuiDefaultTabArt
;
1251 AddButton(wxAUI_BUTTON_LEFT
, wxLEFT
);
1252 AddButton(wxAUI_BUTTON_RIGHT
, wxRIGHT
);
1253 AddButton(wxAUI_BUTTON_WINDOWLIST
, wxRIGHT
);
1254 AddButton(wxAUI_BUTTON_CLOSE
, wxRIGHT
);
1257 wxAuiTabContainer::~wxAuiTabContainer()
1262 void wxAuiTabContainer::SetArtProvider(wxAuiTabArt
* art
)
1269 m_art
->SetFlags(m_flags
);
1273 wxAuiTabArt
* wxAuiTabContainer::GetArtProvider() const
1278 void wxAuiTabContainer::SetFlags(unsigned int flags
)
1282 // check for new close button settings
1283 RemoveButton(wxAUI_BUTTON_LEFT
);
1284 RemoveButton(wxAUI_BUTTON_RIGHT
);
1285 RemoveButton(wxAUI_BUTTON_WINDOWLIST
);
1286 RemoveButton(wxAUI_BUTTON_CLOSE
);
1289 if (flags
& wxAUI_NB_SCROLL_BUTTONS
)
1291 AddButton(wxAUI_BUTTON_LEFT
, wxLEFT
);
1292 AddButton(wxAUI_BUTTON_RIGHT
, wxRIGHT
);
1295 if (flags
& wxAUI_NB_WINDOWLIST_BUTTON
)
1297 AddButton(wxAUI_BUTTON_WINDOWLIST
, wxRIGHT
);
1300 if (flags
& wxAUI_NB_CLOSE_BUTTON
)
1302 AddButton(wxAUI_BUTTON_CLOSE
, wxRIGHT
);
1307 m_art
->SetFlags(m_flags
);
1311 unsigned int wxAuiTabContainer::GetFlags() const
1317 void wxAuiTabContainer::SetNormalFont(const wxFont
& font
)
1319 m_art
->SetNormalFont(font
);
1322 void wxAuiTabContainer::SetSelectedFont(const wxFont
& font
)
1324 m_art
->SetSelectedFont(font
);
1327 void wxAuiTabContainer::SetMeasuringFont(const wxFont
& font
)
1329 m_art
->SetMeasuringFont(font
);
1332 void wxAuiTabContainer::SetRect(const wxRect
& rect
)
1338 m_art
->SetSizingInfo(rect
.GetSize(), m_pages
.GetCount());
1342 bool wxAuiTabContainer::AddPage(wxWindow
* page
,
1343 const wxAuiNotebookPage
& info
)
1345 wxAuiNotebookPage page_info
;
1347 page_info
.window
= page
;
1349 m_pages
.Add(page_info
);
1351 // let the art provider know how many pages we have
1354 m_art
->SetSizingInfo(m_rect
.GetSize(), m_pages
.GetCount());
1360 bool wxAuiTabContainer::InsertPage(wxWindow
* page
,
1361 const wxAuiNotebookPage
& info
,
1364 wxAuiNotebookPage page_info
;
1366 page_info
.window
= page
;
1368 if (idx
>= m_pages
.GetCount())
1369 m_pages
.Add(page_info
);
1371 m_pages
.Insert(page_info
, idx
);
1373 // let the art provider know how many pages we have
1376 m_art
->SetSizingInfo(m_rect
.GetSize(), m_pages
.GetCount());
1382 bool wxAuiTabContainer::MovePage(wxWindow
* page
,
1385 int idx
= GetIdxFromWindow(page
);
1389 // get page entry, make a copy of it
1390 wxAuiNotebookPage p
= GetPage(idx
);
1392 // remove old page entry
1395 // insert page where it should be
1396 InsertPage(page
, p
, new_idx
);
1401 bool wxAuiTabContainer::RemovePage(wxWindow
* wnd
)
1403 size_t i
, page_count
= m_pages
.GetCount();
1404 for (i
= 0; i
< page_count
; ++i
)
1406 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1407 if (page
.window
== wnd
)
1409 m_pages
.RemoveAt(i
);
1411 // let the art provider know how many pages we have
1414 m_art
->SetSizingInfo(m_rect
.GetSize(), m_pages
.GetCount());
1424 bool wxAuiTabContainer::SetActivePage(wxWindow
* wnd
)
1428 size_t i
, page_count
= m_pages
.GetCount();
1429 for (i
= 0; i
< page_count
; ++i
)
1431 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1432 if (page
.window
== wnd
)
1439 page
.active
= false;
1446 void wxAuiTabContainer::SetNoneActive()
1448 size_t i
, page_count
= m_pages
.GetCount();
1449 for (i
= 0; i
< page_count
; ++i
)
1451 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1452 page
.active
= false;
1456 bool wxAuiTabContainer::SetActivePage(size_t page
)
1458 if (page
>= m_pages
.GetCount())
1461 return SetActivePage(m_pages
.Item(page
).window
);
1464 int wxAuiTabContainer::GetActivePage() const
1466 size_t i
, page_count
= m_pages
.GetCount();
1467 for (i
= 0; i
< page_count
; ++i
)
1469 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1477 wxWindow
* wxAuiTabContainer::GetWindowFromIdx(size_t idx
) const
1479 if (idx
>= m_pages
.GetCount())
1482 return m_pages
[idx
].window
;
1485 int wxAuiTabContainer::GetIdxFromWindow(wxWindow
* wnd
) const
1487 size_t i
, page_count
= m_pages
.GetCount();
1488 for (i
= 0; i
< page_count
; ++i
)
1490 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1491 if (page
.window
== wnd
)
1497 wxAuiNotebookPage
& wxAuiTabContainer::GetPage(size_t idx
)
1499 wxASSERT_MSG(idx
< m_pages
.GetCount(), wxT("Invalid Page index"));
1501 return m_pages
[idx
];
1504 wxAuiNotebookPageArray
& wxAuiTabContainer::GetPages()
1509 size_t wxAuiTabContainer::GetPageCount() const
1511 return m_pages
.GetCount();
1514 void wxAuiTabContainer::AddButton(int id
,
1516 const wxBitmap
& normal_bitmap
,
1517 const wxBitmap
& disabled_bitmap
)
1519 wxAuiTabContainerButton button
;
1521 button
.bitmap
= normal_bitmap
;
1522 button
.dis_bitmap
= disabled_bitmap
;
1523 button
.location
= location
;
1524 button
.cur_state
= wxAUI_BUTTON_STATE_NORMAL
;
1526 m_buttons
.Add(button
);
1529 void wxAuiTabContainer::RemoveButton(int id
)
1531 size_t i
, button_count
= m_buttons
.GetCount();
1533 for (i
= 0; i
< button_count
; ++i
)
1535 if (m_buttons
.Item(i
).id
== id
)
1537 m_buttons
.RemoveAt(i
);
1545 size_t wxAuiTabContainer::GetTabOffset() const
1547 return m_tab_offset
;
1550 void wxAuiTabContainer::SetTabOffset(size_t offset
)
1552 m_tab_offset
= offset
;
1558 // Render() renders the tab catalog to the specified DC
1559 // It is a virtual function and can be overridden to
1560 // provide custom drawing capabilities
1561 void wxAuiTabContainer::Render(wxDC
* raw_dc
, wxWindow
* wnd
)
1563 if (!raw_dc
|| !raw_dc
->IsOk())
1569 size_t page_count
= m_pages
.GetCount();
1570 size_t button_count
= m_buttons
.GetCount();
1572 // create off-screen bitmap
1573 bmp
.Create(m_rect
.GetWidth(), m_rect
.GetHeight());
1574 dc
.SelectObject(bmp
);
1579 // find out if size of tabs is larger than can be
1580 // afforded on screen
1581 int total_width
= 0;
1582 int visible_width
= 0;
1583 for (i
= 0; i
< page_count
; ++i
)
1585 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1587 // determine if a close button is on this tab
1588 bool close_button
= false;
1589 if ((m_flags
& wxAUI_NB_CLOSE_ON_ALL_TABS
) != 0 ||
1590 ((m_flags
& wxAUI_NB_CLOSE_ON_ACTIVE_TAB
) != 0 && page
.active
))
1592 close_button
= true;
1597 wxSize size
= m_art
->GetTabSize(dc
,
1603 wxAUI_BUTTON_STATE_NORMAL
:
1604 wxAUI_BUTTON_STATE_HIDDEN
,
1607 if (i
+1 < page_count
)
1608 total_width
+= x_extent
;
1610 total_width
+= size
.x
;
1612 if (i
>= m_tab_offset
)
1614 if (i
+1 < page_count
)
1615 visible_width
+= x_extent
;
1617 visible_width
+= size
.x
;
1621 if (total_width
> m_rect
.GetWidth() || m_tab_offset
!= 0)
1623 // show left/right buttons
1624 for (i
= 0; i
< button_count
; ++i
)
1626 wxAuiTabContainerButton
& button
= m_buttons
.Item(i
);
1627 if (button
.id
== wxAUI_BUTTON_LEFT
||
1628 button
.id
== wxAUI_BUTTON_RIGHT
)
1630 button
.cur_state
&= ~wxAUI_BUTTON_STATE_HIDDEN
;
1636 // hide left/right buttons
1637 for (i
= 0; i
< button_count
; ++i
)
1639 wxAuiTabContainerButton
& button
= m_buttons
.Item(i
);
1640 if (button
.id
== wxAUI_BUTTON_LEFT
||
1641 button
.id
== wxAUI_BUTTON_RIGHT
)
1643 button
.cur_state
|= wxAUI_BUTTON_STATE_HIDDEN
;
1648 // determine whether left button should be enabled
1649 for (i
= 0; i
< button_count
; ++i
)
1651 wxAuiTabContainerButton
& button
= m_buttons
.Item(i
);
1652 if (button
.id
== wxAUI_BUTTON_LEFT
)
1654 if (m_tab_offset
== 0)
1655 button
.cur_state
|= wxAUI_BUTTON_STATE_DISABLED
;
1657 button
.cur_state
&= ~wxAUI_BUTTON_STATE_DISABLED
;
1659 if (button
.id
== wxAUI_BUTTON_RIGHT
)
1661 if (visible_width
< m_rect
.GetWidth() - ((int)button_count
*16))
1662 button
.cur_state
|= wxAUI_BUTTON_STATE_DISABLED
;
1664 button
.cur_state
&= ~wxAUI_BUTTON_STATE_DISABLED
;
1671 m_art
->DrawBackground(dc
, wnd
, m_rect
);
1674 int left_buttons_width
= 0;
1675 int right_buttons_width
= 0;
1679 // draw the buttons on the right side
1680 offset
= m_rect
.x
+ m_rect
.width
;
1681 for (i
= 0; i
< button_count
; ++i
)
1683 wxAuiTabContainerButton
& button
= m_buttons
.Item(button_count
- i
- 1);
1685 if (button
.location
!= wxRIGHT
)
1687 if (button
.cur_state
& wxAUI_BUTTON_STATE_HIDDEN
)
1690 wxRect button_rect
= m_rect
;
1691 button_rect
.SetY(1);
1692 button_rect
.SetWidth(offset
);
1694 m_art
->DrawButton(dc
,
1703 offset
-= button
.rect
.GetWidth();
1704 right_buttons_width
+= button
.rect
.GetWidth();
1711 // draw the buttons on the left side
1713 for (i
= 0; i
< button_count
; ++i
)
1715 wxAuiTabContainerButton
& button
= m_buttons
.Item(button_count
- i
- 1);
1717 if (button
.location
!= wxLEFT
)
1719 if (button
.cur_state
& wxAUI_BUTTON_STATE_HIDDEN
)
1722 wxRect
button_rect(offset
, 1, 1000, m_rect
.height
);
1724 m_art
->DrawButton(dc
,
1733 offset
+= button
.rect
.GetWidth();
1734 left_buttons_width
+= button
.rect
.GetWidth();
1737 offset
= left_buttons_width
;
1740 offset
+= m_art
->GetIndentSize();
1743 // prepare the tab-close-button array
1744 // make sure tab button entries which aren't used are marked as hidden
1745 for (i
= page_count
; i
< m_tab_close_buttons
.GetCount(); ++i
)
1746 m_tab_close_buttons
.Item(i
).cur_state
= wxAUI_BUTTON_STATE_HIDDEN
;
1748 // make sure there are enough tab button entries to accommodate all tabs
1749 while (m_tab_close_buttons
.GetCount() < page_count
)
1751 wxAuiTabContainerButton tempbtn
;
1752 tempbtn
.id
= wxAUI_BUTTON_CLOSE
;
1753 tempbtn
.location
= wxCENTER
;
1754 tempbtn
.cur_state
= wxAUI_BUTTON_STATE_HIDDEN
;
1755 m_tab_close_buttons
.Add(tempbtn
);
1759 // buttons before the tab offset must be set to hidden
1760 for (i
= 0; i
< m_tab_offset
; ++i
)
1762 m_tab_close_buttons
.Item(i
).cur_state
= wxAUI_BUTTON_STATE_HIDDEN
;
1768 size_t active
= 999;
1769 int active_offset
= 0;
1773 wxRect rect
= m_rect
;
1775 rect
.height
= m_rect
.height
;
1777 for (i
= m_tab_offset
; i
< page_count
; ++i
)
1779 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1780 wxAuiTabContainerButton
& tab_button
= m_tab_close_buttons
.Item(i
);
1782 // determine if a close button is on this tab
1783 bool close_button
= false;
1784 if ((m_flags
& wxAUI_NB_CLOSE_ON_ALL_TABS
) != 0 ||
1785 ((m_flags
& wxAUI_NB_CLOSE_ON_ACTIVE_TAB
) != 0 && page
.active
))
1787 close_button
= true;
1788 if (tab_button
.cur_state
== wxAUI_BUTTON_STATE_HIDDEN
)
1790 tab_button
.id
= wxAUI_BUTTON_CLOSE
;
1791 tab_button
.cur_state
= wxAUI_BUTTON_STATE_NORMAL
;
1792 tab_button
.location
= wxCENTER
;
1797 tab_button
.cur_state
= wxAUI_BUTTON_STATE_HIDDEN
;
1801 rect
.width
= m_rect
.width
- right_buttons_width
- offset
- 2;
1803 if (rect
.width
<= 0)
1812 tab_button
.cur_state
,
1820 active_offset
= offset
;
1828 // make sure to deactivate buttons which are off the screen to the right
1829 for (++i
; i
< m_tab_close_buttons
.GetCount(); ++i
)
1831 m_tab_close_buttons
.Item(i
).cur_state
= wxAUI_BUTTON_STATE_HIDDEN
;
1835 // draw the active tab again so it stands in the foreground
1836 if (active
>= m_tab_offset
&& active
< m_pages
.GetCount())
1838 wxAuiNotebookPage
& page
= m_pages
.Item(active
);
1840 wxAuiTabContainerButton
& tab_button
= m_tab_close_buttons
.Item(active
);
1842 // determine if a close button is on this tab
1843 bool close_button
= false;
1844 if ((m_flags
& wxAUI_NB_CLOSE_ON_ALL_TABS
) != 0 ||
1845 ((m_flags
& wxAUI_NB_CLOSE_ON_ACTIVE_TAB
) != 0 && page
.active
))
1847 close_button
= true;
1850 rect
.x
= active_offset
;
1857 tab_button
.cur_state
,
1864 raw_dc
->Blit(m_rect
.x
, m_rect
.y
,
1865 m_rect
.GetWidth(), m_rect
.GetHeight(),
1870 // TabHitTest() tests if a tab was hit, passing the window pointer
1871 // back if that condition was fulfilled. The function returns
1872 // true if a tab was hit, otherwise false
1873 bool wxAuiTabContainer::TabHitTest(int x
, int y
, wxWindow
** hit
) const
1875 if (!m_rect
.Contains(x
,y
))
1878 wxAuiTabContainerButton
* btn
= NULL
;
1879 if (ButtonHitTest(x
, y
, &btn
))
1881 if (m_buttons
.Index(*btn
) != wxNOT_FOUND
)
1885 size_t i
, page_count
= m_pages
.GetCount();
1887 for (i
= m_tab_offset
; i
< page_count
; ++i
)
1889 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
1890 if (page
.rect
.Contains(x
,y
))
1901 // ButtonHitTest() tests if a button was hit. The function returns
1902 // true if a button was hit, otherwise false
1903 bool wxAuiTabContainer::ButtonHitTest(int x
, int y
,
1904 wxAuiTabContainerButton
** hit
) const
1906 if (!m_rect
.Contains(x
,y
))
1909 size_t i
, button_count
;
1912 button_count
= m_buttons
.GetCount();
1913 for (i
= 0; i
< button_count
; ++i
)
1915 wxAuiTabContainerButton
& button
= m_buttons
.Item(i
);
1916 if (button
.rect
.Contains(x
,y
) &&
1917 !(button
.cur_state
& (wxAUI_BUTTON_STATE_HIDDEN
|
1918 wxAUI_BUTTON_STATE_DISABLED
)))
1926 button_count
= m_tab_close_buttons
.GetCount();
1927 for (i
= 0; i
< button_count
; ++i
)
1929 wxAuiTabContainerButton
& button
= m_tab_close_buttons
.Item(i
);
1930 if (button
.rect
.Contains(x
,y
) &&
1931 !(button
.cur_state
& (wxAUI_BUTTON_STATE_HIDDEN
|
1932 wxAUI_BUTTON_STATE_DISABLED
)))
1945 // the utility function ShowWnd() is the same as show,
1946 // except it handles wxAuiMDIChildFrame windows as well,
1947 // as the Show() method on this class is "unplugged"
1948 static void ShowWnd(wxWindow
* wnd
, bool show
)
1950 if (wnd
->IsKindOf(CLASSINFO(wxAuiMDIChildFrame
)))
1952 wxAuiMDIChildFrame
* cf
= (wxAuiMDIChildFrame
*)wnd
;
1962 // DoShowHide() this function shows the active window, then
1963 // hides all of the other windows (in that order)
1964 void wxAuiTabContainer::DoShowHide()
1966 wxAuiNotebookPageArray
& pages
= GetPages();
1967 size_t i
, page_count
= pages
.GetCount();
1969 // show new active page first
1970 for (i
= 0; i
< page_count
; ++i
)
1972 wxAuiNotebookPage
& page
= pages
.Item(i
);
1975 ShowWnd(page
.window
, true);
1980 // hide all other pages
1981 for (i
= 0; i
< page_count
; ++i
)
1983 wxAuiNotebookPage
& page
= pages
.Item(i
);
1984 ShowWnd(page
.window
, page
.active
);
1993 // -- wxAuiTabCtrl class implementation --
1997 BEGIN_EVENT_TABLE(wxAuiTabCtrl
, wxControl
)
1998 EVT_PAINT(wxAuiTabCtrl::OnPaint
)
1999 EVT_ERASE_BACKGROUND(wxAuiTabCtrl::OnEraseBackground
)
2000 EVT_SIZE(wxAuiTabCtrl::OnSize
)
2001 EVT_LEFT_DOWN(wxAuiTabCtrl::OnLeftDown
)
2002 EVT_LEFT_UP(wxAuiTabCtrl::OnLeftUp
)
2003 EVT_MOTION(wxAuiTabCtrl::OnMotion
)
2004 EVT_LEAVE_WINDOW(wxAuiTabCtrl::OnLeaveWindow
)
2005 EVT_AUINOTEBOOK_BUTTON(-1, wxAuiTabCtrl::OnButton
)
2009 wxAuiTabCtrl::wxAuiTabCtrl(wxWindow
* parent
,
2013 long style
) : wxControl(parent
, id
, pos
, size
, style
)
2015 m_click_pt
= wxDefaultPosition
;
2016 m_is_dragging
= false;
2017 m_hover_button
= NULL
;
2018 m_pressed_button
= NULL
;
2021 wxAuiTabCtrl::~wxAuiTabCtrl()
2025 void wxAuiTabCtrl::OnPaint(wxPaintEvent
&)
2029 dc
.SetFont(GetFont());
2031 if (GetPageCount() > 0)
2035 void wxAuiTabCtrl::OnEraseBackground(wxEraseEvent
& WXUNUSED(evt
))
2039 void wxAuiTabCtrl::OnSize(wxSizeEvent
& evt
)
2041 wxSize s
= evt
.GetSize();
2042 wxRect
r(0, 0, s
.GetWidth(), s
.GetHeight());
2046 void wxAuiTabCtrl::OnLeftDown(wxMouseEvent
& evt
)
2049 m_click_pt
= wxDefaultPosition
;
2050 m_is_dragging
= false;
2052 m_pressed_button
= NULL
;
2056 if (TabHitTest(evt
.m_x
, evt
.m_y
, &wnd
))
2058 int new_selection
= GetIdxFromWindow(wnd
);
2060 if (new_selection
!= GetActivePage())
2062 wxAuiNotebookEvent
e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
, m_windowId
);
2063 e
.SetSelection(new_selection
);
2064 e
.SetOldSelection(GetActivePage());
2065 e
.SetEventObject(this);
2066 GetEventHandler()->ProcessEvent(e
);
2069 m_click_pt
.x
= evt
.m_x
;
2070 m_click_pt
.y
= evt
.m_y
;
2076 m_pressed_button
= m_hover_button
;
2077 m_pressed_button
->cur_state
= wxAUI_BUTTON_STATE_PRESSED
;
2083 void wxAuiTabCtrl::OnLeftUp(wxMouseEvent
& evt
)
2085 if (GetCapture() == this)
2090 wxAuiNotebookEvent
evt(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
, m_windowId
);
2091 evt
.SetSelection(GetIdxFromWindow(m_click_tab
));
2092 evt
.SetOldSelection(evt
.GetSelection());
2093 evt
.SetEventObject(this);
2094 GetEventHandler()->ProcessEvent(evt
);
2098 if (m_pressed_button
)
2100 // make sure we're still clicking the button
2101 wxAuiTabContainerButton
* button
= NULL
;
2102 if (!ButtonHitTest(evt
.m_x
, evt
.m_y
, &button
))
2105 if (button
!= m_pressed_button
)
2107 m_pressed_button
= NULL
;
2114 if (!(m_pressed_button
->cur_state
& wxAUI_BUTTON_STATE_DISABLED
))
2116 wxAuiNotebookEvent
evt(wxEVT_COMMAND_AUINOTEBOOK_BUTTON
, m_windowId
);
2117 evt
.SetInt(m_pressed_button
->id
);
2118 evt
.SetEventObject(this);
2119 GetEventHandler()->ProcessEvent(evt
);
2122 m_pressed_button
= NULL
;
2125 m_click_pt
= wxDefaultPosition
;
2126 m_is_dragging
= false;
2130 void wxAuiTabCtrl::OnMotion(wxMouseEvent
& evt
)
2132 wxPoint pos
= evt
.GetPosition();
2134 // check if the mouse is hovering above a button
2135 wxAuiTabContainerButton
* button
;
2136 if (ButtonHitTest(pos
.x
, pos
.y
, &button
))
2138 if (m_hover_button
&& button
!= m_hover_button
)
2140 m_hover_button
->cur_state
= wxAUI_BUTTON_STATE_NORMAL
;
2141 m_hover_button
= NULL
;
2146 if (button
->cur_state
!= wxAUI_BUTTON_STATE_HOVER
)
2148 button
->cur_state
= wxAUI_BUTTON_STATE_HOVER
;
2151 m_hover_button
= button
;
2159 m_hover_button
->cur_state
= wxAUI_BUTTON_STATE_NORMAL
;
2160 m_hover_button
= NULL
;
2167 if (!evt
.LeftIsDown() || m_click_pt
== wxDefaultPosition
)
2172 wxAuiNotebookEvent
evt(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
, m_windowId
);
2173 evt
.SetSelection(GetIdxFromWindow(m_click_tab
));
2174 evt
.SetOldSelection(evt
.GetSelection());
2175 evt
.SetEventObject(this);
2176 GetEventHandler()->ProcessEvent(evt
);
2181 int drag_x_threshold
= wxSystemSettings::GetMetric(wxSYS_DRAG_X
);
2182 int drag_y_threshold
= wxSystemSettings::GetMetric(wxSYS_DRAG_Y
);
2184 if (abs(pos
.x
- m_click_pt
.x
) > drag_x_threshold
||
2185 abs(pos
.y
- m_click_pt
.y
) > drag_y_threshold
)
2187 wxAuiNotebookEvent
evt(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
, m_windowId
);
2188 evt
.SetSelection(GetIdxFromWindow(m_click_tab
));
2189 evt
.SetOldSelection(evt
.GetSelection());
2190 evt
.SetEventObject(this);
2191 GetEventHandler()->ProcessEvent(evt
);
2193 m_is_dragging
= true;
2197 void wxAuiTabCtrl::OnLeaveWindow(wxMouseEvent
& WXUNUSED(event
))
2201 m_hover_button
->cur_state
= wxAUI_BUTTON_STATE_NORMAL
;
2202 m_hover_button
= NULL
;
2208 void wxAuiTabCtrl::OnButton(wxAuiNotebookEvent
& event
)
2210 int button
= event
.GetInt();
2212 if (button
== wxAUI_BUTTON_LEFT
|| button
== wxAUI_BUTTON_RIGHT
)
2214 if (button
== wxAUI_BUTTON_LEFT
)
2216 if (GetTabOffset() > 0)
2218 SetTabOffset(GetTabOffset()-1);
2225 SetTabOffset(GetTabOffset()+1);
2230 else if (button
== wxAUI_BUTTON_WINDOWLIST
)
2234 size_t i
, page_count
= m_pages
.GetCount();
2235 for (i
= 0; i
< page_count
; ++i
)
2237 wxAuiNotebookPage
& page
= m_pages
.Item(i
);
2238 as
.Add(page
.caption
);
2241 int idx
= GetArtProvider()->ShowWindowList(this, as
, GetActivePage());
2245 wxAuiNotebookEvent
e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
, m_windowId
);
2246 e
.SetSelection(idx
);
2247 e
.SetOldSelection(GetActivePage());
2248 e
.SetEventObject(this);
2249 GetEventHandler()->ProcessEvent(e
);
2258 // wxTabFrame is an interesting case. It's important that all child pages
2259 // of the multi-notebook control are all actually children of that control
2260 // (and not grandchildren). wxTabFrame facilitates this. There is one
2261 // instance of wxTabFrame for each tab control inside the multi-notebook.
2262 // It's important to know that wxTabFrame is not a real window, but it merely
2263 // used to capture the dimensions/positioning of the internal tab control and
2264 // it's managed page windows
2266 class wxTabFrame
: public wxWindow
2273 m_rect
= wxRect(0,0,200,200);
2274 m_tab_ctrl_height
= 20;
2277 void SetTabCtrlHeight(int h
)
2279 m_tab_ctrl_height
= h
;
2282 void DoSetSize(int x
, int y
,
2283 int width
, int height
,
2284 int WXUNUSED(sizeFlags
= wxSIZE_AUTO
))
2286 m_rect
= wxRect(x
, y
, width
, height
);
2290 void DoGetClientSize(int* x
, int* y
) const
2296 bool Show( bool WXUNUSED(show
= true) ) { return false; }
2303 m_tab_rect
= wxRect(m_rect
.x
, m_rect
.y
, m_rect
.width
, m_tab_ctrl_height
);
2304 m_tabs
->SetSize(m_rect
.x
, m_rect
.y
, m_rect
.width
, m_tab_ctrl_height
);
2305 m_tabs
->SetRect(wxRect(0, 0, m_rect
.width
, m_tab_ctrl_height
));
2309 wxAuiNotebookPageArray
& pages
= m_tabs
->GetPages();
2310 size_t i
, page_count
= pages
.GetCount();
2312 for (i
= 0; i
< page_count
; ++i
)
2314 wxAuiNotebookPage
& page
= pages
.Item(i
);
2315 page
.window
->SetSize(m_rect
.x
, m_rect
.y
+ m_tab_ctrl_height
,
2316 m_rect
.width
, m_rect
.height
- m_tab_ctrl_height
);
2318 if (page
.window
->IsKindOf(CLASSINFO(wxAuiMDIChildFrame
)))
2320 wxAuiMDIChildFrame
* wnd
= (wxAuiMDIChildFrame
*)page
.window
;
2321 wnd
->ApplyMDIChildFrameRect();
2326 void DoGetSize(int* x
, int* y
) const
2329 *x
= m_rect
.GetWidth();
2331 *y
= m_rect
.GetHeight();
2343 wxAuiTabCtrl
* m_tabs
;
2344 int m_tab_ctrl_height
;
2351 // -- wxAuiNotebook class implementation --
2353 BEGIN_EVENT_TABLE(wxAuiNotebook
, wxControl
)
2354 //EVT_ERASE_BACKGROUND(wxAuiNotebook::OnEraseBackground)
2355 EVT_SIZE(wxAuiNotebook::OnSize
)
2356 //EVT_LEFT_DOWN(wxAuiNotebook::OnLeftDown)
2357 EVT_CHILD_FOCUS(wxAuiNotebook::OnChildFocus
)
2358 EVT_COMMAND_RANGE(10000, 10100,
2359 wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
,
2360 wxAuiNotebook::OnTabClicked
)
2361 EVT_COMMAND_RANGE(10000, 10100,
2362 wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
,
2363 wxAuiNotebook::OnTabBeginDrag
)
2364 EVT_COMMAND_RANGE(10000, 10100,
2365 wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
,
2366 wxAuiNotebook::OnTabEndDrag
)
2367 EVT_COMMAND_RANGE(10000, 10100,
2368 wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
,
2369 wxAuiNotebook::OnTabDragMotion
)
2370 EVT_COMMAND_RANGE(10000, 10100,
2371 wxEVT_COMMAND_AUINOTEBOOK_BUTTON
,
2372 wxAuiNotebook::OnTabButton
)
2375 wxAuiNotebook::wxAuiNotebook()
2378 m_tab_id_counter
= 10000;
2380 m_tab_ctrl_height
= 20;
2381 m_requested_bmp_size
= wxDefaultSize
;
2384 wxAuiNotebook::wxAuiNotebook(wxWindow
*parent
,
2388 long style
) : wxControl(parent
, id
, pos
, size
, style
)
2391 m_requested_bmp_size
= wxDefaultSize
;
2392 InitNotebook(style
);
2395 bool wxAuiNotebook::Create(wxWindow
* parent
,
2401 if (!wxControl::Create(parent
, id
, pos
, size
, style
))
2404 InitNotebook(style
);
2409 // InitNotebook() contains common initialization
2410 // code called by all constructors
2411 void wxAuiNotebook::InitNotebook(long style
)
2414 m_tab_id_counter
= 10000;
2416 m_tab_ctrl_height
= 20;
2417 m_flags
= (unsigned int)style
;
2419 m_normal_font
= *wxNORMAL_FONT
;
2420 m_selected_font
= *wxNORMAL_FONT
;
2421 m_selected_font
.SetWeight(wxBOLD
);
2423 SetArtProvider(new wxAuiDefaultTabArt
);
2425 m_dummy_wnd
= new wxWindow(this, wxID_ANY
, wxPoint(0,0), wxSize(0,0));
2426 m_dummy_wnd
->SetSize(200, 200);
2427 m_dummy_wnd
->Show(false);
2429 m_mgr
.SetManagedWindow(this);
2430 m_mgr
.SetFlags(wxAUI_MGR_DEFAULT
| (1 << 28) /*wxAUI_MGR_NO_DOCK_SIZE_LIMIT*/);
2432 m_mgr
.AddPane(m_dummy_wnd
,
2433 wxAuiPaneInfo().Name(wxT("dummy")).Bottom().CaptionVisible(false).Show(false));
2438 wxAuiNotebook::~wxAuiNotebook()
2443 void wxAuiNotebook::SetArtProvider(wxAuiTabArt
* art
)
2445 m_tabs
.SetArtProvider(art
);
2447 SetTabCtrlHeight(CalculateTabCtrlHeight());
2450 void wxAuiNotebook::SetUniformBitmapSize(const wxSize
& size
)
2452 m_requested_bmp_size
= size
;
2454 // if window is already initialized, recalculate the tab height
2457 SetTabCtrlHeight(CalculateTabCtrlHeight());
2461 void wxAuiNotebook::SetTabCtrlHeight(int height
)
2463 // if the tab control height needs to change, update
2464 // all of our tab controls with the new height
2465 if (m_tab_ctrl_height
!= height
)
2467 wxAuiTabArt
* art
= m_tabs
.GetArtProvider();
2469 m_tab_ctrl_height
= height
;
2471 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2472 size_t i
, pane_count
= all_panes
.GetCount();
2473 for (i
= 0; i
< pane_count
; ++i
)
2475 wxAuiPaneInfo
& pane
= all_panes
.Item(i
);
2476 if (pane
.name
== wxT("dummy"))
2478 wxTabFrame
* tab_frame
= (wxTabFrame
*)pane
.window
;
2479 wxAuiTabCtrl
* tabctrl
= tab_frame
->m_tabs
;
2480 tab_frame
->SetTabCtrlHeight(m_tab_ctrl_height
);
2481 tabctrl
->SetArtProvider(art
->Clone());
2482 tab_frame
->DoSizing();
2487 void wxAuiNotebook::UpdateHintWindowSize()
2489 wxSize size
= CalculateNewSplitSize();
2491 // the placeholder hint window should be set to this size
2492 wxAuiPaneInfo
& info
= m_mgr
.GetPane(wxT("dummy"));
2496 info
.BestSize(size
);
2497 m_dummy_wnd
->SetSize(size
);
2502 // calculates the size of the new split
2503 wxSize
wxAuiNotebook::CalculateNewSplitSize()
2505 // count number of tab controls
2506 int tab_ctrl_count
= 0;
2507 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2508 size_t i
, pane_count
= all_panes
.GetCount();
2509 for (i
= 0; i
< pane_count
; ++i
)
2511 wxAuiPaneInfo
& pane
= all_panes
.Item(i
);
2512 if (pane
.name
== wxT("dummy"))
2517 wxSize new_split_size
;
2519 // if there is only one tab control, the first split
2520 // should happen around the middle
2521 if (tab_ctrl_count
< 2)
2523 new_split_size
= GetClientSize();
2524 new_split_size
.x
/= 2;
2525 new_split_size
.y
/= 2;
2529 // this is in place of a more complicated calculation
2530 // that needs to be implemented
2531 new_split_size
= wxSize(180,180);
2534 return new_split_size
;
2537 int wxAuiNotebook::CalculateTabCtrlHeight()
2539 // find out new best tab height
2540 wxAuiTabArt
* art
= m_tabs
.GetArtProvider();
2542 return art
->GetBestTabCtrlSize(this,
2544 m_requested_bmp_size
);
2548 wxAuiTabArt
* wxAuiNotebook::GetArtProvider() const
2550 return m_tabs
.GetArtProvider();
2553 void wxAuiNotebook::SetWindowStyleFlag(long style
)
2555 wxControl::SetWindowStyleFlag(style
);
2557 m_flags
= (unsigned int)style
;
2559 // if the control is already initialized
2560 if (m_mgr
.GetManagedWindow() == (wxWindow
*)this)
2562 // let all of the tab children know about the new style
2564 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2565 size_t i
, pane_count
= all_panes
.GetCount();
2566 for (i
= 0; i
< pane_count
; ++i
)
2568 wxAuiPaneInfo
& pane
= all_panes
.Item(i
);
2569 if (pane
.name
== wxT("dummy"))
2571 wxTabFrame
* tabframe
= (wxTabFrame
*)pane
.window
;
2572 wxAuiTabCtrl
* tabctrl
= tabframe
->m_tabs
;
2573 tabctrl
->SetFlags(m_flags
);
2574 tabframe
->DoSizing();
2582 bool wxAuiNotebook::AddPage(wxWindow
* page
,
2583 const wxString
& caption
,
2585 const wxBitmap
& bitmap
)
2587 return InsertPage(GetPageCount(), page
, caption
, select
, bitmap
);
2590 bool wxAuiNotebook::InsertPage(size_t page_idx
,
2592 const wxString
& caption
,
2594 const wxBitmap
& bitmap
)
2596 wxAuiNotebookPage info
;
2598 info
.caption
= caption
;
2599 info
.bitmap
= bitmap
;
2600 info
.active
= false;
2602 // if there are currently no tabs, the first added
2603 // tab must be active
2604 if (m_tabs
.GetPageCount() == 0)
2607 m_tabs
.InsertPage(page
, info
, page_idx
);
2609 wxAuiTabCtrl
* active_tabctrl
= GetActiveTabCtrl();
2610 if (page_idx
>= active_tabctrl
->GetPageCount())
2611 active_tabctrl
->AddPage(page
, info
);
2613 active_tabctrl
->InsertPage(page
, info
, page_idx
);
2615 SetTabCtrlHeight(CalculateTabCtrlHeight());
2617 active_tabctrl
->DoShowHide();
2621 int idx
= m_tabs
.GetIdxFromWindow(page
);
2622 wxASSERT_MSG(idx
!= -1, wxT("Invalid Page index returned on wxAuiNotebook::InsertPage()"));
2631 // DeletePage() removes a tab from the multi-notebook,
2632 // and destroys the window as well
2633 bool wxAuiNotebook::DeletePage(size_t page_idx
)
2635 wxWindow
* wnd
= m_tabs
.GetWindowFromIdx(page_idx
);
2637 if (!RemovePage(page_idx
))
2640 // actually destroy the window now
2641 if (wnd
->IsKindOf(CLASSINFO(wxAuiMDIChildFrame
)))
2643 // delete the child frame with pending delete, as is
2644 // customary with frame windows
2645 if (!wxPendingDelete
.Member(wnd
))
2646 wxPendingDelete
.Append(wnd
);
2658 // RemovePage() removes a tab from the multi-notebook,
2659 // but does not destroy the window
2660 bool wxAuiNotebook::RemovePage(size_t page_idx
)
2662 wxWindow
* wnd
= m_tabs
.GetWindowFromIdx(page_idx
);
2663 wxWindow
* new_active
= NULL
;
2665 // find out which onscreen tab ctrl owns this tab
2668 if (!FindTab(wnd
, &ctrl
, &ctrl_idx
))
2671 // find a new page and set it as active
2672 int new_idx
= ctrl_idx
+1;
2673 if (new_idx
>= (int)ctrl
->GetPageCount())
2674 new_idx
= ctrl_idx
-1;
2676 if (new_idx
>= 0 && new_idx
< (int)ctrl
->GetPageCount())
2678 new_active
= ctrl
->GetWindowFromIdx(new_idx
);
2682 // set the active page to the first page that
2683 // isn't the one being deleted
2684 size_t i
, page_count
= m_tabs
.GetPageCount();
2685 for (i
= 0; i
< page_count
; ++i
)
2687 wxWindow
* w
= m_tabs
.GetWindowFromIdx(i
);
2690 new_active
= m_tabs
.GetWindowFromIdx(i
);
2696 // remove the tab from main catalog
2697 if (!m_tabs
.RemovePage(wnd
))
2700 // remove the tab from the onscreen tab ctrl
2701 ctrl
->RemovePage(wnd
);
2704 RemoveEmptyTabFrames();
2706 // set new active pane
2710 SetSelection(m_tabs
.GetIdxFromWindow(new_active
));
2716 // GetPageIndex() returns the index of the page, or -1 if the
2717 // page could not be located in the notebook
2718 int wxAuiNotebook::GetPageIndex(wxWindow
* page_wnd
) const
2720 return m_tabs
.GetIdxFromWindow(page_wnd
);
2725 // SetPageText() changes the tab caption of the specified page
2726 bool wxAuiNotebook::SetPageText(size_t page_idx
, const wxString
& text
)
2728 if (page_idx
>= m_tabs
.GetPageCount())
2731 // update our own tab catalog
2732 wxAuiNotebookPage
& page_info
= m_tabs
.GetPage(page_idx
);
2733 page_info
.caption
= text
;
2735 // update what's on screen
2738 if (FindTab(page_info
.window
, &ctrl
, &ctrl_idx
))
2740 wxAuiNotebookPage
& info
= ctrl
->GetPage(ctrl_idx
);
2741 info
.caption
= text
;
2750 bool wxAuiNotebook::SetPageBitmap(size_t page_idx
, const wxBitmap
& bitmap
)
2752 if (page_idx
>= m_tabs
.GetPageCount())
2755 // update our own tab catalog
2756 wxAuiNotebookPage
& page_info
= m_tabs
.GetPage(page_idx
);
2757 page_info
.bitmap
= bitmap
;
2759 // tab height might have changed
2760 SetTabCtrlHeight(CalculateTabCtrlHeight());
2762 // update what's on screen
2765 if (FindTab(page_info
.window
, &ctrl
, &ctrl_idx
))
2767 wxAuiNotebookPage
& info
= ctrl
->GetPage(ctrl_idx
);
2768 info
.bitmap
= bitmap
;
2777 // GetSelection() returns the index of the currently active page
2778 int wxAuiNotebook::GetSelection() const
2783 // SetSelection() sets the currently active page
2784 size_t wxAuiNotebook::SetSelection(size_t new_page
)
2786 wxWindow
* wnd
= m_tabs
.GetWindowFromIdx(new_page
);
2790 wxAuiNotebookEvent
evt(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
, m_windowId
);
2791 evt
.SetSelection(new_page
);
2792 evt
.SetOldSelection(m_curpage
);
2793 evt
.SetEventObject(this);
2794 if (!GetEventHandler()->ProcessEvent(evt
) || evt
.IsAllowed())
2796 int old_curpage
= m_curpage
;
2797 m_curpage
= new_page
;
2799 // program allows the page change
2800 evt
.SetEventType(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
);
2801 (void)GetEventHandler()->ProcessEvent(evt
);
2806 if (FindTab(wnd
, &ctrl
, &ctrl_idx
))
2808 m_tabs
.SetActivePage(wnd
);
2810 ctrl
->SetActivePage(ctrl_idx
);
2817 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2818 size_t i
, pane_count
= all_panes
.GetCount();
2819 for (i
= 0; i
< pane_count
; ++i
)
2821 wxAuiPaneInfo
& pane
= all_panes
.Item(i
);
2822 if (pane
.name
== wxT("dummy"))
2824 wxAuiTabCtrl
* tabctrl
= ((wxTabFrame
*)pane
.window
)->m_tabs
;
2825 if (tabctrl
!= ctrl
)
2826 tabctrl
->SetSelectedFont(m_normal_font
);
2828 tabctrl
->SetSelectedFont(m_selected_font
);
2841 // GetPageCount() returns the total number of
2842 // pages managed by the multi-notebook
2843 size_t wxAuiNotebook::GetPageCount() const
2845 return m_tabs
.GetPageCount();
2848 // GetPage() returns the wxWindow pointer of the
2850 wxWindow
* wxAuiNotebook::GetPage(size_t page_idx
) const
2852 wxASSERT(page_idx
< m_tabs
.GetPageCount());
2854 return m_tabs
.GetWindowFromIdx(page_idx
);
2857 // DoSizing() performs all sizing operations in each tab control
2858 void wxAuiNotebook::DoSizing()
2860 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2861 size_t i
, pane_count
= all_panes
.GetCount();
2862 for (i
= 0; i
< pane_count
; ++i
)
2864 if (all_panes
.Item(i
).name
== wxT("dummy"))
2867 wxTabFrame
* tabframe
= (wxTabFrame
*)all_panes
.Item(i
).window
;
2868 tabframe
->DoSizing();
2872 // GetActiveTabCtrl() returns the active tab control. It is
2873 // called to determine which control gets new windows being added
2874 wxAuiTabCtrl
* wxAuiNotebook::GetActiveTabCtrl()
2876 if (m_curpage
>= 0 && m_curpage
< (int)m_tabs
.GetPageCount())
2881 // find the tab ctrl with the current page
2882 if (FindTab(m_tabs
.GetPage(m_curpage
).window
,
2889 // no current page, just find the first tab ctrl
2890 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2891 size_t i
, pane_count
= all_panes
.GetCount();
2892 for (i
= 0; i
< pane_count
; ++i
)
2894 if (all_panes
.Item(i
).name
== wxT("dummy"))
2897 wxTabFrame
* tabframe
= (wxTabFrame
*)all_panes
.Item(i
).window
;
2898 return tabframe
->m_tabs
;
2901 // If there is no tabframe at all, create one
2902 wxTabFrame
* tabframe
= new wxTabFrame
;
2903 tabframe
->SetTabCtrlHeight(m_tab_ctrl_height
);
2904 tabframe
->m_tabs
= new wxAuiTabCtrl(this,
2909 tabframe
->m_tabs
->SetFlags(m_flags
);
2910 tabframe
->m_tabs
->SetArtProvider(m_tabs
.GetArtProvider()->Clone());
2911 m_mgr
.AddPane(tabframe
,
2912 wxAuiPaneInfo().Center().CaptionVisible(false));
2916 return tabframe
->m_tabs
;
2919 // FindTab() finds the tab control that currently contains the window as well
2920 // as the index of the window in the tab control. It returns true if the
2921 // window was found, otherwise false.
2922 bool wxAuiNotebook::FindTab(wxWindow
* page
, wxAuiTabCtrl
** ctrl
, int* idx
)
2924 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
2925 size_t i
, pane_count
= all_panes
.GetCount();
2926 for (i
= 0; i
< pane_count
; ++i
)
2928 if (all_panes
.Item(i
).name
== wxT("dummy"))
2931 wxTabFrame
* tabframe
= (wxTabFrame
*)all_panes
.Item(i
).window
;
2933 int page_idx
= tabframe
->m_tabs
->GetIdxFromWindow(page
);
2936 *ctrl
= tabframe
->m_tabs
;
2946 void wxAuiNotebook::OnEraseBackground(wxEraseEvent
&)
2950 void wxAuiNotebook::OnSize(wxSizeEvent
& evt
)
2952 UpdateHintWindowSize();
2957 void wxAuiNotebook::OnTabClicked(wxCommandEvent
& command_evt
)
2959 wxAuiNotebookEvent
& evt
= (wxAuiNotebookEvent
&)command_evt
;
2961 wxAuiTabCtrl
* ctrl
= (wxAuiTabCtrl
*)evt
.GetEventObject();
2962 wxASSERT(ctrl
!= NULL
);
2964 wxWindow
* wnd
= ctrl
->GetWindowFromIdx(evt
.GetSelection());
2965 wxASSERT(wnd
!= NULL
);
2967 int idx
= m_tabs
.GetIdxFromWindow(wnd
);
2968 wxASSERT(idx
!= -1);
2973 void wxAuiNotebook::OnTabBeginDrag(wxCommandEvent
&)
2978 void wxAuiNotebook::OnTabDragMotion(wxCommandEvent
& evt
)
2980 wxPoint screen_pt
= ::wxGetMousePosition();
2981 wxPoint client_pt
= ScreenToClient(screen_pt
);
2984 wxAuiTabCtrl
* src_tabs
= (wxAuiTabCtrl
*)evt
.GetEventObject();
2985 wxAuiTabCtrl
* dest_tabs
= GetTabCtrlFromPoint(client_pt
);
2987 if (dest_tabs
== src_tabs
)
2991 src_tabs
->SetCursor(wxCursor(wxCURSOR_ARROW
));
2994 // always hide the hint for inner-tabctrl drag
2997 // if tab moving is not allowed, leave
2998 if (!(m_flags
& wxAUI_NB_TAB_MOVE
))
3003 wxPoint pt
= dest_tabs
->ScreenToClient(screen_pt
);
3004 wxWindow
* dest_location_tab
;
3006 // this is an inner-tab drag/reposition
3007 if (dest_tabs
->TabHitTest(pt
.x
, pt
.y
, &dest_location_tab
))
3009 int src_idx
= evt
.GetSelection();
3010 int dest_idx
= dest_tabs
->GetIdxFromWindow(dest_location_tab
);
3012 // prevent jumpy drag
3013 if ((src_idx
== dest_idx
) || dest_idx
== -1 ||
3014 (src_idx
> dest_idx
&& m_last_drag_x
<= pt
.x
) ||
3015 (src_idx
< dest_idx
&& m_last_drag_x
>= pt
.x
))
3017 m_last_drag_x
= pt
.x
;
3022 wxWindow
* src_tab
= dest_tabs
->GetWindowFromIdx(src_idx
);
3023 dest_tabs
->MovePage(src_tab
, dest_idx
);
3024 dest_tabs
->SetActivePage((size_t)dest_idx
);
3025 dest_tabs
->DoShowHide();
3026 dest_tabs
->Refresh();
3027 m_last_drag_x
= pt
.x
;
3035 // if external drag is allowed, check if the tab is being dragged
3036 // over a different wxAuiNotebook control
3037 if (m_flags
& wxAUI_NB_TAB_EXTERNAL_MOVE
)
3039 wxWindow
* tab_ctrl
= ::wxFindWindowAtPoint(screen_pt
);
3041 // if we aren't over any window, stop here
3045 // make sure we are not over the hint window
3046 if (!tab_ctrl
->IsKindOf(CLASSINFO(wxFrame
)))
3050 if (tab_ctrl
->IsKindOf(CLASSINFO(wxAuiTabCtrl
)))
3052 tab_ctrl
= tab_ctrl
->GetParent();
3057 wxAuiNotebook
* nb
= (wxAuiNotebook
*)tab_ctrl
->GetParent();
3061 wxRect hint_rect
= tab_ctrl
->GetClientRect();
3062 tab_ctrl
->ClientToScreen(&hint_rect
.x
, &hint_rect
.y
);
3063 m_mgr
.ShowHint(hint_rect
);
3072 // we are either over a hint window, or not over a tab
3073 // window, and there is no where to drag to, so exit
3080 // if there are less than two panes, split can't happen, so leave
3081 if (m_tabs
.GetPageCount() < 2)
3084 // if tab moving is not allowed, leave
3085 if (!(m_flags
& wxAUI_NB_TAB_SPLIT
))
3091 src_tabs
->SetCursor(wxCursor(wxCURSOR_SIZING
));
3097 wxRect hint_rect
= dest_tabs
->GetRect();
3098 ClientToScreen(&hint_rect
.x
, &hint_rect
.y
);
3099 m_mgr
.ShowHint(hint_rect
);
3103 m_mgr
.DrawHintRect(m_dummy_wnd
, client_pt
, zero
);
3109 void wxAuiNotebook::OnTabEndDrag(wxCommandEvent
& command_evt
)
3111 wxAuiNotebookEvent
& evt
= (wxAuiNotebookEvent
&)command_evt
;
3116 wxAuiTabCtrl
* src_tabs
= (wxAuiTabCtrl
*)evt
.GetEventObject();
3117 wxAuiTabCtrl
* dest_tabs
= NULL
;
3120 // set cursor back to an arrow
3121 src_tabs
->SetCursor(wxCursor(wxCURSOR_ARROW
));
3124 // get the mouse position, which will be used to determine the drop point
3125 wxPoint mouse_screen_pt
= ::wxGetMousePosition();
3126 wxPoint mouse_client_pt
= ScreenToClient(mouse_screen_pt
);
3130 // check for an external move
3131 if (m_flags
& wxAUI_NB_TAB_EXTERNAL_MOVE
)
3133 wxWindow
* tab_ctrl
= ::wxFindWindowAtPoint(mouse_screen_pt
);
3137 if (tab_ctrl
->IsKindOf(CLASSINFO(wxAuiTabCtrl
)))
3139 tab_ctrl
= tab_ctrl
->GetParent();
3144 wxAuiNotebook
* nb
= (wxAuiNotebook
*)tab_ctrl
->GetParent();
3148 // find out from the destination control
3149 // if it's ok to drop this tab here
3150 wxAuiNotebookEvent
e(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
, m_windowId
);
3151 e
.SetSelection(evt
.GetSelection());
3152 e
.SetOldSelection(evt
.GetSelection());
3153 e
.SetEventObject(this);
3154 e
.SetDragSource(this);
3155 e
.Veto(); // dropping must be explicitly approved by control owner
3157 nb
->GetEventHandler()->ProcessEvent(e
);
3161 // no answer or negative answer
3167 int src_idx
= evt
.GetSelection();
3168 wxWindow
* src_page
= src_tabs
->GetWindowFromIdx(src_idx
);
3170 // get main index of the page
3171 int main_idx
= m_tabs
.GetIdxFromWindow(src_page
);
3173 // make a copy of the page info
3174 wxAuiNotebookPage page_info
= m_tabs
.GetPage((size_t)main_idx
);
3176 // remove the page from the source notebook
3177 RemovePage(main_idx
);
3179 // reparent the page
3180 src_page
->Reparent(nb
);
3183 // found out the insert idx
3184 wxAuiTabCtrl
* dest_tabs
= (wxAuiTabCtrl
*)tab_ctrl
;
3185 wxPoint pt
= dest_tabs
->ScreenToClient(mouse_screen_pt
);
3187 wxWindow
* target
= NULL
;
3188 int insert_idx
= -1;
3189 dest_tabs
->TabHitTest(pt
.x
, pt
.y
, &target
);
3192 insert_idx
= dest_tabs
->GetIdxFromWindow(target
);
3196 // add the page to the new notebook
3197 if (insert_idx
== -1)
3198 insert_idx
= dest_tabs
->GetPageCount();
3199 dest_tabs
->InsertPage(page_info
.window
, page_info
, insert_idx
);
3200 nb
->m_tabs
.AddPage(page_info
.window
, page_info
);
3203 dest_tabs
->DoShowHide();
3204 dest_tabs
->Refresh();
3206 // set the selection in the destination tab control
3207 nb
->SetSelection(nb
->m_tabs
.GetIdxFromWindow(page_info
.window
));
3217 // only perform a tab split if it's allowed
3218 if ((m_flags
& wxAUI_NB_TAB_SPLIT
) && m_tabs
.GetPageCount() >= 2)
3220 // If the pointer is in an existing tab frame, do a tab insert
3221 wxWindow
* hit_wnd
= ::wxFindWindowAtPoint(mouse_screen_pt
);
3222 wxTabFrame
* tab_frame
= (wxTabFrame
*)GetTabFrameFromTabCtrl(hit_wnd
);
3223 int insert_idx
= -1;
3226 dest_tabs
= tab_frame
->m_tabs
;
3228 if (dest_tabs
== src_tabs
)
3232 wxPoint pt
= dest_tabs
->ScreenToClient(mouse_screen_pt
);
3233 wxWindow
* target
= NULL
;
3234 dest_tabs
->TabHitTest(pt
.x
, pt
.y
, &target
);
3237 insert_idx
= dest_tabs
->GetIdxFromWindow(target
);
3243 wxRect rect
= m_mgr
.CalculateHintRect(m_dummy_wnd
,
3248 // there is no suitable drop location here, exit out
3252 // If there is no tabframe at all, create one
3253 wxTabFrame
* new_tabs
= new wxTabFrame
;
3254 new_tabs
->m_rect
= wxRect(wxPoint(0,0), CalculateNewSplitSize());
3255 new_tabs
->SetTabCtrlHeight(m_tab_ctrl_height
);
3256 new_tabs
->m_tabs
= new wxAuiTabCtrl(this,
3261 new_tabs
->m_tabs
->SetArtProvider(m_tabs
.GetArtProvider()->Clone());
3262 new_tabs
->m_tabs
->SetFlags(m_flags
);
3264 m_mgr
.AddPane(new_tabs
,
3265 wxAuiPaneInfo().Bottom().CaptionVisible(false),
3268 dest_tabs
= new_tabs
->m_tabs
;
3273 // remove the page from the source tabs
3274 wxAuiNotebookPage page_info
= src_tabs
->GetPage(evt
.GetSelection());
3275 page_info
.active
= false;
3276 src_tabs
->RemovePage(page_info
.window
);
3277 if (src_tabs
->GetPageCount() > 0)
3279 src_tabs
->SetActivePage((size_t)0);
3280 src_tabs
->DoShowHide();
3281 src_tabs
->Refresh();
3286 // add the page to the destination tabs
3287 if (insert_idx
== -1)
3288 insert_idx
= dest_tabs
->GetPageCount();
3289 dest_tabs
->InsertPage(page_info
.window
, page_info
, insert_idx
);
3291 if (src_tabs
->GetPageCount() == 0)
3293 RemoveEmptyTabFrames();
3297 dest_tabs
->DoShowHide();
3298 dest_tabs
->Refresh();
3300 SetSelection(m_tabs
.GetIdxFromWindow(page_info
.window
));
3302 UpdateHintWindowSize();
3308 wxAuiTabCtrl
* wxAuiNotebook::GetTabCtrlFromPoint(const wxPoint
& pt
)
3310 // if we've just removed the last tab from the source
3311 // tab set, the remove the tab control completely
3312 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
3313 size_t i
, pane_count
= all_panes
.GetCount();
3314 for (i
= 0; i
< pane_count
; ++i
)
3316 if (all_panes
.Item(i
).name
== wxT("dummy"))
3319 wxTabFrame
* tabframe
= (wxTabFrame
*)all_panes
.Item(i
).window
;
3320 if (tabframe
->m_tab_rect
.Contains(pt
))
3321 return tabframe
->m_tabs
;
3327 wxWindow
* wxAuiNotebook::GetTabFrameFromTabCtrl(wxWindow
* tab_ctrl
)
3329 // if we've just removed the last tab from the source
3330 // tab set, the remove the tab control completely
3331 wxAuiPaneInfoArray
& all_panes
= m_mgr
.GetAllPanes();
3332 size_t i
, pane_count
= all_panes
.GetCount();
3333 for (i
= 0; i
< pane_count
; ++i
)
3335 if (all_panes
.Item(i
).name
== wxT("dummy"))
3338 wxTabFrame
* tabframe
= (wxTabFrame
*)all_panes
.Item(i
).window
;
3339 if (tabframe
->m_tabs
== tab_ctrl
)
3348 void wxAuiNotebook::RemoveEmptyTabFrames()
3350 // if we've just removed the last tab from the source
3351 // tab set, the remove the tab control completely
3352 wxAuiPaneInfoArray all_panes
= m_mgr
.GetAllPanes();
3353 size_t i
, pane_count
= all_panes
.GetCount();
3354 for (i
= 0; i
< pane_count
; ++i
)
3356 if (all_panes
.Item(i
).name
== wxT("dummy"))
3359 wxTabFrame
* tab_frame
= (wxTabFrame
*)all_panes
.Item(i
).window
;
3360 if (tab_frame
->m_tabs
->GetPageCount() == 0)
3362 m_mgr
.DetachPane(tab_frame
);
3364 // use pending delete because sometimes during
3365 // window closing, refreshs are pending
3366 if (!wxPendingDelete
.Member(tab_frame
->m_tabs
))
3367 wxPendingDelete
.Append(tab_frame
->m_tabs
);
3368 //tab_frame->m_tabs->Destroy();
3375 // check to see if there is still a center pane;
3376 // if there isn't, make a frame the center pane
3377 wxAuiPaneInfoArray panes
= m_mgr
.GetAllPanes();
3378 pane_count
= panes
.GetCount();
3379 wxWindow
* first_good
= NULL
;
3380 bool center_found
= false;
3381 for (i
= 0; i
< pane_count
; ++i
)
3383 if (panes
.Item(i
).name
== wxT("dummy"))
3385 if (panes
.Item(i
).dock_direction
== wxAUI_DOCK_CENTRE
)
3386 center_found
= true;
3388 first_good
= panes
.Item(i
).window
;
3391 if (!center_found
&& first_good
)
3393 m_mgr
.GetPane(first_good
).Centre();
3399 void wxAuiNotebook::OnChildFocus(wxChildFocusEvent
& evt
)
3401 int idx
= m_tabs
.GetIdxFromWindow(evt
.GetWindow());
3402 if (idx
!= -1 && idx
!= m_curpage
)
3409 void wxAuiNotebook::OnTabButton(wxCommandEvent
& command_evt
)
3411 wxAuiNotebookEvent
& evt
= (wxAuiNotebookEvent
&)command_evt
;
3412 wxAuiTabCtrl
* tabs
= (wxAuiTabCtrl
*)evt
.GetEventObject();
3414 int button_id
= evt
.GetInt();
3416 if (button_id
== wxAUI_BUTTON_CLOSE
)
3418 int selection
= tabs
->GetActivePage();
3420 if (selection
!= -1)
3422 wxWindow
* close_wnd
= tabs
->GetWindowFromIdx(selection
);
3425 // ask owner if it's ok to close the tab
3426 wxAuiNotebookEvent
e(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
, m_windowId
);
3427 e
.SetSelection(m_tabs
.GetIdxFromWindow(close_wnd
));
3428 e
.SetOldSelection(evt
.GetSelection());
3429 e
.SetEventObject(this);
3430 GetEventHandler()->ProcessEvent(e
);
3435 if (close_wnd
->IsKindOf(CLASSINFO(wxAuiMDIChildFrame
)))
3441 int main_idx
= m_tabs
.GetIdxFromWindow(close_wnd
);
3442 DeletePage(main_idx
);