1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxAuiNotebook
4 // Author: wxWidgets team
5 // Licence: wxWindows licence
6 /////////////////////////////////////////////////////////////////////////////
11 wxAuiNotebook is part of the wxAUI class framework, which represents a
12 notebook control, managing multiple windows with associated tabs.
14 See also @ref overview_aui.
16 wxAuiNotebook is a notebook control which implements many features common in
17 applications with dockable panes.
18 Specifically, wxAuiNotebook implements functionality which allows the user to
19 rearrange tab order via drag-and-drop, split the tab window into many different
20 splitter configurations, and toggle through different themes to customize
21 the control's look and feel.
23 The default theme that is used is wxAuiDefaultTabArt, which provides a modern,
25 The theme can be changed by calling wxAuiNotebook::SetArtProvider.
28 @style{wxAUI_NB_DEFAULT_STYLE}
29 Defined as wxAUI_NB_TOP | wxAUI_NB_TAB_SPLIT | wxAUI_NB_TAB_MOVE |
30 wxAUI_NB_SCROLL_BUTTONS | wxAUI_NB_CLOSE_ON_ACTIVE_TAB |
31 wxAUI_NB_MIDDLE_CLICK_CLOSE.
32 @style{wxAUI_NB_TAB_SPLIT}
33 Allows the tab control to be split by dragging a tab.
34 @style{wxAUI_NB_TAB_MOVE}
35 Allows a tab to be moved horizontally by dragging.
36 @style{wxAUI_NB_TAB_EXTERNAL_MOVE}
37 Allows a tab to be moved to another tab control.
38 @style{wxAUI_NB_TAB_FIXED_WIDTH}
39 With this style, all tabs have the same width.
40 @style{wxAUI_NB_SCROLL_BUTTONS}
41 With this style, left and right scroll buttons are displayed.
42 @style{wxAUI_NB_WINDOWLIST_BUTTON}
43 With this style, a drop-down list of windows is available.
44 @style{wxAUI_NB_CLOSE_BUTTON}
45 With this style, a close button is available on the tab bar.
46 @style{wxAUI_NB_CLOSE_ON_ACTIVE_TAB}
47 With this style, the close button is visible on the active tab.
48 @style{wxAUI_NB_CLOSE_ON_ALL_TABS}
49 With this style, the close button is visible on all tabs.
50 @style{wxAUI_NB_MIDDLE_CLICK_CLOSE}
51 With this style, middle click on a tab closes the tab.
53 With this style, tabs are drawn along the top of the notebook.
54 @style{wxAUI_NB_BOTTOM}
55 With this style, tabs are drawn along the bottom of the notebook.
58 @beginEventEmissionTable{wxAuiNotebookEvent}
59 @event{EVT_AUINOTEBOOK_PAGE_CLOSE(id, func)}
60 A page is about to be closed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CLOSE event.
61 @event{EVT_AUINOTEBOOK_PAGE_CLOSED(winid, fn)}
62 A page has been closed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CLOSED event.
63 @event{EVT_AUINOTEBOOK_PAGE_CHANGED(id, func)}
64 The page selection was changed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CHANGED event.
65 @event{EVT_AUINOTEBOOK_PAGE_CHANGING(id, func)}
66 The page selection is about to be changed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CHANGING event. This event can be vetoed.
67 @event{EVT_AUINOTEBOOK_BUTTON(id, func)}
68 The window list button has been pressed. Processes a @c wxEVT_AUINOTEBOOK_BUTTON event.
69 @event{EVT_AUINOTEBOOK_BEGIN_DRAG(id, func)}
70 Dragging is about to begin. Processes a @c wxEVT_AUINOTEBOOK_BEGIN_DRAG event.
71 @event{EVT_AUINOTEBOOK_END_DRAG(id, func)}
72 Dragging has ended. Processes a @c wxEVT_AUINOTEBOOK_END_DRAG event.
73 @event{EVT_AUINOTEBOOK_DRAG_MOTION(id, func)}
74 Emitted during a drag and drop operation. Processes a @c wxEVT_AUINOTEBOOK_DRAG_MOTION event.
75 @event{EVT_AUINOTEBOOK_ALLOW_DND(id, func)}
76 Whether to allow a tab to be dropped. Processes a @c wxEVT_AUINOTEBOOK_ALLOW_DND event. This event must be specially allowed.
77 @event{EVT_AUINOTEBOOK_DRAG_DONE(winid, fn)}
78 Notify that the tab has been dragged. Processes a @c wxEVT_AUINOTEBOOK_DRAG_DONE event.
79 @event{EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN(winid, fn)}
80 The middle mouse button is pressed on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_MIDDLE_DOWN event.
81 @event{EVT_AUINOTEBOOK_TAB_MIDDLE_UP(winid, fn)}
82 The middle mouse button is released on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_MIDDLE_UP event.
83 @event{EVT_AUINOTEBOOK_TAB_RIGHT_DOWN(winid, fn)}
84 The right mouse button is pressed on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_RIGHT_DOWN event.
85 @event{EVT_AUINOTEBOOK_TAB_RIGHT_UP(winid, fn)}
86 The right mouse button is released on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_RIGHT_UP event.
87 @event{EVT_AUINOTEBOOK_BG_DCLICK(winid, fn)}
88 Double clicked on the tabs background area. Processes a @c wxEVT_AUINOTEBOOK_BG_DCLICK event.
94 class wxAuiNotebook
: public wxBookCtrlBase
103 Constructor. Creates a wxAuiNotebok control.
105 wxAuiNotebook(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
106 const wxPoint
& pos
= wxDefaultPosition
,
107 const wxSize
& size
= wxDefaultSize
,
108 long style
= wxAUI_NB_DEFAULT_STYLE
);
112 If the @a select parameter is @true, calling this will generate a page change event.
114 bool AddPage(wxWindow
* page
, const wxString
& caption
,
116 const wxBitmap
& bitmap
= wxNullBitmap
);
121 The page must have the book control itself as the parent and must not
122 have been added to this control previously.
124 The call to this function may generate the page changing events.
127 Specifies the new page.
129 Specifies the text for the new page.
131 Specifies whether the page should be selected.
133 Specifies the optional image index for the new page.
135 @return @true if successful, @false otherwise.
137 @remarks Do not delete the page, it will be deleted by the book control.
142 virtual bool AddPage(wxWindow
*page
, const wxString
&text
, bool select
, int imageId
);
145 Sets the selection to the next or previous page.
147 void AdvanceSelection(bool forward
= true);
150 Changes the selection for the given page, returning the previous selection.
152 This function behaves as SetSelection() but does @em not generate the
153 page changing events.
155 See @ref overview_events_prog for more information.
158 virtual int ChangeSelection(size_t n
);
161 Creates the notebook window.
163 bool Create(wxWindow
* parent
, wxWindowID id
= wxID_ANY
,
164 const wxPoint
& pos
= wxDefaultPosition
,
165 const wxSize
& size
= wxDefaultSize
,
172 virtual bool DeleteAllPages();
175 Deletes a page at the given index.
176 Calling this method will generate a page change event.
178 bool DeletePage(size_t page
);
181 Returns the associated art provider.
183 wxAuiTabArt
* GetArtProvider() const;
186 Returns the currently selected page or @NULL.
189 wxWindow
* GetCurrentPage () const;
192 Returns the desired height of the notebook for the given page height.
193 Use this to fit the notebook to a given page size.
195 int GetHeightForPageHeight(int pageHeight
);
198 Returns the page specified by the given index.
200 wxWindow
* GetPage(size_t page_idx
) const;
203 Returns the tab bitmap for the page.
205 wxBitmap
GetPageBitmap(size_t page
) const;
208 Returns the number of pages in the notebook.
210 size_t GetPageCount() const;
213 Returns the page index for the specified window.
214 If the window is not found in the notebook, wxNOT_FOUND is returned.
216 int GetPageIndex(wxWindow
* page_wnd
) const;
219 Returns the tab label for the page.
221 wxString
GetPageText(size_t page
) const;
224 Returns the tooltip for the tab label of the page.
228 wxString
GetPageToolTip(size_t pageIdx
) const;
231 Returns the currently selected page.
233 int GetSelection() const;
236 Returns the height of the tab control.
238 int GetTabCtrlHeight() const;
241 InsertPage() is similar to AddPage, but allows the ability to specify the
243 If the @a select parameter is @true, calling this will generate a page change
246 bool InsertPage(size_t page_idx
, wxWindow
* page
,
247 const wxString
& caption
,
249 const wxBitmap
& bitmap
= wxNullBitmap
);
252 Inserts a new page at the specified position.
255 Specifies the position for the new page.
257 Specifies the new page.
259 Specifies the text for the new page.
261 Specifies whether the page should be selected.
263 Specifies the optional image index for the new page.
265 @return @true if successful, @false otherwise.
267 @remarks Do not delete the page, it will be deleted by the book control.
272 virtual bool InsertPage(size_t index
, wxWindow
*page
, const wxString
&text
,
273 bool select
=false, int imageId
=NO_IMAGE
);
276 Removes a page, without deleting the window pointer.
278 bool RemovePage(size_t page
);
281 Sets the art provider to be used by the notebook.
283 void SetArtProvider(wxAuiTabArt
* art
);
286 Sets the font for drawing the tab labels, using a bold version of the font for
289 virtual bool SetFont(const wxFont
& font
);
292 Sets the font for measuring tab labels.
294 void SetMeasuringFont(const wxFont
& font
);
297 Sets the font for drawing unselected tab labels.
299 void SetNormalFont(const wxFont
& font
);
302 Sets the bitmap for the page. To remove a bitmap from the tab caption, pass
305 bool SetPageBitmap(size_t page
, const wxBitmap
& bitmap
);
308 Sets the image index for the given page. @a image is an index into
309 the image list which was set with SetImageList().
312 virtual bool SetPageImage(size_t n
, int imageId
);
315 Sets the tab label for the page.
317 bool SetPageText(size_t page
, const wxString
& text
);
320 Sets the tooltip displayed when hovering over the tab label of the page.
323 @true if tooltip was updated, @false if it failed, e.g. because the
324 page index is invalid.
328 bool SetPageToolTip(size_t page
, const wxString
& text
);
331 Sets the font for drawing selected tab labels.
333 void SetSelectedFont(const wxFont
& font
);
336 Sets the page selection. Calling this method will generate a page change event.
338 size_t SetSelection(size_t new_page
);
341 Sets the tab height. By default, the tab control height is calculated
342 by measuring the text height and bitmap sizes on the tab captions. Calling this
343 method will override that calculation and set the tab control to the specified
344 height parameter. A call to this method will override any call to
345 SetUniformBitmapSize().
347 Specifying -1 as the height will return the control to its default auto-sizing
350 virtual void SetTabCtrlHeight(int height
);
354 Split performs a split operation programmatically. The argument @a page
355 indicates the page that will be split off. This page will also become the
356 active page after the split.
358 The @a direction argument specifies where the pane should go, it should be one
359 of the following: wxTOP, wxBOTTOM, wxLEFT, or wxRIGHT.
361 virtual void SetUniformBitmapSize(const wxSize
& size
);
362 virtual void Split(size_t page
, int direction
);
366 Shows the window menu for the active tab control associated with this notebook,
367 and returns @true if a selection was made.
369 bool ShowWindowMenu();
373 @class wxAuiTabContainerButton
375 A simple class which holds information about wxAuiNotebook tab buttons and their state.
380 class wxAuiTabContainerButton
385 /// current state (normal, hover, pressed, etc.)
387 /// buttons location (wxLEFT, wxRIGHT, or wxCENTER)
389 /// button's hover bitmap
391 /// button's disabled bitmap
393 /// button's hit rectangle
399 @class wxAuiTabContainer
401 wxAuiTabContainer is a class which contains information about each tab.
402 It also can render an entire tab control to a specified DC.
403 It's not a window class itself, because this code will be used by
404 the wxAuiNotebook, where it is disadvantageous to have separate
405 windows for each tab control in the case of "docked tabs".
407 A derived class, wxAuiTabCtrl, is an actual wxWindow - derived window
408 which can be used as a tab control in the normal sense.
413 class wxAuiTabContainer
425 virtual ~wxAuiTabContainer();
427 void SetArtProvider(wxAuiTabArt
* art
);
428 wxAuiTabArt
* GetArtProvider() const;
430 void SetFlags(unsigned int flags
);
431 unsigned int GetFlags() const;
433 bool AddPage(wxWindow
* page
, const wxAuiNotebookPage
& info
);
434 bool InsertPage(wxWindow
* page
, const wxAuiNotebookPage
& info
, size_t idx
);
435 bool MovePage(wxWindow
* page
, size_t newIdx
);
436 bool RemovePage(wxWindow
* page
);
437 bool SetActivePage(wxWindow
* page
);
438 bool SetActivePage(size_t page
);
439 void SetNoneActive();
440 int GetActivePage() const;
441 bool TabHitTest(int x
, int y
, wxWindow
** hit
) const;
442 bool ButtonHitTest(int x
, int y
, wxAuiTabContainerButton
** hit
) const;
443 wxWindow
* GetWindowFromIdx(size_t idx
) const;
444 int GetIdxFromWindow(wxWindow
* page
) const;
445 size_t GetPageCount() const;
446 wxAuiNotebookPage
& GetPage(size_t idx
);
447 const wxAuiNotebookPage
& GetPage(size_t idx
) const;
448 wxAuiNotebookPageArray
& GetPages();
449 void SetNormalFont(const wxFont
& normalFont
);
450 void SetSelectedFont(const wxFont
& selectedFont
);
451 void SetMeasuringFont(const wxFont
& measuringFont
);
452 void SetColour(const wxColour
& colour
);
453 void SetActiveColour(const wxColour
& colour
);
455 void SetRect(const wxRect
& rect
);
457 void RemoveButton(int id
);
458 void AddButton(int id
,
460 const wxBitmap
& normalBitmap
= wxNullBitmap
,
461 const wxBitmap
& disabledBitmap
= wxNullBitmap
);
463 size_t GetTabOffset() const;
464 void SetTabOffset(size_t offset
);
466 // Is the tab visible?
467 bool IsTabVisible(int tabPage
, int tabOffset
, wxDC
* dc
, wxWindow
* wnd
);
469 // Make the tab visible if it wasn't already
470 void MakeTabVisible(int tabPage
, wxWindow
* win
);
474 virtual void Render(wxDC
* dc
, wxWindow
* wnd
);
479 wxAuiNotebookPageArray m_pages
;
480 wxAuiTabContainerButtonArray m_buttons
;
481 wxAuiTabContainerButtonArray m_tabCloseButtons
;
484 unsigned int m_flags
;
492 Tab art provider defines all the drawing functions used by wxAuiNotebook.
494 This allows the wxAuiNotebook to have a pluggable look-and-feel.
496 By default, a wxAuiNotebook uses an instance of this class called
497 wxAuiDefaultTabArt which provides bitmap art and a colour scheme that is
498 adapted to the major platforms' look. You can either derive from that class
499 to alter its behaviour or write a completely new tab art class.
501 Another example of creating a new wxAuiNotebook tab bar is wxAuiSimpleTabArt.
503 Call wxAuiNotebook::SetArtProvider() to make use of this new tab art.
517 Clones the art object.
519 virtual wxAuiTabArt
* Clone() = 0;
522 Draws a background on the given area.
524 virtual void DrawBackground(wxDC
& dc
, wxWindow
* wnd
, const wxRect
& rect
) = 0;
529 virtual void DrawButton(wxDC
& dc
, wxWindow
* wnd
, const wxRect
& in_rect
,
530 int bitmap_id
, int button_state
, int orientation
,
531 wxRect
* out_rect
) = 0;
536 virtual void DrawTab(wxDC
& dc
, wxWindow
* wnd
, const wxAuiNotebookPage
& page
,
537 const wxRect
& rect
, int close_button_state
,
538 wxRect
* out_tab_rect
, wxRect
* out_button_rect
, int* x_extent
) = 0;
541 Returns the tab control size.
543 virtual int GetBestTabCtrlSize(wxWindow
*, const wxAuiNotebookPageArray
&, const wxSize
&) = 0;
546 Returns the indent size.
548 virtual int GetIndentSize() = 0;
551 Returns the tab size for the given caption, bitmap and state.
553 virtual wxSize
GetTabSize(wxDC
& dc
, wxWindow
* wnd
, const wxString
& caption
,
554 const wxBitmap
& bitmap
, bool active
,
555 int close_button_state
, int* x_extent
) = 0;
560 virtual void SetFlags(unsigned int flags
) = 0;
563 Sets the font used for calculating measurements.
565 virtual void SetMeasuringFont(const wxFont
& font
) = 0;
568 Sets the normal font for drawing labels.
570 virtual void SetNormalFont(const wxFont
& font
) = 0;
573 Sets the font for drawing text for selected UI elements.
575 virtual void SetSelectedFont(const wxFont
& font
) = 0;
578 Sets the colour of the inactive tabs.
582 virtual void SetColour(const wxColour
& colour
) = 0;
585 Sets the colour of the selected tab.
589 virtual void SetActiveColour(const wxColour
& colour
) = 0;
592 Sets sizing information.
594 virtual void SetSizingInfo(const wxSize
& tab_ctrl_size
, size_t tab_count
) = 0;
598 @class wxAuiNotebookEvent
600 This class is used by the events generated by wxAuiNotebook.
602 @beginEventEmissionTable{wxAuiNotebookEvent}
603 @event{EVT_AUINOTEBOOK_PAGE_CLOSE(id, func)}
604 A page is about to be closed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CLOSE event.
605 @event{EVT_AUINOTEBOOK_PAGE_CLOSED(winid, fn)}
606 A page has been closed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CLOSED event.
607 @event{EVT_AUINOTEBOOK_PAGE_CHANGED(id, func)}
608 The page selection was changed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CHANGED event.
609 @event{EVT_AUINOTEBOOK_PAGE_CHANGING(id, func)}
610 The page selection is about to be changed. Processes a @c wxEVT_AUINOTEBOOK_PAGE_CHANGING event. This event can be vetoed.
611 @event{EVT_AUINOTEBOOK_BUTTON(id, func)}
612 The window list button has been pressed. Processes a @c wxEVT_AUINOTEBOOK_BUTTON event.
613 @event{EVT_AUINOTEBOOK_BEGIN_DRAG(id, func)}
614 Dragging is about to begin. Processes a @c wxEVT_AUINOTEBOOK_BEGIN_DRAG event.
615 @event{EVT_AUINOTEBOOK_END_DRAG(id, func)}
616 Dragging has ended. Processes a @c wxEVT_AUINOTEBOOK_END_DRAG event.
617 @event{EVT_AUINOTEBOOK_DRAG_MOTION(id, func)}
618 Emitted during a drag and drop operation. Processes a @c wxEVT_AUINOTEBOOK_DRAG_MOTION event.
619 @event{EVT_AUINOTEBOOK_ALLOW_DND(id, func)}
620 Whether to allow a tab to be dropped. Processes a @c wxEVT_AUINOTEBOOK_ALLOW_DND event. This event must be specially allowed.
621 @event{EVT_AUINOTEBOOK_DRAG_DONE(winid, fn)}
622 Notify that the tab has been dragged. Processes a @c wxEVT_AUINOTEBOOK_DRAG_DONE event.
623 @event{EVT_AUINOTEBOOK_TAB_MIDDLE_DOWN(winid, fn)}
624 The middle mouse button is pressed on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_MIDDLE_DOWN event.
625 @event{EVT_AUINOTEBOOK_TAB_MIDDLE_UP(winid, fn)}
626 The middle mouse button is released on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_MIDDLE_UP event.
627 @event{EVT_AUINOTEBOOK_TAB_RIGHT_DOWN(winid, fn)}
628 The right mouse button is pressed on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_RIGHT_DOWN event.
629 @event{EVT_AUINOTEBOOK_TAB_RIGHT_UP(winid, fn)}
630 The right mouse button is released on a tab. Processes a @c wxEVT_AUINOTEBOOK_TAB_RIGHT_UP event.
631 @event{EVT_AUINOTEBOOK_BG_DCLICK(winid, fn)}
632 Double clicked on the tabs background area. Processes a @c wxEVT_AUINOTEBOOK_BG_DCLICK event.
636 @category{events,bookctrl}
638 @see wxAuiNotebook, wxBookCtrlEvent
640 class wxAuiNotebookEvent
: public wxBookCtrlEvent
646 wxAuiNotebookEvent(wxEventType command_type
= wxEVT_NULL
, int win_id
= 0);
652 Default art provider for wxAuiNotebook.
656 @genericAppearance{auidefaulttabart.png}
662 class wxAuiDefaultTabArt
: public wxAuiTabArt
666 wxAuiDefaultTabArt();
667 virtual ~wxAuiDefaultTabArt();
669 wxAuiTabArt
* Clone();
670 void SetFlags(unsigned int flags
);
671 void SetSizingInfo(const wxSize
& tabCtrlSize
,
674 void SetNormalFont(const wxFont
& font
);
675 void SetSelectedFont(const wxFont
& font
);
676 void SetMeasuringFont(const wxFont
& font
);
677 void SetColour(const wxColour
& colour
);
678 void SetActiveColour(const wxColour
& colour
);
685 void DrawTab(wxDC
& dc
,
687 const wxAuiNotebookPage
& pane
,
688 const wxRect
& inRect
,
689 int closeButtonState
,
691 wxRect
* outButtonRect
,
697 const wxRect
& inRect
,
708 const wxString
& caption
,
709 const wxBitmap
& bitmap
,
711 int closeButtonState
,
716 const wxAuiNotebookPageArray
& items
,
719 int GetBestTabCtrlSize(wxWindow
* wnd
,
720 const wxAuiNotebookPageArray
& pages
,
721 const wxSize
& requiredBmpSize
);
725 The font used for all tabs
728 wxFont m_selectedFont
; /// The font used on the selected tab
729 wxFont m_measuringFont
;
730 wxColour m_baseColour
;
731 wxPen m_baseColourPen
;
733 wxBrush m_baseColourBrush
;
734 wxColour m_activeColour
;
735 wxBitmap m_activeCloseBmp
;
736 wxBitmap m_disabledCloseBmp
;
737 wxBitmap m_activeLeftBmp
;
738 wxBitmap m_disabledLeftBmp
;
739 wxBitmap m_activeRightBmp
;
740 wxBitmap m_disabledRightBmp
;
741 wxBitmap m_activeWindowListBmp
;
742 wxBitmap m_disabledWindowListBmp
;
746 unsigned int m_flags
;
751 @class wxAuiSimpleTabArt
753 Another standard tab art provider for wxAuiNotebook.
755 wxAuiSimpleTabArt is derived from wxAuiTabArt demonstrating how to write a
756 completely new tab art class. It can also be used as alternative to
759 @genericAppearance{auisimpletabart.png}
765 class wxAuiSimpleTabArt
: public wxAuiTabArt
771 virtual ~wxAuiSimpleTabArt();
773 wxAuiTabArt
* Clone();
774 void SetFlags(unsigned int flags
);
776 void SetSizingInfo(const wxSize
& tabCtrlSize
,
779 void SetNormalFont(const wxFont
& font
);
780 void SetSelectedFont(const wxFont
& font
);
781 void SetMeasuringFont(const wxFont
& font
);
782 void SetColour(const wxColour
& colour
);
783 void SetActiveColour(const wxColour
& colour
);
790 void DrawTab(wxDC
& dc
,
792 const wxAuiNotebookPage
& pane
,
793 const wxRect
& inRect
,
794 int closeButtonState
,
796 wxRect
* outButtonRect
,
802 const wxRect
& inRect
,
813 const wxString
& caption
,
814 const wxBitmap
& bitmap
,
816 int closeButtonState
,
821 const wxAuiNotebookPageArray
& items
,
824 int GetBestTabCtrlSize(wxWindow
* wnd
,
825 const wxAuiNotebookPageArray
& pages
,
826 const wxSize
& requiredBmpSize
);
831 wxFont m_selectedFont
;
832 wxFont m_measuringFont
;
834 wxPen m_selectedBkPen
;
835 wxBrush m_normalBkBrush
;
836 wxBrush m_selectedBkBrush
;
838 wxBitmap m_activeCloseBmp
;
839 wxBitmap m_disabledCloseBmp
;
840 wxBitmap m_activeLeftBmp
;
841 wxBitmap m_disabledLeftBmp
;
842 wxBitmap m_activeRightBmp
;
843 wxBitmap m_disabledRightBmp
;
844 wxBitmap m_activeWindowListBmp
;
845 wxBitmap m_disabledWindowListBmp
;
848 unsigned int m_flags
;