1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/aui/auibook.h
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 ///////////////////////////////////////////////////////////////////////////////
13 #ifndef _WX_AUINOTEBOOK_H_
14 #define _WX_AUINOTEBOOK_H_
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
24 #include "wx/aui/framemanager.h"
25 #include "wx/aui/dockart.h"
26 #include "wx/aui/floatpane.h"
27 #include "wx/control.h"
33 enum wxAuiNotebookOption
35 wxAUI_NB_TOP
= 1 << 0,
36 wxAUI_NB_LEFT
= 1 << 1, // not implemented yet
37 wxAUI_NB_RIGHT
= 1 << 2, // not implemented yet
38 wxAUI_NB_BOTTOM
= 1 << 3, // not implemented yet
39 wxAUI_NB_TAB_SPLIT
= 1 << 4,
40 wxAUI_NB_TAB_MOVE
= 1 << 5,
41 wxAUI_NB_TAB_EXTERNAL_MOVE
= 1 << 6,
42 wxAUI_NB_TAB_FIXED_WIDTH
= 1 << 7,
43 wxAUI_NB_SCROLL_BUTTONS
= 1 << 8,
44 wxAUI_NB_WINDOWLIST_BUTTON
= 1 << 9,
45 wxAUI_NB_CLOSE_BUTTON
= 1 << 10,
46 wxAUI_NB_CLOSE_ON_ACTIVE_TAB
= 1 << 11,
47 wxAUI_NB_CLOSE_ON_ALL_TABS
= 1 << 12,
50 wxAUI_NB_DEFAULT_STYLE
= wxAUI_NB_TOP
|
53 wxAUI_NB_SCROLL_BUTTONS
|
54 wxAUI_NB_CLOSE_ON_ACTIVE_TAB
60 // aui notebook event class
62 class WXDLLIMPEXP_AUI wxAuiNotebookEvent
: public wxNotifyEvent
65 wxAuiNotebookEvent(wxEventType command_type
= wxEVT_NULL
,
67 : wxNotifyEvent(command_type
, win_id
)
74 wxAuiNotebookEvent(const wxAuiNotebookEvent
& c
) : wxNotifyEvent(c
)
76 old_selection
= c
.old_selection
;
77 selection
= c
.selection
;
78 drag_source
= c
.drag_source
;
81 wxEvent
*Clone() const { return new wxAuiNotebookEvent(*this); }
83 void SetSelection(int s
) { selection
= s
; m_commandInt
= s
; }
84 int GetSelection() const { return selection
; }
86 void SetOldSelection(int s
) { old_selection
= s
; }
87 int GetOldSelection() const { return old_selection
; }
89 void SetDragSource(wxAuiNotebook
* s
) { drag_source
= s
; }
90 wxAuiNotebook
* GetDragSource() const { return drag_source
; }
95 wxAuiNotebook
* drag_source
;
99 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxAuiNotebookEvent
)
104 class WXDLLIMPEXP_AUI wxAuiNotebookPage
107 wxWindow
* window
; // page's associated window
108 wxString caption
; // caption displayed on the tab
109 wxBitmap bitmap
; // tab's bitmap
110 wxRect rect
; // tab's hit rectangle
111 bool active
; // true if the page is currently active
114 class WXDLLIMPEXP_AUI wxAuiTabContainerButton
118 int id
; // button's id
119 int cur_state
; // current state (normal, hover, pressed, etc.)
120 int location
; // buttons location (wxLEFT, wxRIGHT, or wxCENTER)
121 wxBitmap bitmap
; // button's hover bitmap
122 wxBitmap dis_bitmap
; // button's disabled bitmap
123 wxRect rect
; // button's hit rectangle
128 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiNotebookPage
, wxAuiNotebookPageArray
, WXDLLIMPEXP_AUI
);
129 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiTabContainerButton
, wxAuiTabContainerButtonArray
, WXDLLIMPEXP_AUI
);
135 class WXDLLIMPEXP_AUI wxAuiTabArt
140 virtual ~wxAuiTabArt() { }
142 virtual wxAuiTabArt
* Clone() = 0;
143 virtual void SetFlags(unsigned int flags
) = 0;
145 virtual void SetSizingInfo(const wxSize
& tab_ctrl_size
,
146 size_t tab_count
) = 0;
148 virtual void SetNormalFont(const wxFont
& font
) = 0;
149 virtual void SetSelectedFont(const wxFont
& font
) = 0;
150 virtual void SetMeasuringFont(const wxFont
& font
) = 0;
152 virtual void DrawBackground(
155 const wxRect
& rect
) = 0;
157 virtual void DrawTab(wxDC
& dc
,
159 const wxRect
& in_rect
,
160 const wxString
& caption
,
161 const wxBitmap
& bitmap
,
163 int close_button_state
,
164 wxRect
* out_tab_rect
,
165 wxRect
* out_button_rect
,
168 virtual void DrawButton(
171 const wxRect
& in_rect
,
175 const wxBitmap
& bitmap_override
,
176 wxRect
* out_rect
) = 0;
178 virtual int GetIndentSize() = 0;
180 virtual wxSize
GetTabSize(
183 const wxString
& caption
,
184 const wxBitmap
& bitmap
,
186 int close_button_state
,
189 virtual int ShowWindowList(
191 const wxArrayString
& items
,
194 virtual int GetBestTabCtrlSize(wxWindow
* wnd
,
195 wxAuiNotebookPageArray
& pages
,
196 const wxSize
& required_bmp_size
) = 0;
200 class WXDLLIMPEXP_AUI wxAuiDefaultTabArt
: public wxAuiTabArt
205 wxAuiDefaultTabArt();
206 virtual ~wxAuiDefaultTabArt();
208 wxAuiTabArt
* Clone();
209 void SetFlags(unsigned int flags
);
210 void SetSizingInfo(const wxSize
& tab_ctrl_size
,
213 void SetNormalFont(const wxFont
& font
);
214 void SetSelectedFont(const wxFont
& font
);
215 void SetMeasuringFont(const wxFont
& font
);
222 void DrawTab(wxDC
& dc
,
224 const wxRect
& in_rect
,
225 const wxString
& caption
,
226 const wxBitmap
& bitmap
,
228 int close_button_state
,
229 wxRect
* out_tab_rect
,
230 wxRect
* out_button_rect
,
236 const wxRect
& in_rect
,
240 const wxBitmap
& bitmap_override
,
248 const wxString
& caption
,
249 const wxBitmap
& bitmap
,
251 int close_button_state
,
256 const wxArrayString
& items
,
259 int GetBestTabCtrlSize(wxWindow
* wnd
,
260 wxAuiNotebookPageArray
& pages
,
261 const wxSize
& required_bmp_size
);
265 wxFont m_normal_font
;
266 wxFont m_selected_font
;
267 wxFont m_measuring_font
;
268 wxColour m_base_colour
;
269 wxPen m_base_colour_pen
;
271 wxBrush m_base_colour_brush
;
272 wxBitmap m_active_close_bmp
;
273 wxBitmap m_disabled_close_bmp
;
274 wxBitmap m_active_left_bmp
;
275 wxBitmap m_disabled_left_bmp
;
276 wxBitmap m_active_right_bmp
;
277 wxBitmap m_disabled_right_bmp
;
278 wxBitmap m_active_windowlist_bmp
;
279 wxBitmap m_disabled_windowlist_bmp
;
281 int m_fixed_tab_width
;
282 int m_tab_ctrl_height
;
283 unsigned int m_flags
;
287 class WXDLLIMPEXP_AUI wxAuiSimpleTabArt
: public wxAuiTabArt
293 virtual ~wxAuiSimpleTabArt();
295 wxAuiTabArt
* Clone();
296 void SetFlags(unsigned int flags
);
298 void SetSizingInfo(const wxSize
& tab_ctrl_size
,
301 void SetNormalFont(const wxFont
& font
);
302 void SetSelectedFont(const wxFont
& font
);
303 void SetMeasuringFont(const wxFont
& font
);
310 void DrawTab(wxDC
& dc
,
312 const wxRect
& in_rect
,
313 const wxString
& caption
,
314 const wxBitmap
& bitmap
,
316 int close_button_state
,
317 wxRect
* out_tab_rect
,
318 wxRect
* out_button_rect
,
324 const wxRect
& in_rect
,
328 const wxBitmap
& bitmap_override
,
336 const wxString
& caption
,
337 const wxBitmap
& bitmap
,
339 int close_button_state
,
344 const wxArrayString
& items
,
347 int GetBestTabCtrlSize(wxWindow
* wnd
,
348 wxAuiNotebookPageArray
& pages
,
349 const wxSize
& required_bmp_size
);
353 wxFont m_normal_font
;
354 wxFont m_selected_font
;
355 wxFont m_measuring_font
;
356 wxPen m_normal_bkpen
;
357 wxPen m_selected_bkpen
;
358 wxBrush m_normal_bkbrush
;
359 wxBrush m_selected_bkbrush
;
361 wxBitmap m_active_close_bmp
;
362 wxBitmap m_disabled_close_bmp
;
363 wxBitmap m_active_left_bmp
;
364 wxBitmap m_disabled_left_bmp
;
365 wxBitmap m_active_right_bmp
;
366 wxBitmap m_disabled_right_bmp
;
367 wxBitmap m_active_windowlist_bmp
;
368 wxBitmap m_disabled_windowlist_bmp
;
370 int m_fixed_tab_width
;
371 unsigned int m_flags
;
382 class WXDLLIMPEXP_AUI wxAuiTabContainer
387 virtual ~wxAuiTabContainer();
389 void SetArtProvider(wxAuiTabArt
* art
);
390 wxAuiTabArt
* GetArtProvider() const;
392 void SetFlags(unsigned int flags
);
393 unsigned int GetFlags() const;
395 bool AddPage(wxWindow
* page
, const wxAuiNotebookPage
& info
);
396 bool InsertPage(wxWindow
* page
, const wxAuiNotebookPage
& info
, size_t idx
);
397 bool MovePage(wxWindow
* page
, size_t new_idx
);
398 bool RemovePage(wxWindow
* page
);
399 bool SetActivePage(wxWindow
* page
);
400 bool SetActivePage(size_t page
);
401 void SetNoneActive();
402 int GetActivePage() const;
403 bool TabHitTest(int x
, int y
, wxWindow
** hit
) const;
404 bool ButtonHitTest(int x
, int y
, wxAuiTabContainerButton
** hit
) const;
405 wxWindow
* GetWindowFromIdx(size_t idx
) const;
406 int GetIdxFromWindow(wxWindow
* page
) const;
407 size_t GetPageCount() const;
408 wxAuiNotebookPage
& GetPage(size_t idx
);
409 wxAuiNotebookPageArray
& GetPages();
410 void SetNormalFont(const wxFont
& normal_font
);
411 void SetSelectedFont(const wxFont
& selected_font
);
412 void SetMeasuringFont(const wxFont
& measuring_font
);
414 void SetRect(const wxRect
& rect
);
416 void RemoveButton(int id
);
417 void AddButton(int id
,
419 const wxBitmap
& normal_bitmap
= wxNullBitmap
,
420 const wxBitmap
& disabled_bitmap
= wxNullBitmap
);
422 size_t GetTabOffset() const;
423 void SetTabOffset(size_t offset
);
427 virtual void Render(wxDC
* dc
, wxWindow
* wnd
);
432 wxAuiNotebookPageArray m_pages
;
433 wxAuiTabContainerButtonArray m_buttons
;
434 wxAuiTabContainerButtonArray m_tab_close_buttons
;
437 unsigned int m_flags
;
442 class WXDLLIMPEXP_AUI wxAuiTabCtrl
: public wxControl
,
443 public wxAuiTabContainer
447 wxAuiTabCtrl(wxWindow
* parent
,
448 wxWindowID id
= wxID_ANY
,
449 const wxPoint
& pos
= wxDefaultPosition
,
450 const wxSize
& size
= wxDefaultSize
,
457 void OnPaint(wxPaintEvent
& evt
);
458 void OnEraseBackground(wxEraseEvent
& evt
);
459 void OnSize(wxSizeEvent
& evt
);
460 void OnLeftDown(wxMouseEvent
& evt
);
461 void OnLeftUp(wxMouseEvent
& evt
);
462 void OnMotion(wxMouseEvent
& evt
);
463 void OnLeaveWindow(wxMouseEvent
& evt
);
464 void OnButton(wxAuiNotebookEvent
& evt
);
470 wxWindow
* m_click_tab
;
472 wxAuiTabContainerButton
* m_hover_button
;
473 wxAuiTabContainerButton
* m_pressed_button
;
476 DECLARE_CLASS(wxAuiTabCtrl
)
477 DECLARE_EVENT_TABLE()
484 class WXDLLIMPEXP_AUI wxAuiNotebook
: public wxControl
491 wxAuiNotebook(wxWindow
* parent
,
492 wxWindowID id
= wxID_ANY
,
493 const wxPoint
& pos
= wxDefaultPosition
,
494 const wxSize
& size
= wxDefaultSize
,
495 long style
= wxAUI_NB_DEFAULT_STYLE
);
497 virtual ~wxAuiNotebook();
499 bool Create(wxWindow
* parent
,
500 wxWindowID id
= wxID_ANY
,
501 const wxPoint
& pos
= wxDefaultPosition
,
502 const wxSize
& size
= wxDefaultSize
,
505 bool AddPage(wxWindow
* page
,
506 const wxString
& caption
,
508 const wxBitmap
& bitmap
= wxNullBitmap
);
510 bool InsertPage(size_t page_idx
,
512 const wxString
& caption
,
514 const wxBitmap
& bitmap
= wxNullBitmap
);
516 bool DeletePage(size_t page
);
517 bool RemovePage(size_t page
);
519 void SetWindowStyleFlag(long style
);
521 bool SetPageText(size_t page
, const wxString
& text
);
522 bool SetPageBitmap(size_t page
, const wxBitmap
& bitmap
);
523 size_t SetSelection(size_t new_page
);
524 int GetSelection() const;
525 size_t GetPageCount() const;
526 wxWindow
* GetPage(size_t page_idx
) const;
528 int GetPageIndex(wxWindow
* page_wnd
) const;
530 void SetArtProvider(wxAuiTabArt
* art
);
531 wxAuiTabArt
* GetArtProvider() const;
533 virtual void SetUniformBitmapSize(const wxSize
& size
);
534 virtual void SetTabCtrlHeight(int height
);
538 // these can be overridden
539 virtual void UpdateTabCtrlHeight();
540 virtual int CalculateTabCtrlHeight();
541 virtual wxSize
CalculateNewSplitSize();
546 void InitNotebook(long style
);
547 wxAuiTabCtrl
* GetTabCtrlFromPoint(const wxPoint
& pt
);
548 wxWindow
* GetTabFrameFromTabCtrl(wxWindow
* tab_ctrl
);
549 wxAuiTabCtrl
* GetActiveTabCtrl();
550 bool FindTab(wxWindow
* page
, wxAuiTabCtrl
** ctrl
, int* idx
);
551 void RemoveEmptyTabFrames();
552 void UpdateHintWindowSize();
556 void OnChildFocus(wxChildFocusEvent
& evt
);
557 void OnRender(wxAuiManagerEvent
& evt
);
558 void OnEraseBackground(wxEraseEvent
& evt
);
559 void OnSize(wxSizeEvent
& evt
);
560 void OnTabClicked(wxCommandEvent
& evt
);
561 void OnTabBeginDrag(wxCommandEvent
& evt
);
562 void OnTabDragMotion(wxCommandEvent
& evt
);
563 void OnTabEndDrag(wxCommandEvent
& evt
);
564 void OnTabButton(wxCommandEvent
& evt
);
569 wxAuiTabContainer m_tabs
;
571 int m_tab_id_counter
;
572 wxWindow
* m_dummy_wnd
;
574 wxSize m_requested_bmp_size
;
575 int m_requested_tabctrl_height
;
576 wxFont m_selected_font
;
577 wxFont m_normal_font
;
578 int m_tab_ctrl_height
;
581 unsigned int m_flags
;
584 DECLARE_CLASS(wxAuiNotebook
)
585 DECLARE_EVENT_TABLE()
592 // wx event machinery
596 BEGIN_DECLARE_EVENT_TYPES()
597 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
, 0)
598 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
, 0)
599 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
, 0)
600 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_BUTTON
, 0)
601 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
, 0)
602 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
, 0)
603 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
, 0)
604 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI
, wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
, 0)
605 END_DECLARE_EVENT_TYPES()
607 typedef void (wxEvtHandler::*wxAuiNotebookEventFunction
)(wxAuiNotebookEvent
&);
609 #define wxAuiNotebookEventHandler(func) \
610 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxAuiNotebookEventFunction, &func)
612 #define EVT_AUINOTEBOOK_PAGE_CLOSE(winid, fn) \
613 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE, winid, wxAuiNotebookEventHandler(fn))
614 #define EVT_AUINOTEBOOK_PAGE_CHANGED(winid, fn) \
615 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, winid, wxAuiNotebookEventHandler(fn))
616 #define EVT_AUINOTEBOOK_PAGE_CHANGING(winid, fn) \
617 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, winid, wxAuiNotebookEventHandler(fn))
618 #define EVT_AUINOTEBOOK_BUTTON(winid, fn) \
619 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_BUTTON, winid, wxAuiNotebookEventHandler(fn))
620 #define EVT_AUINOTEBOOK_BEGIN_DRAG(winid, fn) \
621 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, winid, wxAuiNotebookEventHandler(fn))
622 #define EVT_AUINOTEBOOK_END_DRAG(winid, fn) \
623 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, winid, wxAuiNotebookEventHandler(fn))
624 #define EVT_AUINOTEBOOK_DRAG_MOTION(winid, fn) \
625 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, winid, wxAuiNotebookEventHandler(fn))
626 #define EVT_AUINOTEBOOK_ALLOW_DND(winid, fn) \
627 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND, winid, wxAuiNotebookEventHandler(fn))
631 // wxpython/swig event work
632 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
;
633 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
;
634 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
;
635 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_BUTTON
;
636 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
;
637 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
;
638 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
;
639 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
;
642 EVT_AUINOTEBOOK_PAGE_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CLOSE
, 1 )
643 EVT_AUINOTEBOOK_PAGE_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED
, 1 )
644 EVT_AUINOTEBOOK_PAGE_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING
, 1 )
645 EVT_AUINOTEBOOK_BUTTON
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_BUTTON
, 1 )
646 EVT_AUINOTEBOOK_BEGIN_DRAG
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG
, 1 )
647 EVT_AUINOTEBOOK_END_DRAG
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_END_DRAG
, 1 )
648 EVT_AUINOTEBOOK_DRAG_MOTION
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION
, 1 )
649 EVT_AUINOTEBOOK_ALLOW_DND
= wx
.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_ALLOW_DND
, 1 )
655 #endif // _WX_AUINOTEBOOK_H_