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 WXDLLEXPORT wxImageList
;
30 // ----------------------------------------------------------------------------
32 // ----------------------------------------------------------------------------
34 class WXDLLEXPORT wxBookCtrlBase
: public wxControl
45 wxBookCtrlBase(wxWindow
*parent
,
47 const wxPoint
& pos
= wxDefaultPosition
,
48 const wxSize
& size
= wxDefaultSize
,
50 const wxString
& name
= wxEmptyString
)
54 (void)Create(parent
, winid
, pos
, size
, style
, name
);
58 bool Create(wxWindow
*parent
,
60 const wxPoint
& pos
= wxDefaultPosition
,
61 const wxSize
& size
= wxDefaultSize
,
63 const wxString
& name
= wxEmptyString
);
66 virtual ~wxBookCtrlBase();
72 // get number of pages in the dialog
73 virtual size_t GetPageCount() const { return m_pages
.size(); }
75 // get the panel which represents the given page
76 wxWindow
*GetPage(size_t n
) { return m_pages
[n
]; }
77 wxWindow
*GetPage(size_t n
) const { return m_pages
[n
]; }
79 // get the current page or NULL if none
80 wxWindow
*GetCurrentPage() const
82 const int n
= GetSelection();
83 return n
== wxNOT_FOUND
? NULL
: GetPage(n
);
86 // get the currently selected page or wxNOT_FOUND if none
87 virtual int GetSelection() const = 0;
89 // set/get the title of a page
90 virtual bool SetPageText(size_t n
, const wxString
& strText
) = 0;
91 virtual wxString
GetPageText(size_t n
) const = 0;
94 // image list stuff: each page may have an image associated with it (all
95 // images belong to the same image list)
96 // ---------------------------------------------------------------------
98 // sets the image list to use, it is *not* deleted by the control
99 virtual void SetImageList(wxImageList
*imageList
);
101 // as SetImageList() but we will delete the image list ourselves
102 void AssignImageList(wxImageList
*imageList
);
104 // get pointer (may be NULL) to the associated image list
105 wxImageList
* GetImageList() const { return m_imageList
; }
107 // sets/returns item's image index in the current image list
108 virtual int GetPageImage(size_t n
) const = 0;
109 virtual bool SetPageImage(size_t n
, int imageId
) = 0;
115 // resize the notebook so that all pages will have the specified size
116 virtual void SetPageSize(const wxSize
& size
);
118 // calculate the size of the control from the size of its page
119 virtual wxSize
CalcSizeFromPage(const wxSize
& sizePage
) const = 0;
121 // get/set size of area between book control area and page area
122 inline unsigned int GetInternalBorder() const
124 return m_internalBorder
;
126 void SetInternalBorder(unsigned int internalBorder
)
128 m_internalBorder
= internalBorder
;
131 // returns true if we have wxCHB_TOP or wxCHB_BOTTOM style
132 bool IsVertical() const { return HasFlag(wxBK_BOTTOM
| wxBK_TOP
); }
137 // remove one page from the control and delete it
138 virtual bool DeletePage(size_t n
);
140 // remove one page from the notebook, without deleting it
141 virtual bool RemovePage(size_t n
)
143 InvalidateBestSize();
144 return DoRemovePage(n
) != NULL
;
147 // remove all pages and delete them
148 virtual bool DeleteAllPages()
150 InvalidateBestSize();
151 WX_CLEAR_ARRAY(m_pages
);
155 // adds a new page to the control
156 virtual bool AddPage(wxWindow
*page
,
157 const wxString
& text
,
158 bool bSelect
= false,
161 InvalidateBestSize();
162 return InsertPage(GetPageCount(), page
, text
, bSelect
, imageId
);
165 // the same as AddPage(), but adds the page at the specified position
166 virtual bool InsertPage(size_t n
,
168 const wxString
& text
,
169 bool bSelect
= false,
170 int imageId
= -1) = 0;
172 // set the currently selected page, return the index of the previously
173 // selected one (or -1 on error)
175 // NB: this function will generate PAGE_CHANGING/ED events
176 virtual int SetSelection(size_t n
) = 0;
179 // cycle thru the pages
180 void AdvanceSelection(bool forward
= true)
182 int nPage
= GetNextPage(forward
);
185 // cast is safe because of the check above
186 SetSelection((size_t)nPage
);
191 // Should we accept NULL page pointers in Add/InsertPage()?
193 // Default is no but derived classes may override it if they can treat NULL
194 // pages in some sensible way (e.g. wxTreebook overrides this to allow
195 // having nodes without any associated page)
196 virtual bool AllowNullPage() const { return false; }
198 // remove the page and return a pointer to it
199 virtual wxWindow
*DoRemovePage(size_t page
) = 0;
201 // our best size is the size which fits all our pages
202 virtual wxSize
DoGetBestSize() const;
204 // helper: get the next page wrapping if we reached the end
205 int GetNextPage(bool forward
) const;
207 // Always rely on GetBestSize, which will look at all the pages
208 virtual void SetInitialBestSize(const wxSize
& WXUNUSED(size
)) { }
210 // the array of all pages of this control
211 wxArrayPages m_pages
;
213 // the associated image list or NULL
214 wxImageList
*m_imageList
;
216 // true if we must delete m_imageList
217 bool m_ownsImageList
;
220 wxRect
GetPageRect() const;
223 virtual wxSize
GetControllerSize() const;
224 void OnSize(wxSizeEvent
& event
);
226 // controller buddy if available, NULL otherwise (usually for native book controls like wxNotebook)
227 wxControl
*m_bookctrl
;
231 // common part of all ctors
235 unsigned int m_internalBorder
;
237 DECLARE_ABSTRACT_CLASS(wxBookCtrlBase
)
238 DECLARE_NO_COPY_CLASS(wxBookCtrlBase
)
239 DECLARE_EVENT_TABLE()
242 // ----------------------------------------------------------------------------
243 // wxBookCtrlBaseEvent: page changing events generated by derived classes
244 // ----------------------------------------------------------------------------
246 class WXDLLEXPORT wxBookCtrlBaseEvent
: public wxNotifyEvent
249 wxBookCtrlBaseEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0,
250 int nSel
= -1, int nOldSel
= -1)
251 : wxNotifyEvent(commandType
, winid
)
257 wxBookCtrlBaseEvent(const wxBookCtrlBaseEvent
& event
)
258 : wxNotifyEvent(event
)
260 m_nSel
= event
.m_nSel
;
261 m_nOldSel
= event
.m_nOldSel
;
265 // the currently selected page (-1 if none)
266 int GetSelection() const { return m_nSel
; }
267 void SetSelection(int nSel
) { m_nSel
= nSel
; }
268 // the page that was selected before the change (-1 if none)
269 int GetOldSelection() const { return m_nOldSel
; }
270 void SetOldSelection(int nOldSel
) { m_nOldSel
= nOldSel
; }
273 int m_nSel
, // currently selected page
274 m_nOldSel
; // previously selected page
277 // make a default book control for given platform
279 // dedicated to majority of desktops
280 #include "wx/notebook.h"
281 #define wxBookCtrl wxNotebook
282 #define wxBookCtrlEvent wxNotebookEvent
283 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
284 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
285 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_NOTEBOOK_PAGE_CHANGED(id, fn)
286 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_NOTEBOOK_PAGE_CHANGING(id, fn)
288 // dedicated to Smartphones
289 #include "wx/choicebk.h"
290 #define wxBookCtrl wxChoicebook
291 #define wxBookCtrlEvent wxChoicebookEvent
292 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
293 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
294 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_CHOICEBOOK_PAGE_CHANGED(id, fn)
295 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_CHOICEBOOK_PAGE_CHANGING(id, fn)
298 #if WXWIN_COMPATIBILITY_2_6
299 #define wxBC_TOP wxBK_TOP
300 #define wxBC_BOTTOM wxBK_BOTTOM
301 #define wxBC_LEFT wxBK_LEFT
302 #define wxBC_RIGHT wxBK_RIGHT
303 #define wxBC_DEFAULT wxBK_DEFAULT
306 #endif // wxUSE_BOOKCTRL
308 #endif // _WX_BOOKCTRL_H_