1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxBookCtrlBase: common base class for wxList/Tree/Notebook
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_BOOKCTRL_H_
13 #define _WX_BOOKCTRL_H_
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
23 #include "wx/control.h"
24 #include "wx/dynarray.h"
26 WX_DEFINE_EXPORTED_ARRAY_PTR(wxWindow
*, wxArrayPages
);
28 class WXDLLIMPEXP_FWD_CORE wxImageList
;
29 class WXDLLIMPEXP_FWD_CORE wxBookCtrlEvent
;
31 // ----------------------------------------------------------------------------
33 // ----------------------------------------------------------------------------
35 // wxBookCtrl hit results
38 wxBK_HITTEST_NOWHERE
= 1, // not on tab
39 wxBK_HITTEST_ONICON
= 2, // on icon
40 wxBK_HITTEST_ONLABEL
= 4, // on label
41 wxBK_HITTEST_ONITEM
= wxBK_HITTEST_ONICON
| wxBK_HITTEST_ONLABEL
,
42 wxBK_HITTEST_ONPAGE
= 8 // not on tab control, but over the selected page
45 // wxBookCtrl flags (common for wxNotebook, wxListbook, wxChoicebook, wxTreebook)
46 #define wxBK_DEFAULT 0x0000
47 #define wxBK_TOP 0x0010
48 #define wxBK_BOTTOM 0x0020
49 #define wxBK_LEFT 0x0040
50 #define wxBK_RIGHT 0x0080
51 #define wxBK_ALIGN_MASK (wxBK_TOP | wxBK_BOTTOM | wxBK_LEFT | wxBK_RIGHT)
53 // ----------------------------------------------------------------------------
55 // ----------------------------------------------------------------------------
57 class WXDLLIMPEXP_CORE wxBookCtrlBase
: public wxControl
68 wxBookCtrlBase(wxWindow
*parent
,
70 const wxPoint
& pos
= wxDefaultPosition
,
71 const wxSize
& size
= wxDefaultSize
,
73 const wxString
& name
= wxEmptyString
)
77 (void)Create(parent
, winid
, pos
, size
, style
, name
);
81 bool Create(wxWindow
*parent
,
83 const wxPoint
& pos
= wxDefaultPosition
,
84 const wxSize
& size
= wxDefaultSize
,
86 const wxString
& name
= wxEmptyString
);
89 virtual ~wxBookCtrlBase();
95 // get number of pages in the dialog
96 virtual size_t GetPageCount() const { return m_pages
.size(); }
98 // get the panel which represents the given page
99 wxWindow
*GetPage(size_t n
) const { return m_pages
[n
]; }
101 // get the current page or NULL if none
102 wxWindow
*GetCurrentPage() const
104 const int n
= GetSelection();
105 return n
== wxNOT_FOUND
? NULL
: GetPage(n
);
108 // get the currently selected page or wxNOT_FOUND if none
109 virtual int GetSelection() const = 0;
111 // set/get the title of a page
112 virtual bool SetPageText(size_t n
, const wxString
& strText
) = 0;
113 virtual wxString
GetPageText(size_t n
) const = 0;
116 // image list stuff: each page may have an image associated with it (all
117 // images belong to the same image list)
118 // ---------------------------------------------------------------------
120 // sets the image list to use, it is *not* deleted by the control
121 virtual void SetImageList(wxImageList
*imageList
);
123 // as SetImageList() but we will delete the image list ourselves
124 void AssignImageList(wxImageList
*imageList
);
126 // get pointer (may be NULL) to the associated image list
127 wxImageList
* GetImageList() const { return m_imageList
; }
129 // sets/returns item's image index in the current image list
130 virtual int GetPageImage(size_t n
) const = 0;
131 virtual bool SetPageImage(size_t n
, int imageId
) = 0;
137 // resize the notebook so that all pages will have the specified size
138 virtual void SetPageSize(const wxSize
& size
);
140 // return the size of the area needed to accommodate the controller
141 wxSize
GetControllerSize() const;
143 // calculate the size of the control from the size of its page
144 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const = 0;
146 // get/set size of area between book control area and page area
147 unsigned int GetInternalBorder() const { return m_internalBorder
; }
148 void SetInternalBorder(unsigned int border
) { m_internalBorder
= border
; }
150 // Sets/gets the margin around the controller
151 void SetControlMargin(int margin
) { m_controlMargin
= margin
; }
152 int GetControlMargin() const { return m_controlMargin
; }
154 // returns true if we have wxBK_TOP or wxBK_BOTTOM style
155 bool IsVertical() const { return HasFlag(wxBK_BOTTOM
| wxBK_TOP
); }
157 // set/get option to shrink to fit current page
158 void SetFitToCurrentPage(bool fit
) { m_fitToCurrentPage
= fit
; }
159 bool GetFitToCurrentPage() const { return m_fitToCurrentPage
; }
161 // returns the sizer containing the control, if any
162 wxSizer
* GetControlSizer() const { return m_controlSizer
; }
168 // remove one page from the control and delete it
169 virtual bool DeletePage(size_t n
);
171 // remove one page from the notebook, without deleting it
172 virtual bool RemovePage(size_t n
)
174 DoInvalidateBestSize();
175 return DoRemovePage(n
) != NULL
;
178 // remove all pages and delete them
179 virtual bool DeleteAllPages()
181 DoInvalidateBestSize();
182 WX_CLEAR_ARRAY(m_pages
);
186 // adds a new page to the control
187 virtual bool AddPage(wxWindow
*page
,
188 const wxString
& text
,
189 bool bSelect
= false,
192 DoInvalidateBestSize();
193 return InsertPage(GetPageCount(), page
, text
, bSelect
, imageId
);
196 // the same as AddPage(), but adds the page at the specified position
197 virtual bool InsertPage(size_t n
,
199 const wxString
& text
,
200 bool bSelect
= false,
201 int imageId
= -1) = 0;
203 // set the currently selected page, return the index of the previously
204 // selected one (or -1 on error)
206 // NB: this function will generate PAGE_CHANGING/ED events
207 virtual int SetSelection(size_t n
) = 0;
209 // acts as SetSelection but does not generate events
210 virtual int ChangeSelection(size_t n
) = 0;
213 // cycle thru the pages
214 void AdvanceSelection(bool forward
= true)
216 int nPage
= GetNextPage(forward
);
219 // cast is safe because of the check above
220 SetSelection((size_t)nPage
);
224 // hit test: returns which page is hit and, optionally, where (icon, label)
225 virtual int HitTest(const wxPoint
& WXUNUSED(pt
),
226 long * WXUNUSED(flags
) = NULL
) const
232 // we do have multiple pages
233 virtual bool HasMultiplePages() const { return true; }
235 // we don't want focus for ourselves
236 virtual bool AcceptsFocus() const { return false; }
238 // returns true if the platform should explicitly apply a theme border
239 virtual bool CanApplyThemeBorder() const { return false; }
242 // flags for DoSetSelection()
245 SetSelection_SendEvent
= 1
248 // choose the default border for this window
249 virtual wxBorder
GetDefaultBorder() const { return wxBORDER_NONE
; }
251 // set the selection to the given page, sending the events (which can
252 // possibly prevent the page change from taking place) if SendEvent flag is
254 virtual int DoSetSelection(size_t nPage
, int flags
= 0);
256 // if the derived class uses DoSetSelection() for implementing
257 // [Set|Change]Selection, it must override UpdateSelectedPage(),
258 // CreatePageChangingEvent() and MakeChangedEvent(), but as it might not
259 // use it, these functions are not pure virtual
261 // called to notify the control about a new current page
262 virtual void UpdateSelectedPage(size_t WXUNUSED(newsel
))
263 { wxFAIL_MSG(wxT("Override this function!")); }
265 // create a new "page changing" event
266 virtual wxBookCtrlEvent
* CreatePageChangingEvent() const
267 { wxFAIL_MSG(wxT("Override this function!")); return NULL
; }
269 // modify the event created by CreatePageChangingEvent() to "page changed"
270 // event, usually by just calling SetEventType() on it
271 virtual void MakeChangedEvent(wxBookCtrlEvent
& WXUNUSED(event
))
272 { wxFAIL_MSG(wxT("Override this function!")); }
275 // Should we accept NULL page pointers in Add/InsertPage()?
277 // Default is no but derived classes may override it if they can treat NULL
278 // pages in some sensible way (e.g. wxTreebook overrides this to allow
279 // having nodes without any associated page)
280 virtual bool AllowNullPage() const { return false; }
282 // remove the page and return a pointer to it
283 virtual wxWindow
*DoRemovePage(size_t page
) = 0;
285 // our best size is the size which fits all our pages
286 virtual wxSize
DoGetBestSize() const;
288 // helper: get the next page wrapping if we reached the end
289 int GetNextPage(bool forward
) const;
292 virtual void DoSize();
294 // This method also invalidates the size of the controller and should be
295 // called instead of just InvalidateBestSize() whenever pages are added or
296 // removed as this also affects the controller
297 void DoInvalidateBestSize();
300 // Show the help for the corresponding page
301 void OnHelp(wxHelpEvent
& event
);
305 // the array of all pages of this control
306 wxArrayPages m_pages
;
308 // the associated image list or NULL
309 wxImageList
*m_imageList
;
311 // true if we must delete m_imageList
312 bool m_ownsImageList
;
315 virtual wxRect
GetPageRect() const;
318 void OnSize(wxSizeEvent
& event
);
320 // controller buddy if available, NULL otherwise (usually for native book controls like wxNotebook)
321 wxControl
*m_bookctrl
;
323 // Whether to shrink to fit current page
324 bool m_fitToCurrentPage
;
326 // the sizer containing the choice control
327 wxSizer
*m_controlSizer
;
329 // the margin around the choice control
334 // common part of all ctors
338 unsigned int m_internalBorder
;
340 DECLARE_ABSTRACT_CLASS(wxBookCtrlBase
)
341 wxDECLARE_NO_COPY_CLASS(wxBookCtrlBase
);
342 DECLARE_EVENT_TABLE()
345 // ----------------------------------------------------------------------------
346 // wxBookCtrlEvent: page changing events generated by book classes
347 // ----------------------------------------------------------------------------
349 class WXDLLIMPEXP_CORE wxBookCtrlEvent
: public wxNotifyEvent
352 wxBookCtrlEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0,
353 int nSel
= -1, int nOldSel
= -1)
354 : wxNotifyEvent(commandType
, winid
)
360 wxBookCtrlEvent(const wxBookCtrlEvent
& event
)
361 : wxNotifyEvent(event
)
363 m_nSel
= event
.m_nSel
;
364 m_nOldSel
= event
.m_nOldSel
;
367 virtual wxEvent
*Clone() const { return new wxBookCtrlEvent(*this); }
370 // the currently selected page (-1 if none)
371 int GetSelection() const { return m_nSel
; }
372 void SetSelection(int nSel
) { m_nSel
= nSel
; }
373 // the page that was selected before the change (-1 if none)
374 int GetOldSelection() const { return m_nOldSel
; }
375 void SetOldSelection(int nOldSel
) { m_nOldSel
= nOldSel
; }
378 int m_nSel
, // currently selected page
379 m_nOldSel
; // previously selected page
381 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxBookCtrlEvent
)
384 typedef void (wxEvtHandler::*wxBookCtrlEventFunction
)(wxBookCtrlEvent
&);
386 #define wxBookCtrlEventHandler(func) \
387 wxEVENT_HANDLER_CAST(wxBookCtrlEventFunction, func)
389 // obsolete name, defined for compatibility only
390 #define wxBookCtrlBaseEvent wxBookCtrlEvent
392 // make a default book control for given platform
394 // dedicated to majority of desktops
395 #include "wx/notebook.h"
396 #define wxBookCtrl wxNotebook
397 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
398 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
399 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_NOTEBOOK_PAGE_CHANGED(id, fn)
400 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_NOTEBOOK_PAGE_CHANGING(id, fn)
402 // dedicated to Smartphones
403 #include "wx/choicebk.h"
404 #define wxBookCtrl wxChoicebook
405 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
406 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
407 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_CHOICEBOOK_PAGE_CHANGED(id, fn)
408 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_CHOICEBOOK_PAGE_CHANGING(id, fn)
411 #if WXWIN_COMPATIBILITY_2_6
412 #define wxBC_TOP wxBK_TOP
413 #define wxBC_BOTTOM wxBK_BOTTOM
414 #define wxBC_LEFT wxBK_LEFT
415 #define wxBC_RIGHT wxBK_RIGHT
416 #define wxBC_DEFAULT wxBK_DEFAULT
419 #endif // wxUSE_BOOKCTRL
421 #endif // _WX_BOOKCTRL_H_