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;
125 // remove one page from the control and delete it
126 virtual bool DeletePage(size_t n
);
128 // remove one page from the notebook, without deleting it
129 virtual bool RemovePage(size_t n
)
131 InvalidateBestSize();
132 return DoRemovePage(n
) != NULL
;
135 // remove all pages and delete them
136 virtual bool DeleteAllPages()
138 InvalidateBestSize();
139 WX_CLEAR_ARRAY(m_pages
);
143 // adds a new page to the control
144 virtual bool AddPage(wxWindow
*page
,
145 const wxString
& text
,
146 bool bSelect
= false,
149 InvalidateBestSize();
150 return InsertPage(GetPageCount(), page
, text
, bSelect
, imageId
);
153 // the same as AddPage(), but adds the page at the specified position
154 virtual bool InsertPage(size_t n
,
156 const wxString
& text
,
157 bool bSelect
= false,
158 int imageId
= -1) = 0;
160 // set the currently selected page, return the index of the previously
161 // selected one (or -1 on error)
163 // NB: this function will generate PAGE_CHANGING/ED events
164 virtual int SetSelection(size_t n
) = 0;
167 // cycle thru the pages
168 void AdvanceSelection(bool forward
= true)
170 int nPage
= GetNextPage(forward
);
173 // cast is safe because of the check above
174 SetSelection((size_t)nPage
);
179 // Should we accept NULL page pointers in Add/InsertPage()?
181 // Default is no but derived classes may override it if they can treat NULL
182 // pages in some sensible way (e.g. wxTreebook overrides this to allow
183 // having nodes without any associated page)
184 virtual bool AllowNullPage() const { return false; }
186 // remove the page and return a pointer to it
187 virtual wxWindow
*DoRemovePage(size_t page
) = 0;
189 // our best size is the size which fits all our pages
190 virtual wxSize
DoGetBestSize() const;
192 // helper: get the next page wrapping if we reached the end
193 int GetNextPage(bool forward
) const;
195 // common part of all ctors
198 // Always rely on GetBestSize, which will look at all the pages
199 virtual void SetInitialBestSize(const wxSize
& WXUNUSED(size
)) { }
202 // the array of all pages of this control
203 wxArrayPages m_pages
;
205 // the associated image list or NULL
206 wxImageList
*m_imageList
;
208 // true if we must delete m_imageList
209 bool m_ownsImageList
;
212 DECLARE_NO_COPY_CLASS(wxBookCtrlBase
)
215 // ----------------------------------------------------------------------------
216 // wxBookCtrlBaseEvent: page changing events generated by derived classes
217 // ----------------------------------------------------------------------------
219 class WXDLLEXPORT wxBookCtrlBaseEvent
: public wxNotifyEvent
222 wxBookCtrlBaseEvent(wxEventType commandType
= wxEVT_NULL
, int winid
= 0,
223 int nSel
= -1, int nOldSel
= -1)
224 : wxNotifyEvent(commandType
, winid
)
231 // the currently selected page (-1 if none)
232 int GetSelection() const { return m_nSel
; }
233 void SetSelection(int nSel
) { m_nSel
= nSel
; }
234 // the page that was selected before the change (-1 if none)
235 int GetOldSelection() const { return m_nOldSel
; }
236 void SetOldSelection(int nOldSel
) { m_nOldSel
= nOldSel
; }
239 int m_nSel
, // currently selected page
240 m_nOldSel
; // previously selected page
243 // make a default book control for given platform
245 // dedicated to majority of desktops
246 #include "wx/notebook.h"
247 #define wxBookCtrl wxNotebook
248 #define wxBookCtrlEvent wxNotebookEvent
249 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
250 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
251 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_NOTEBOOK_PAGE_CHANGED(id, fn)
252 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_NOTEBOOK_PAGE_CHANGING(id, fn)
253 #define wxBC_TOP wxNB_TOP
254 #define wxBC_BOTTOM wxNB_BOTTOM
255 #define wxBC_LEFT wxNB_LEFT
256 #define wxBC_RIGHT wxNB_RIGHT
257 #define wxBC_DEFAULT wxNB_DEFAULT
259 // dedicated to Smartphones
260 #include "wx/choicebk.h"
261 #define wxBookCtrl wxChoicebook
262 #define wxBookCtrlEvent wxChoicebookEvent
263 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
264 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
265 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_CHOICEBOOK_PAGE_CHANGED(id, fn)
266 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_CHOICEBOOK_PAGE_CHANGING(id, fn)
267 #define wxBC_TOP wxCHB_TOP
268 #define wxBC_BOTTOM wxCHB_BOTTOM
269 #define wxBC_LEFT wxCHB_LEFT
270 #define wxBC_RIGHT wxCHB_RIGHT
271 #define wxBC_DEFAULT wxCHB_DEFAULT
274 #endif // wxUSE_BOOKCTRL
276 #endif // _WX_BOOKCTRL_H_