aui: allow m_frame to be null in wxFrameManager
[wxWidgets.git] / include / wx / aui / auibook.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/aui/auibook.h
3 // Purpose: wxaui: wx advanced user interface - notebook
4 // Author: Benjamin I. Williams
5 // Modified by:
6 // Created: 2006-06-28
7 // Copyright: (C) Copyright 2006, Kirix Corporation, All Rights Reserved.
8 // Licence: wxWindows Library Licence, Version 3.1
9 ///////////////////////////////////////////////////////////////////////////////
10
11
12
13 #ifndef _WX_AUINOTEBOOK_H_
14 #define _WX_AUINOTEBOOK_H_
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #include "wx/defs.h"
21
22 #if wxUSE_AUI
23
24 #include "wx/aui/framemanager.h"
25 #include "wx/aui/dockart.h"
26 #include "wx/aui/floatpane.h"
27 #include "wx/control.h"
28
29
30 // tab art class
31
32
33 class WXDLLIMPEXP_AUI wxTabArt
34 {
35 public:
36
37 wxTabArt() { }
38 virtual ~wxTabArt() { }
39
40 virtual void SetNormalFont(const wxFont& font) = 0;
41 virtual void SetSelectedFont(const wxFont& font) = 0;
42 virtual void SetMeasuringFont(const wxFont& font) = 0;
43
44 virtual void DrawBackground(
45 wxDC* dc,
46 const wxRect& rect) = 0;
47
48 virtual void DrawTab(wxDC* dc,
49 const wxRect& in_rect,
50 const wxString& caption,
51 bool active,
52 wxRect* out_rect,
53 int* x_extent) = 0;
54
55 virtual void DrawButton(
56 wxDC* dc,
57 const wxRect& in_rect,
58 int bitmap_id,
59 int button_state,
60 int orientation,
61 const wxBitmap& bitmap_override,
62 wxRect* out_rect) = 0;
63
64 virtual wxSize GetTabSize(
65 wxDC* dc,
66 const wxString& caption,
67 bool active,
68 int* x_extent) = 0;
69
70 virtual int GetBestTabCtrlSize(wxWindow* wnd) = 0;
71 };
72
73
74 class WXDLLIMPEXP_AUI wxDefaultTabArt : public wxTabArt
75 {
76
77 public:
78
79 wxDefaultTabArt();
80 virtual ~wxDefaultTabArt();
81
82 void SetNormalFont(const wxFont& font);
83 void SetSelectedFont(const wxFont& font);
84 void SetMeasuringFont(const wxFont& font);
85
86 void DrawBackground(
87 wxDC* dc,
88 const wxRect& rect);
89
90 void DrawTab(wxDC* dc,
91 const wxRect& in_rect,
92 const wxString& caption,
93 bool active,
94 wxRect* out_rect,
95 int* x_extent);
96
97 void DrawButton(
98 wxDC* dc,
99 const wxRect& in_rect,
100 int bitmap_id,
101 int button_state,
102 int orientation,
103 const wxBitmap& bitmap_override,
104 wxRect* out_rect);
105
106 wxSize GetTabSize(
107 wxDC* dc,
108 const wxString& caption,
109 bool active,
110 int* x_extent);
111
112 int GetBestTabCtrlSize(wxWindow* wnd);
113
114 private:
115
116 wxFont m_normal_font;
117 wxFont m_selected_font;
118 wxFont m_measuring_font;
119 wxPen m_normal_bkpen;
120 wxPen m_selected_bkpen;
121 wxBrush m_normal_bkbrush;
122 wxBrush m_selected_bkbrush;
123 wxBrush m_bkbrush;
124 wxBitmap m_active_close_bmp;
125 wxBitmap m_disabled_close_bmp;
126 wxBitmap m_active_left_bmp;
127 wxBitmap m_disabled_left_bmp;
128 wxBitmap m_active_right_bmp;
129 wxBitmap m_disabled_right_bmp;
130 };
131
132
133
134 // event declarations/classes
135
136 class WXDLLIMPEXP_AUI wxAuiNotebookEvent : public wxNotifyEvent
137 {
138 public:
139 wxAuiNotebookEvent(wxEventType command_type = wxEVT_NULL,
140 int win_id = 0)
141 : wxNotifyEvent(command_type, win_id)
142 {
143 }
144 #ifndef SWIG
145 wxAuiNotebookEvent(const wxAuiNotebookEvent& c) : wxNotifyEvent(c)
146 {
147 old_selection = c.old_selection;
148 selection = c.selection;
149 }
150 #endif
151 wxEvent *Clone() const { return new wxAuiNotebookEvent(*this); }
152
153 void SetSelection(int s) { selection = s; }
154 void SetOldSelection(int s) { old_selection = s; }
155 int GetSelection() const { return selection; }
156 int GetOldSelection() const { return old_selection; }
157
158 public:
159 int old_selection;
160 int selection;
161
162 #ifndef SWIG
163 private:
164 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxAuiNotebookEvent)
165 #endif
166 };
167
168
169
170
171
172 class WXDLLIMPEXP_AUI wxAuiNotebookPage
173 {
174 public:
175 wxWindow* window; // page's associated window
176 wxString caption; // caption displayed on the tab
177 wxBitmap bitmap; // tab's bitmap
178 wxRect rect; // tab's hit rectangle
179 bool active; // true if the page is currently active
180 };
181
182 class WXDLLIMPEXP_AUI wxAuiTabContainerButton
183 {
184 public:
185 int id; // button's id
186 int cur_state; // current state (normal, hover, pressed, etc.)
187 int location; // buttons location (wxLEFT or wxRIGHT)
188 wxBitmap bitmap; // button's hover bitmap
189 wxBitmap dis_bitmap; // button's disabled bitmap
190 wxRect rect; // button's hit rectangle
191 };
192
193
194 #ifndef SWIG
195 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiNotebookPage, wxAuiNotebookPageArray, WXDLLIMPEXP_AUI);
196 WX_DECLARE_USER_EXPORTED_OBJARRAY(wxAuiTabContainerButton, wxAuiTabContainerButtonArray, WXDLLIMPEXP_AUI);
197 #endif
198
199
200 class WXDLLIMPEXP_AUI wxAuiTabContainer
201 {
202 public:
203
204 wxAuiTabContainer();
205 virtual ~wxAuiTabContainer();
206
207 void SetArtProvider(wxTabArt* art);
208 wxTabArt* GetArtProvider();
209
210 bool AddPage(wxWindow* page, const wxAuiNotebookPage& info);
211 bool InsertPage(wxWindow* page, const wxAuiNotebookPage& info, size_t idx);
212 bool RemovePage(wxWindow* page);
213 bool SetActivePage(wxWindow* page);
214 bool SetActivePage(size_t page);
215 void SetNoneActive();
216 int GetActivePage() const;
217 bool TabHitTest(int x, int y, wxWindow** hit) const;
218 bool ButtonHitTest(int x, int y, wxAuiTabContainerButton** hit) const;
219 wxWindow* GetWindowFromIdx(size_t idx) const;
220 int GetIdxFromWindow(wxWindow* page) const;
221 size_t GetPageCount() const;
222 wxAuiNotebookPage& GetPage(size_t idx);
223 wxAuiNotebookPageArray& GetPages();
224 void SetNormalFont(const wxFont& normal_font);
225 void SetSelectedFont(const wxFont& selected_font);
226 void SetMeasuringFont(const wxFont& measuring_font);
227 void DoShowHide();
228 void SetRect(const wxRect& rect);
229 void AddButton(int id,
230 int location,
231 const wxBitmap& normal_bitmap = wxNullBitmap,
232 const wxBitmap& disabled_bitmap = wxNullBitmap);
233
234 size_t GetTabOffset() const;
235 void SetTabOffset(size_t offset);
236
237 protected:
238
239 virtual void Render(wxDC* dc);
240
241 private:
242
243 wxTabArt* m_art;
244 wxAuiNotebookPageArray m_pages;
245 wxAuiTabContainerButtonArray m_buttons;
246 wxRect m_rect;
247 size_t m_tab_offset;
248 };
249
250
251
252 class WXDLLIMPEXP_AUI wxAuiTabCtrl : public wxControl,
253 public wxAuiTabContainer
254 {
255 public:
256
257 wxAuiTabCtrl(wxWindow* parent,
258 wxWindowID id = wxID_ANY,
259 const wxPoint& pos = wxDefaultPosition,
260 const wxSize& size = wxDefaultSize,
261 long style = 0);
262
263 ~wxAuiTabCtrl();
264
265 protected:
266
267 void OnPaint(wxPaintEvent& evt);
268 void OnEraseBackground(wxEraseEvent& evt);
269 void OnSize(wxSizeEvent& evt);
270 void OnLeftDown(wxMouseEvent& evt);
271 void OnLeftUp(wxMouseEvent& evt);
272 void OnMotion(wxMouseEvent& evt);
273 void OnLeaveWindow(wxMouseEvent& evt);
274 void OnButton(wxAuiNotebookEvent& evt);
275
276
277 protected:
278
279 wxPoint m_click_pt;
280 int m_click_tab;
281 bool m_is_dragging;
282 wxAuiTabContainerButton* m_hover_button;
283
284 #ifndef SWIG
285 DECLARE_EVENT_TABLE()
286 #endif
287 };
288
289
290
291
292 class WXDLLIMPEXP_AUI wxAuiMultiNotebook : public wxControl
293 {
294
295 public:
296
297 wxAuiMultiNotebook();
298
299 wxAuiMultiNotebook(wxWindow* parent,
300 wxWindowID id = wxID_ANY,
301 const wxPoint& pos = wxDefaultPosition,
302 const wxSize& size = wxDefaultSize,
303 long style = 0);
304
305 virtual ~wxAuiMultiNotebook();
306
307 bool Create(wxWindow* parent,
308 wxWindowID id = wxID_ANY,
309 const wxPoint& pos = wxDefaultPosition,
310 const wxSize& size = wxDefaultSize,
311 long style = 0);
312
313 bool AddPage(wxWindow* page,
314 const wxString& caption,
315 bool select = false,
316 const wxBitmap& bitmap = wxNullBitmap);
317
318 bool InsertPage(size_t page_idx,
319 wxWindow* page,
320 const wxString& caption,
321 bool select = false,
322 const wxBitmap& bitmap = wxNullBitmap);
323
324 bool DeletePage(size_t page);
325 bool RemovePage(size_t page);
326
327 bool SetPageText(size_t page, const wxString& text);
328 size_t SetSelection(size_t new_page);
329 int GetSelection() const;
330 size_t GetPageCount() const;
331 wxWindow* GetPage(size_t page_idx) const;
332
333 void SetArtProvider(wxTabArt* art);
334 wxTabArt* GetArtProvider();
335
336 protected:
337
338 wxAuiTabCtrl* GetTabCtrlFromPoint(const wxPoint& pt);
339 wxWindow* GetTabFrameFromTabCtrl(wxWindow* tab_ctrl);
340 wxAuiTabCtrl* GetActiveTabCtrl();
341 bool FindTab(wxWindow* page, wxAuiTabCtrl** ctrl, int* idx);
342 void RemoveEmptyTabFrames();
343
344 protected:
345
346 void DoSizing();
347 void InitNotebook();
348
349 void OnChildFocus(wxChildFocusEvent& evt);
350 void OnRender(wxFrameManagerEvent& evt);
351 void OnEraseBackground(wxEraseEvent& evt);
352 void OnSize(wxSizeEvent& evt);
353 void OnTabClicked(wxCommandEvent& evt);
354 void OnTabBeginDrag(wxCommandEvent& evt);
355 void OnTabDragMotion(wxCommandEvent& evt);
356 void OnTabEndDrag(wxCommandEvent& evt);
357 void OnTabButton(wxCommandEvent& evt);
358
359 protected:
360
361 wxFrameManager m_mgr;
362 wxAuiTabContainer m_tabs;
363 int m_curpage;
364 int m_tab_id_counter;
365 wxWindow* m_dummy_wnd;
366
367 wxFont m_selected_font;
368 wxFont m_normal_font;
369 int m_tab_ctrl_height;
370
371 #ifndef SWIG
372 DECLARE_EVENT_TABLE()
373 #endif
374 };
375
376
377
378
379 // wx event machinery
380
381 #ifndef SWIG
382
383 BEGIN_DECLARE_EVENT_TYPES()
384 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, 0)
385 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, 0)
386 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_COMMAND_AUINOTEBOOK_BUTTON, 0)
387 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, 0)
388 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, 0)
389 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_AUI, wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, 0)
390 END_DECLARE_EVENT_TYPES()
391
392 typedef void (wxEvtHandler::*wxAuiNotebookEventFunction)(wxAuiNotebookEvent&);
393
394 #define wxAuiNotebookEventHandler(func) \
395 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxAuiNotebookEventFunction, &func)
396
397 #define EVT_AUINOTEBOOK_PAGE_CHANGED(winid, fn) \
398 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, winid, wxAuiNotebookEventHandler(fn))
399 #define EVT_AUINOTEBOOK_PAGE_CHANGING(winid, fn) \
400 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, winid, wxAuiNotebookEventHandler(fn))
401 #define EVT_AUINOTEBOOK_BUTTON(winid, fn) \
402 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_BUTTON, winid, wxAuiNotebookEventHandler(fn))
403 #define EVT_AUINOTEBOOK_BEGIN_DRAG(winid, fn) \
404 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, winid, wxAuiNotebookEventHandler(fn))
405 #define EVT_AUINOTEBOOK_END_DRAG(winid, fn) \
406 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, winid, wxAuiNotebookEventHandler(fn))
407 #define EVT_AUINOTEBOOK_DRAG_MOTION(winid, fn) \
408 wx__DECLARE_EVT1(wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, winid, wxAuiNotebookEventHandler(fn))
409
410 #else
411
412 // wxpython/swig event work
413 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED;
414 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING;
415 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_BUTTON;
416 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG;
417 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_END_DRAG;
418 %constant wxEventType wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION;
419
420 %pythoncode {
421 EVT_AUINOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGED, 1 )
422 EVT_AUINOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_PAGE_CHANGING, 1 )
423 EVT_AUINOTEBOOK_BUTTON = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_BUTTON, 1 )
424 EVT_AUINOTEBOOK_BEGIN_DRAG = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_BEGIN_DRAG, 1 )
425 EVT_AUINOTEBOOK_END_DRAG = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_END_DRAG, 1 )
426 EVT_AUINOTEBOOK_DRAG_MOTION = wx.PyEventBinder( wxEVT_COMMAND_AUINOTEBOOK_DRAG_MOTION, 1 )
427 }
428 #endif
429
430
431 #endif // wxUSE_AUI
432 #endif // _WX_AUINOTEBOOK_H_