]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treebook.h | |
e54c96f1 | 3 | // Purpose: interface of wxTreebookEvent |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxTreebookEvent | |
11 | @wxheader{treebook.h} | |
7c913512 | 12 | |
23324ae1 | 13 | This class represents the events generated by a treebook control: currently, |
7977b62a BP |
14 | there are four of them. The EVT_TREEBOOK_PAGE_CHANGING() and |
15 | EVT_TREEBOOK_PAGE_CHANGED() - have exactly the same behaviour as | |
16 | wxNotebookEvent. | |
17 | ||
18 | The other two EVT_TREEBOOK_NODE_COLLAPSED() and EVT_TREEBOOK_NODE_EXPANDED() | |
19 | are triggered when page node in the tree control is collapsed/expanded. The | |
20 | page index could be retreived by calling GetSelection(). | |
21 | ||
22 | @beginEventTable{wxTreebookEvent} | |
23 | @event{EVT_TREEBOOK_PAGE_CHANGED(id, func)} | |
24 | The page selection was changed. Processes a @c | |
25 | wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED event. | |
26 | @event{EVT_TREEBOOK_PAGE_CHANGING(id, func)} | |
27 | The page selection is about to be changed. Processes a @c | |
28 | wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING event. This event can be @ref | |
29 | wxNotifyEvent::Veto() "vetoed". | |
30 | @event{EVT_TREEBOOK_NODE_COLLAPSED(id, func)} | |
31 | The page node is going to be collapsed. Processes a @c | |
32 | wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED event. | |
33 | @event{EVT_TREEBOOK_NODE_EXPANDED(id, func)} | |
34 | The page node is going to be expanded. Processes a @c | |
35 | wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED event. | |
36 | @endEventTable | |
37 | ||
23324ae1 FM |
38 | @library{wxcore} |
39 | @category{events} | |
7c913512 | 40 | |
7977b62a | 41 | @see wxTreebook, wxNotebookEvent |
23324ae1 FM |
42 | */ |
43 | class wxTreebookEvent : public wxNotifyEvent | |
44 | { | |
45 | public: | |
46 | /** | |
4cc4bfaf | 47 | @see wxNotebookEvent |
23324ae1 | 48 | */ |
4cc4bfaf | 49 | wxTreebookEvent(wxEventType commandType = wxEVT_NULL, int id = 0, |
23324ae1 FM |
50 | int nSel = wxNOT_FOUND, |
51 | int nOldSel = wxNOT_FOUND); | |
52 | ||
53 | /** | |
7977b62a BP |
54 | Returns the page that was selected before the change, @c wxNOT_FOUND if |
55 | none was selected. | |
23324ae1 | 56 | */ |
328f5751 | 57 | int GetOldSelection() const; |
23324ae1 FM |
58 | |
59 | /** | |
7977b62a BP |
60 | Returns the currently selected page, or @c wxNOT_FOUND if none was |
61 | selected. | |
62 | ||
63 | @see wxNotebookEvent::GetSelection() | |
23324ae1 | 64 | */ |
328f5751 | 65 | int GetSelection() const; |
23324ae1 FM |
66 | }; |
67 | ||
68 | ||
e54c96f1 | 69 | |
23324ae1 FM |
70 | /** |
71 | @class wxTreebook | |
72 | @wxheader{treebook.h} | |
7c913512 | 73 | |
7977b62a BP |
74 | This class is an extension of the wxNotebook class that allows a tree |
75 | structured set of pages to be shown in a control. A classic example is a | |
76 | netscape preferences dialog that shows a tree of preference sections on | |
77 | the left and select section page on the right. | |
7c913512 | 78 | |
23324ae1 | 79 | To use the class simply create it and populate with pages using |
7977b62a BP |
80 | InsertPage(), InsertSubPage(), AddPage(), AddSubPage(). |
81 | ||
82 | If your tree is no more than 1 level in depth then you could simply use | |
83 | AddPage() and AddSubPage() to sequentially populate your tree by adding at | |
84 | every step a page or a subpage to the end of the tree. | |
85 | ||
86 | @beginEventTable{wxTreebookEvent} | |
87 | @event{EVT_TREEBOOK_PAGE_CHANGED(id, func)} | |
88 | The page selection was changed. Processes a @c | |
89 | wxEVT_COMMAND_TREEBOOK_PAGE_CHANGED event. | |
90 | @event{EVT_TREEBOOK_PAGE_CHANGING(id, func)} | |
91 | The page selection is about to be changed. Processes a @c | |
92 | wxEVT_COMMAND_TREEBOOK_PAGE_CHANGING event. This event can be @ref | |
93 | wxNotifyEvent::Veto() "vetoed". | |
94 | @event{EVT_TREEBOOK_NODE_COLLAPSED(id, func)} | |
95 | The page node is going to be collapsed. Processes a @c | |
96 | wxEVT_COMMAND_TREEBOOK_NODE_COLLAPSED event. | |
97 | @event{EVT_TREEBOOK_NODE_EXPANDED(id, func)} | |
98 | The page node is going to be expanded. Processes a @c | |
99 | wxEVT_COMMAND_TREEBOOK_NODE_EXPANDED event. | |
100 | @endEventTable | |
7c913512 | 101 | |
23324ae1 FM |
102 | @library{wxcore} |
103 | @category{miscwnd} | |
7c913512 | 104 | |
7977b62a BP |
105 | @see wxTreebookEvent, wxNotebook, wxTreeCtrl, wxImageList, |
106 | @ref overview_bookctrl, @ref page_samples_notebook | |
23324ae1 | 107 | */ |
7977b62a | 108 | class wxTreebook : public wxBookCtrlBase |
23324ae1 FM |
109 | { |
110 | public: | |
23324ae1 | 111 | /** |
7977b62a BP |
112 | Default constructor. |
113 | */ | |
114 | wxTreebook(); | |
115 | ||
116 | /** | |
117 | Creates an empty wxTreebook. | |
3c4f71cc | 118 | |
7c913512 | 119 | @param parent |
4cc4bfaf | 120 | The parent window. Must be non-@NULL. |
7c913512 | 121 | @param id |
4cc4bfaf | 122 | The window identifier. |
7c913512 | 123 | @param pos |
4cc4bfaf | 124 | The window position. |
7c913512 | 125 | @param size |
4cc4bfaf | 126 | The window size. |
7c913512 | 127 | @param style |
4cc4bfaf | 128 | The window style. See wxNotebook. |
7c913512 | 129 | @param name |
4cc4bfaf | 130 | The name of the control (used only under Motif). |
23324ae1 | 131 | */ |
7c913512 FM |
132 | wxTreebook(wxWindow* parent, wxWindowID id, |
133 | const wxPoint& pos = wxDefaultPosition, | |
134 | const wxSize& size = wxDefaultSize, | |
bfb6fde3 | 135 | long style = wxBK_DEFAULT, |
7c913512 | 136 | const wxString& name = wxEmptyString); |
23324ae1 FM |
137 | |
138 | /** | |
7977b62a BP |
139 | Destroys the wxTreebook object. Also deletes all the pages owned by the |
140 | control (inserted previously into it). | |
23324ae1 FM |
141 | */ |
142 | ~wxTreebook(); | |
143 | ||
144 | /** | |
7977b62a BP |
145 | Adds a new page. The page is placed at the topmost level after all other |
146 | pages. @NULL could be specified for page to create an empty page. | |
23324ae1 FM |
147 | */ |
148 | bool AddPage(wxWindow* page, const wxString& text, | |
4cc4bfaf | 149 | bool bSelect = false, |
23324ae1 FM |
150 | int imageId = wxNOT_FOUND); |
151 | ||
152 | /** | |
7977b62a BP |
153 | Adds a new child-page to the last top-level page. @NULL could be |
154 | specified for page to create an empty page. | |
23324ae1 FM |
155 | */ |
156 | bool AddSubPage(wxWindow* page, const wxString& text, | |
4cc4bfaf | 157 | bool bSelect = false, |
23324ae1 FM |
158 | int imageId = wxNOT_FOUND); |
159 | ||
160 | /** | |
7977b62a BP |
161 | Sets the image list for the page control and takes ownership of the |
162 | list. | |
3c4f71cc | 163 | |
4cc4bfaf | 164 | @see wxImageList, SetImageList() |
23324ae1 FM |
165 | */ |
166 | void AssignImageList(wxImageList* imageList); | |
167 | ||
168 | /** | |
7977b62a BP |
169 | Changes the selection for the given page, returning the previous |
170 | selection. | |
171 | ||
23324ae1 | 172 | The call to this function does not generate the page changing events. |
7977b62a BP |
173 | This is the only difference with SetSelection(). See |
174 | @ref overview_eventhandling_prog for more info. | |
23324ae1 FM |
175 | */ |
176 | int ChangeSelection(size_t page); | |
177 | ||
178 | /** | |
7977b62a BP |
179 | Shortcut for @ref wxTreebook::ExpandNode() "ExpandNode"( @a pageId, |
180 | @false ). | |
23324ae1 FM |
181 | */ |
182 | bool CollapseNode(size_t pageId); | |
183 | ||
184 | /** | |
7977b62a BP |
185 | Creates a treebook control. See wxTreebook::wxTreebook() for the |
186 | description of the parameters. | |
23324ae1 FM |
187 | */ |
188 | bool Create(wxWindow* parent, wxWindowID id, | |
189 | const wxPoint& pos = wxDefaultPosition, | |
190 | const wxSize& size = wxDefaultSize, | |
bfb6fde3 | 191 | long style = wxBK_DEFAULT, |
23324ae1 FM |
192 | const wxString& name = wxEmptyString); |
193 | ||
194 | /** | |
195 | Deletes all pages inserted into the treebook. No event is generated. | |
196 | */ | |
197 | bool DeleteAllPages(); | |
198 | ||
199 | /** | |
7977b62a BP |
200 | Deletes the page at the specified position and all its children. Could |
201 | trigger page selection change in a case when selected page is removed. | |
202 | In that case its parent is selected (or the next page if no parent). | |
23324ae1 FM |
203 | */ |
204 | bool DeletePage(size_t pagePos); | |
205 | ||
206 | /** | |
7977b62a BP |
207 | Expands (collapses) the @a pageId node. Returns the previous state. May |
208 | generate page changing events (if selected page is under the collapsed | |
209 | branch, then its parent is autoselected). | |
23324ae1 | 210 | */ |
4cc4bfaf | 211 | bool ExpandNode(size_t pageId, bool expand = true); |
23324ae1 FM |
212 | |
213 | /** | |
214 | Returns the image index for the given page. | |
215 | */ | |
328f5751 | 216 | int GetPageImage(size_t n) const; |
23324ae1 FM |
217 | |
218 | /** | |
219 | Returns the parent page of the given one or @c wxNOT_FOUND if this is a | |
220 | top-level page. | |
221 | */ | |
328f5751 | 222 | int GetPageParent(size_t page) const; |
23324ae1 FM |
223 | |
224 | /** | |
225 | Returns the string for the given page. | |
226 | */ | |
328f5751 | 227 | wxString GetPageText(size_t n) const; |
23324ae1 FM |
228 | |
229 | /** | |
7977b62a BP |
230 | Returns the currently selected page, or @c wxNOT_FOUND if none was |
231 | selected. | |
232 | ||
233 | @note This method may return either the previously or newly selected | |
234 | page when called from the EVT_TREEBOOK_PAGE_CHANGED() handler | |
235 | depending on the platform and so wxTreebookEvent::GetSelection() | |
236 | should be used instead in this case. | |
23324ae1 | 237 | */ |
328f5751 | 238 | int GetSelection() const; |
23324ae1 FM |
239 | |
240 | /** | |
7977b62a BP |
241 | Inserts a new page just before the page indicated by @a pagePos. The new |
242 | page is placed before @a pagePos page and on the same level. @NULL could | |
243 | be specified for page to create an empty page. | |
23324ae1 FM |
244 | */ |
245 | bool InsertPage(size_t pagePos, wxWindow* page, | |
246 | const wxString& text, | |
4cc4bfaf | 247 | bool bSelect = false, |
23324ae1 FM |
248 | int imageId = wxNOT_FOUND); |
249 | ||
250 | /** | |
251 | Inserts a sub page under the specified page. | |
7977b62a | 252 | |
23324ae1 FM |
253 | @NULL could be specified for page to create an empty page. |
254 | */ | |
255 | bool InsertSubPage(size_t pagePos, wxWindow* page, | |
256 | const wxString& text, | |
4cc4bfaf | 257 | bool bSelect = false, |
23324ae1 FM |
258 | int imageId = wxNOT_FOUND); |
259 | ||
260 | /** | |
7977b62a | 261 | Returns @true if the page represented by @a pageId is expanded. |
23324ae1 | 262 | */ |
328f5751 | 263 | bool IsNodeExpanded(size_t pageId) const; |
23324ae1 FM |
264 | |
265 | /** | |
7977b62a BP |
266 | Sets the image list for the page control. It does not take ownership of |
267 | the image list, you must delete it yourself. | |
3c4f71cc | 268 | |
4cc4bfaf | 269 | @see wxImageList, AssignImageList() |
23324ae1 FM |
270 | */ |
271 | void SetImageList(wxImageList* imageList); | |
272 | ||
273 | /** | |
7977b62a BP |
274 | Sets the image index for the given @a page. @a imageId is an index into |
275 | the image list which was set with SetImageList(). | |
23324ae1 FM |
276 | */ |
277 | bool SetPageImage(size_t page, int imageId); | |
278 | ||
279 | /** | |
7977b62a | 280 | Sets the @a text for the given @a page. |
23324ae1 FM |
281 | */ |
282 | bool SetPageText(size_t page, const wxString& text); | |
283 | ||
284 | /** | |
7977b62a BP |
285 | @deprecated Please use ChangeSelection() instead. |
286 | ||
23324ae1 | 287 | Sets the selection for the given page, returning the previous selection. |
3c4f71cc | 288 | |
7977b62a BP |
289 | The call to this function generates page changing events. |
290 | ||
291 | @see GetSelection(), ChangeSelection() | |
23324ae1 FM |
292 | */ |
293 | int SetSelection(size_t n); | |
294 | }; | |
e54c96f1 | 295 |