]> git.saurik.com Git - wxWidgets.git/blame - include/wx/bookctrl.h
Correct compilation for GTK < 2.4.
[wxWidgets.git] / include / wx / bookctrl.h
CommitLineData
15aad3b9
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/bookctrl.h
61c083e7 3// Purpose: wxBookCtrlBase: common base class for wxList/Tree/Notebook
15aad3b9
VZ
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 19.08.03
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
15aad3b9
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BOOKCTRL_H_
13#define _WX_BOOKCTRL_H_
14
15aad3b9
VZ
15// ----------------------------------------------------------------------------
16// headers
17// ----------------------------------------------------------------------------
18
19#include "wx/defs.h"
20
21#if wxUSE_BOOKCTRL
22
23#include "wx/control.h"
24#include "wx/dynarray.h"
25
d5d29b8a 26WX_DEFINE_EXPORTED_ARRAY_PTR(wxWindow *, wxArrayPages);
15aad3b9
VZ
27
28class WXDLLEXPORT wxImageList;
29
30// ----------------------------------------------------------------------------
61c083e7 31// wxBookCtrlBase
15aad3b9
VZ
32// ----------------------------------------------------------------------------
33
61c083e7 34class WXDLLEXPORT wxBookCtrlBase : public wxControl
15aad3b9
VZ
35{
36public:
37 // construction
38 // ------------
39
61c083e7 40 wxBookCtrlBase()
6463b9f5
JS
41 {
42 Init();
43 }
15aad3b9 44
61c083e7
WS
45 wxBookCtrlBase(wxWindow *parent,
46 wxWindowID winid,
47 const wxPoint& pos = wxDefaultPosition,
48 const wxSize& size = wxDefaultSize,
49 long style = 0,
50 const wxString& name = wxEmptyString)
6463b9f5
JS
51 {
52 Init();
53
54 (void)Create(parent, winid, pos, size, style, name);
55 }
15aad3b9
VZ
56
57 // quasi ctor
58 bool Create(wxWindow *parent,
aa6f64c7 59 wxWindowID winid,
15aad3b9
VZ
60 const wxPoint& pos = wxDefaultPosition,
61 const wxSize& size = wxDefaultSize,
62 long style = 0,
63 const wxString& name = wxEmptyString);
64
65 // dtor
61c083e7 66 virtual ~wxBookCtrlBase();
15aad3b9
VZ
67
68
69 // accessors
70 // ---------
71
72 // get number of pages in the dialog
73 virtual size_t GetPageCount() const { return m_pages.size(); }
74
75 // get the panel which represents the given page
97c58531
VZ
76 wxWindow *GetPage(size_t n) { return m_pages[n]; }
77 wxWindow *GetPage(size_t n) const { return m_pages[n]; }
15aad3b9 78
21db32c1
VZ
79 // get the current page or NULL if none
80 wxWindow *GetCurrentPage() const
81 {
97c58531
VZ
82 const int n = GetSelection();
83 return n == wxNOT_FOUND ? NULL : GetPage(n);
21db32c1
VZ
84 }
85
15aad3b9
VZ
86 // get the currently selected page or wxNOT_FOUND if none
87 virtual int GetSelection() const = 0;
88
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;
92
93
94 // image list stuff: each page may have an image associated with it (all
95 // images belong to the same image list)
96 // ---------------------------------------------------------------------
97
98 // sets the image list to use, it is *not* deleted by the control
99 virtual void SetImageList(wxImageList *imageList);
100
101 // as SetImageList() but we will delete the image list ourselves
102 void AssignImageList(wxImageList *imageList);
103
104 // get pointer (may be NULL) to the associated image list
105 wxImageList* GetImageList() const { return m_imageList; }
106
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;
110
111
112 // geometry
113 // --------
114
115 // resize the notebook so that all pages will have the specified size
116 virtual void SetPageSize(const wxSize& size);
117
118 // calculate the size of the control from the size of its page
119 virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const = 0;
120
159e6235 121 // get/set size of area between book control area and page area
851b88c3
VZ
122 unsigned int GetInternalBorder() const { return m_internalBorder; }
123 void SetInternalBorder(unsigned int border) { m_internalBorder = border; }
15aad3b9 124
87cf52d8
JS
125 // Sets/gets the margin around the controller
126 void SetControlMargin(int margin) { m_controlMargin = margin; }
127 int GetControlMargin() const { return m_controlMargin; }
128
e0d5d9af 129 // returns true if we have wxBK_TOP or wxBK_BOTTOM style
90f9b8ef 130 bool IsVertical() const { return HasFlag(wxBK_BOTTOM | wxBK_TOP); }
d8fd7acb 131
93bfe545 132 // set/get option to shrink to fit current page
da817fa6
JS
133 void SetFitToCurrentPage(bool fit) { m_fitToCurrentPage = fit; }
134 bool GetFitToCurrentPage() const { return m_fitToCurrentPage; }
93bfe545 135
87cf52d8
JS
136 // returns the sizer containing the control, if any
137 wxSizer* GetControlSizer() const { return m_controlSizer; }
138
15aad3b9
VZ
139 // operations
140 // ----------
141
142 // remove one page from the control and delete it
143 virtual bool DeletePage(size_t n);
144
145 // remove one page from the notebook, without deleting it
37144cf0
RD
146 virtual bool RemovePage(size_t n)
147 {
148 InvalidateBestSize();
149 return DoRemovePage(n) != NULL;
150 }
15aad3b9
VZ
151
152 // remove all pages and delete them
37144cf0
RD
153 virtual bool DeleteAllPages()
154 {
155 InvalidateBestSize();
156 WX_CLEAR_ARRAY(m_pages);
157 return true;
158 }
15aad3b9
VZ
159
160 // adds a new page to the control
161 virtual bool AddPage(wxWindow *page,
162 const wxString& text,
163 bool bSelect = false,
164 int imageId = -1)
165 {
37144cf0 166 InvalidateBestSize();
15aad3b9
VZ
167 return InsertPage(GetPageCount(), page, text, bSelect, imageId);
168 }
169
170 // the same as AddPage(), but adds the page at the specified position
171 virtual bool InsertPage(size_t n,
172 wxWindow *page,
173 const wxString& text,
174 bool bSelect = false,
175 int imageId = -1) = 0;
176
177 // set the currently selected page, return the index of the previously
178 // selected one (or -1 on error)
179 //
1f30c176 180 // NB: this function will generate PAGE_CHANGING/ED events
15aad3b9
VZ
181 virtual int SetSelection(size_t n) = 0;
182
183
184 // cycle thru the pages
185 void AdvanceSelection(bool forward = true)
186 {
187 int nPage = GetNextPage(forward);
188 if ( nPage != -1 )
189 {
190 // cast is safe because of the check above
191 SetSelection((size_t)nPage);
192 }
193 }
194
851b88c3
VZ
195 // hit test: returns which page is hit and, optionally, where (icon, label)
196 virtual int HitTest(const wxPoint& WXUNUSED(pt),
197 long * WXUNUSED(flags) = NULL) const
198 {
199 return wxNOT_FOUND;
200 }
201
15aad3b9 202protected:
eca15c0d
VZ
203 // Should we accept NULL page pointers in Add/InsertPage()?
204 //
205 // Default is no but derived classes may override it if they can treat NULL
206 // pages in some sensible way (e.g. wxTreebook overrides this to allow
207 // having nodes without any associated page)
208 virtual bool AllowNullPage() const { return false; }
209
15aad3b9
VZ
210 // remove the page and return a pointer to it
211 virtual wxWindow *DoRemovePage(size_t page) = 0;
212
213 // our best size is the size which fits all our pages
214 virtual wxSize DoGetBestSize() const;
215
216 // helper: get the next page wrapping if we reached the end
217 int GetNextPage(bool forward) const;
218
6457949e
RD
219 // Always rely on GetBestSize, which will look at all the pages
220 virtual void SetInitialBestSize(const wxSize& WXUNUSED(size)) { }
15aad3b9 221
233387bd
JS
222 // Lay out controls
223 void DoSize();
224
a18c21f0
VZ
225#if wxUSE_HELP
226 // Show the help for the corresponding page
227 void OnHelp(wxHelpEvent& event);
228#endif // wxUSE_HELP
229
230
15aad3b9
VZ
231 // the array of all pages of this control
232 wxArrayPages m_pages;
233
234 // the associated image list or NULL
235 wxImageList *m_imageList;
236
237 // true if we must delete m_imageList
238 bool m_ownsImageList;
239
d8fd7acb
WS
240 // get the page area
241 wxRect GetPageRect() const;
242
243 // event handlers
244 virtual wxSize GetControllerSize() const;
245 void OnSize(wxSizeEvent& event);
246
247 // controller buddy if available, NULL otherwise (usually for native book controls like wxNotebook)
248 wxControl *m_bookctrl;
249
93bfe545 250 // Whether to shrink to fit current page
da817fa6 251 bool m_fitToCurrentPage;
93bfe545 252
87cf52d8
JS
253 // the sizer containing the choice control
254 wxSizer* m_controlSizer;
255
256 // the margin around the choice control
257 int m_controlMargin;
258
159e6235
WS
259private:
260
261 // common part of all ctors
262 void Init();
263
264 // internal border
a5325ad6 265 unsigned int m_internalBorder;
15aad3b9 266
d8fd7acb 267 DECLARE_ABSTRACT_CLASS(wxBookCtrlBase)
61c083e7 268 DECLARE_NO_COPY_CLASS(wxBookCtrlBase)
d8fd7acb 269 DECLARE_EVENT_TABLE()
15aad3b9
VZ
270};
271
272// ----------------------------------------------------------------------------
61c083e7 273// wxBookCtrlBaseEvent: page changing events generated by derived classes
15aad3b9
VZ
274// ----------------------------------------------------------------------------
275
61c083e7 276class WXDLLEXPORT wxBookCtrlBaseEvent : public wxNotifyEvent
15aad3b9
VZ
277{
278public:
61c083e7
WS
279 wxBookCtrlBaseEvent(wxEventType commandType = wxEVT_NULL, int winid = 0,
280 int nSel = -1, int nOldSel = -1)
aa6f64c7 281 : wxNotifyEvent(commandType, winid)
b2f8e75a
VZ
282 {
283 m_nSel = nSel;
284 m_nOldSel = nOldSel;
285 }
286
287 wxBookCtrlBaseEvent(const wxBookCtrlBaseEvent& event)
288 : wxNotifyEvent(event)
289 {
290 m_nSel = event.m_nSel;
291 m_nOldSel = event.m_nOldSel;
292 }
15aad3b9
VZ
293
294 // accessors
295 // the currently selected page (-1 if none)
296 int GetSelection() const { return m_nSel; }
297 void SetSelection(int nSel) { m_nSel = nSel; }
298 // the page that was selected before the change (-1 if none)
299 int GetOldSelection() const { return m_nOldSel; }
300 void SetOldSelection(int nOldSel) { m_nOldSel = nOldSel; }
301
302private:
303 int m_nSel, // currently selected page
304 m_nOldSel; // previously selected page
305};
306
61c083e7 307// make a default book control for given platform
311131d3
WS
308#if wxUSE_NOTEBOOK
309 // dedicated to majority of desktops
36b79d44 310 #include "wx/notebook.h"
61c083e7
WS
311 #define wxBookCtrl wxNotebook
312 #define wxBookCtrlEvent wxNotebookEvent
313 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED
314 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING
315 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_NOTEBOOK_PAGE_CHANGED(id, fn)
316 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_NOTEBOOK_PAGE_CHANGING(id, fn)
311131d3
WS
317#else
318 // dedicated to Smartphones
319 #include "wx/choicebk.h"
320 #define wxBookCtrl wxChoicebook
321 #define wxBookCtrlEvent wxChoicebookEvent
322 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGED wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED
323 #define wxEVT_COMMAND_BOOKCTRL_PAGE_CHANGING wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING
324 #define EVT_BOOKCTRL_PAGE_CHANGED(id, fn) EVT_CHOICEBOOK_PAGE_CHANGED(id, fn)
325 #define EVT_BOOKCTRL_PAGE_CHANGING(id, fn) EVT_CHOICEBOOK_PAGE_CHANGING(id, fn)
d8fd7acb
WS
326#endif
327
328#if WXWIN_COMPATIBILITY_2_6
329 #define wxBC_TOP wxBK_TOP
330 #define wxBC_BOTTOM wxBK_BOTTOM
331 #define wxBC_LEFT wxBK_LEFT
332 #define wxBC_RIGHT wxBK_RIGHT
333 #define wxBC_DEFAULT wxBK_DEFAULT
61c083e7
WS
334#endif
335
15aad3b9
VZ
336#endif // wxUSE_BOOKCTRL
337
338#endif // _WX_BOOKCTRL_H_