]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: treectrl.cpp | |
3 | // Purpose: wxTreeCtrl sample | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
9 | // Licence: wxWindows license | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // important: the #pragma argument must be different from treectrl.cpp, | |
13 | // otherwise gcc gets confused (as there is also treectrl.cpp in the library | |
14 | // which has identical #pragma) and the sample crashes on startup! | |
15 | #ifdef __GNUG__ | |
16 | #pragma interface "treetest.cpp" | |
17 | #pragma implementation "treetest.cpp" | |
18 | #endif | |
19 | ||
20 | // For compilers that support precompilation, includes "wx/wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #ifndef WX_PRECOMP | |
28 | #include "wx/wx.h" | |
29 | #endif | |
30 | ||
31 | #include "wx/log.h" | |
32 | ||
33 | #include "wx/image.h" | |
34 | #include "wx/imaglist.h" | |
35 | #include "wx/treectrl.h" | |
36 | ||
37 | #include "math.h" | |
38 | ||
39 | #ifdef __WIN32__ | |
40 | // this is not supported by native control | |
41 | #define NO_VARIABLE_HEIGHT | |
42 | #endif | |
43 | ||
44 | #include "treectrl.h" | |
45 | ||
46 | // under Windows the icons are in the .rc file | |
47 | #ifndef __WXMSW__ | |
48 | #include "icon1.xpm" | |
49 | #include "icon2.xpm" | |
50 | #include "icon3.xpm" | |
51 | #include "icon4.xpm" | |
52 | #include "icon5.xpm" | |
53 | #include "mondrian.xpm" | |
54 | #endif | |
55 | ||
56 | // verify that the item is ok and insult the user if it is not | |
57 | #define CHECK_ITEM( item ) if ( !item.IsOk() ) { \ | |
58 | wxMessageBox("Please select some item first!", \ | |
59 | "Tree sample error", \ | |
60 | wxOK | wxICON_EXCLAMATION, \ | |
61 | this); \ | |
62 | return; \ | |
63 | } | |
64 | ||
65 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) | |
66 | EVT_SIZE(MyFrame::OnSize) | |
67 | ||
68 | #define MENU_LINK(name) EVT_MENU(TreeTest_##name, MyFrame::On##name) | |
69 | MENU_LINK(Quit) | |
70 | MENU_LINK(About) | |
71 | MENU_LINK(TogButtons) | |
72 | MENU_LINK(TogTwist) | |
73 | MENU_LINK(TogLines) | |
74 | MENU_LINK(TogEdit) | |
75 | MENU_LINK(TogHideRoot) | |
76 | MENU_LINK(TogRootLines) | |
77 | MENU_LINK(TogBorder) | |
78 | MENU_LINK(Dump) | |
79 | #ifndef NO_MULTIPLE_SELECTION | |
80 | MENU_LINK(DumpSelected) | |
81 | MENU_LINK(Select) | |
82 | MENU_LINK(Unselect) | |
83 | MENU_LINK(ToggleSel) | |
84 | #endif // NO_MULTIPLE_SELECTION | |
85 | MENU_LINK(Rename) | |
86 | MENU_LINK(Count) | |
87 | MENU_LINK(CountRec) | |
88 | MENU_LINK(Sort) | |
89 | MENU_LINK(SortRev) | |
90 | MENU_LINK(SetBold) | |
91 | MENU_LINK(ClearBold) | |
92 | MENU_LINK(Delete) | |
93 | MENU_LINK(DeleteChildren) | |
94 | MENU_LINK(DeleteAll) | |
95 | MENU_LINK(Recreate) | |
96 | MENU_LINK(ToggleImages) | |
97 | MENU_LINK(ToggleButtons) | |
98 | MENU_LINK(SetImageSize) | |
99 | MENU_LINK(CollapseAndReset) | |
100 | MENU_LINK(EnsureVisible) | |
101 | MENU_LINK(AddItem) | |
102 | MENU_LINK(InsertItem) | |
103 | MENU_LINK(IncIndent) | |
104 | MENU_LINK(DecIndent) | |
105 | MENU_LINK(IncSpacing) | |
106 | MENU_LINK(DecSpacing) | |
107 | MENU_LINK(ToggleIcon) | |
108 | #undef MENU_LINK | |
109 | ||
110 | END_EVENT_TABLE() | |
111 | ||
112 | #if USE_GENERIC_TREECTRL | |
113 | BEGIN_EVENT_TABLE(MyTreeCtrl, wxGenericTreeCtrl) | |
114 | #else | |
115 | BEGIN_EVENT_TABLE(MyTreeCtrl, wxTreeCtrl) | |
116 | #endif | |
117 | EVT_TREE_BEGIN_DRAG(TreeTest_Ctrl, MyTreeCtrl::OnBeginDrag) | |
118 | EVT_TREE_BEGIN_RDRAG(TreeTest_Ctrl, MyTreeCtrl::OnBeginRDrag) | |
119 | EVT_TREE_END_DRAG(TreeTest_Ctrl, MyTreeCtrl::OnEndDrag) | |
120 | EVT_TREE_BEGIN_LABEL_EDIT(TreeTest_Ctrl, MyTreeCtrl::OnBeginLabelEdit) | |
121 | EVT_TREE_END_LABEL_EDIT(TreeTest_Ctrl, MyTreeCtrl::OnEndLabelEdit) | |
122 | EVT_TREE_DELETE_ITEM(TreeTest_Ctrl, MyTreeCtrl::OnDeleteItem) | |
123 | #if 0 // there are so many of those that logging them causes flicker | |
124 | EVT_TREE_GET_INFO(TreeTest_Ctrl, MyTreeCtrl::OnGetInfo) | |
125 | #endif | |
126 | EVT_TREE_SET_INFO(TreeTest_Ctrl, MyTreeCtrl::OnSetInfo) | |
127 | EVT_TREE_ITEM_EXPANDED(TreeTest_Ctrl, MyTreeCtrl::OnItemExpanded) | |
128 | EVT_TREE_ITEM_EXPANDING(TreeTest_Ctrl, MyTreeCtrl::OnItemExpanding) | |
129 | EVT_TREE_ITEM_COLLAPSED(TreeTest_Ctrl, MyTreeCtrl::OnItemCollapsed) | |
130 | EVT_TREE_ITEM_COLLAPSING(TreeTest_Ctrl, MyTreeCtrl::OnItemCollapsing) | |
131 | EVT_TREE_ITEM_RIGHT_CLICK(TreeTest_Ctrl, MyTreeCtrl::OnItemRightClick) | |
132 | ||
133 | EVT_RIGHT_UP(MyTreeCtrl::OnRMouseUp) | |
134 | EVT_TREE_SEL_CHANGED(TreeTest_Ctrl, MyTreeCtrl::OnSelChanged) | |
135 | EVT_TREE_SEL_CHANGING(TreeTest_Ctrl, MyTreeCtrl::OnSelChanging) | |
136 | EVT_TREE_KEY_DOWN(TreeTest_Ctrl, MyTreeCtrl::OnTreeKeyDown) | |
137 | EVT_TREE_ITEM_ACTIVATED(TreeTest_Ctrl, MyTreeCtrl::OnItemActivated) | |
138 | EVT_RIGHT_DCLICK(MyTreeCtrl::OnRMouseDClick) | |
139 | END_EVENT_TABLE() | |
140 | ||
141 | IMPLEMENT_APP(MyApp) | |
142 | ||
143 | bool MyApp::OnInit() | |
144 | { | |
145 | // Create the main frame window | |
146 | MyFrame *frame = new MyFrame("wxTreeCtrl Test", 50, 50, 450, 600); | |
147 | ||
148 | // Show the frame | |
149 | frame->Show(TRUE); | |
150 | SetTopWindow(frame); | |
151 | ||
152 | return TRUE; | |
153 | } | |
154 | ||
155 | ||
156 | // My frame constructor | |
157 | MyFrame::MyFrame(const wxString& title, int x, int y, int w, int h) | |
158 | : wxFrame((wxFrame *)NULL, -1, title, wxPoint(x, y), wxSize(w, h)), | |
159 | m_treeCtrl(NULL), m_textCtrl(NULL) | |
160 | { | |
161 | // This reduces flicker effects - even better would be to define | |
162 | // OnEraseBackground to do nothing. When the tree control's scrollbars are | |
163 | // show or hidden, the frame is sent a background erase event. | |
164 | SetBackgroundColour(wxColour(255, 255, 255)); | |
165 | ||
166 | // Give it an icon | |
167 | SetIcon(wxICON(mondrian)); | |
168 | ||
169 | #if wxUSE_MENUS | |
170 | // Make a menubar | |
171 | wxMenu *file_menu = new wxMenu, | |
172 | *style_menu = new wxMenu, | |
173 | *tree_menu = new wxMenu, | |
174 | *item_menu = new wxMenu; | |
175 | ||
176 | file_menu->Append(TreeTest_About, "&About..."); | |
177 | file_menu->AppendSeparator(); | |
178 | file_menu->Append(TreeTest_Quit, "E&xit\tAlt-X"); | |
179 | ||
180 | style_menu->Append(TreeTest_TogButtons, "Toggle &normal buttons"); | |
181 | style_menu->Append(TreeTest_TogTwist, "Toggle &twister buttons"); | |
182 | style_menu->Append(TreeTest_ToggleButtons, "Toggle image &buttons"); | |
183 | style_menu->AppendSeparator(); | |
184 | style_menu->Append(TreeTest_TogLines, "Toggle &connecting lines"); | |
185 | style_menu->Append(TreeTest_TogRootLines, "Toggle &lines at root"); | |
186 | style_menu->Append(TreeTest_TogHideRoot, "Toggle &hidden root"); | |
187 | style_menu->Append(TreeTest_TogBorder, "Toggle &item border"); | |
188 | style_menu->Append(TreeTest_TogEdit, "Toggle &edit mode"); | |
189 | #ifndef NO_MULTIPLE_SELECTION | |
190 | style_menu->Append(TreeTest_ToggleSel, "Toggle &selection mode"); | |
191 | #endif // NO_MULTIPLE_SELECTION | |
192 | style_menu->Append(TreeTest_ToggleImages, "Toggle show ima&ges"); | |
193 | style_menu->Append(TreeTest_SetImageSize, "Set image si&ze..."); | |
194 | ||
195 | tree_menu->Append(TreeTest_Recreate, "&Recreate the tree"); | |
196 | tree_menu->Append(TreeTest_CollapseAndReset, "C&ollapse and reset"); | |
197 | tree_menu->AppendSeparator(); | |
198 | tree_menu->Append(TreeTest_AddItem, "Append a &new item"); | |
199 | tree_menu->Append(TreeTest_InsertItem, "&Insert a new item"); | |
200 | tree_menu->Append(TreeTest_Delete, "&Delete this item"); | |
201 | tree_menu->Append(TreeTest_DeleteChildren, "Delete &children"); | |
202 | tree_menu->Append(TreeTest_DeleteAll, "Delete &all items"); | |
203 | tree_menu->AppendSeparator(); | |
204 | tree_menu->Append(TreeTest_Count, "Count children of current item"); | |
205 | tree_menu->Append(TreeTest_CountRec, "Recursively count children of current item"); | |
206 | tree_menu->AppendSeparator(); | |
207 | tree_menu->Append(TreeTest_Sort, "Sort children of current item"); | |
208 | tree_menu->Append(TreeTest_SortRev, "Sort in reversed order"); | |
209 | tree_menu->AppendSeparator(); | |
210 | tree_menu->Append(TreeTest_EnsureVisible, "Make the last item &visible"); | |
211 | tree_menu->AppendSeparator(); | |
212 | tree_menu->Append(TreeTest_IncIndent, "Add 5 points to indentation\tAlt-I"); | |
213 | tree_menu->Append(TreeTest_DecIndent, "Reduce indentation by 5 points\tAlt-R"); | |
214 | tree_menu->AppendSeparator(); | |
215 | tree_menu->Append(TreeTest_IncSpacing, "Add 5 points to spacing\tCtrl-I"); | |
216 | tree_menu->Append(TreeTest_DecSpacing, "Reduce spacing by 5 points\tCtrl-R"); | |
217 | ||
218 | item_menu->Append(TreeTest_Dump, "&Dump item children"); | |
219 | item_menu->Append(TreeTest_Rename, "&Rename item..."); | |
220 | ||
221 | item_menu->AppendSeparator(); | |
222 | item_menu->Append(TreeTest_SetBold, "Make item &bold"); | |
223 | item_menu->Append(TreeTest_ClearBold, "Make item ¬ bold"); | |
224 | item_menu->AppendSeparator(); | |
225 | item_menu->Append(TreeTest_ToggleIcon, "Toggle the item's &icon"); | |
226 | ||
227 | #ifndef NO_MULTIPLE_SELECTION | |
228 | item_menu->AppendSeparator(); | |
229 | item_menu->Append(TreeTest_DumpSelected, "Dump selected items\tAlt-D"); | |
230 | item_menu->Append(TreeTest_Select, "Select current item\tAlt-S"); | |
231 | item_menu->Append(TreeTest_Unselect, "Unselect everything\tAlt-U"); | |
232 | #endif // NO_MULTIPLE_SELECTION | |
233 | ||
234 | wxMenuBar *menu_bar = new wxMenuBar; | |
235 | menu_bar->Append(file_menu, "&File"); | |
236 | menu_bar->Append(style_menu, "&Style"); | |
237 | menu_bar->Append(tree_menu, "&Tree"); | |
238 | menu_bar->Append(item_menu, "&Item"); | |
239 | SetMenuBar(menu_bar); | |
240 | ||
241 | //menu_bar->Check(TreeTest_ToggleImages, TRUE); | |
242 | #endif // wxUSE_MENUS | |
243 | ||
244 | m_treeCtrl = new MyTreeCtrl(this, TreeTest_Ctrl, | |
245 | wxDefaultPosition, wxDefaultSize, | |
246 | wxTR_TWIST_BUTTONS | wxTR_NO_LINES | | |
247 | wxTR_EDIT_LABELS | | |
248 | #ifndef NO_VARIABLE_HEIGHT | |
249 | wxTR_HAS_VARIABLE_ROW_HEIGHT | | |
250 | #endif | |
251 | wxSUNKEN_BORDER); | |
252 | ||
253 | // m_treeCtrl->SetBackgroundColour( *wxLIGHT_GREY ); | |
254 | ||
255 | m_textCtrl = new wxTextCtrl(this, -1, "", | |
256 | wxDefaultPosition, wxDefaultSize, | |
257 | wxTE_MULTILINE | wxSUNKEN_BORDER); | |
258 | ||
259 | // create a status bar with 3 panes | |
260 | CreateStatusBar(3); | |
261 | SetStatusText("", 0); | |
262 | ||
263 | #ifdef __WXMOTIF__ | |
264 | // For some reason, we get a memcpy crash in wxLogStream::DoLogStream | |
265 | // on gcc/wxMotif, if we use wxLogTextCtl. Maybe it's just gcc? | |
266 | delete wxLog::SetActiveTarget(new wxLogStderr); | |
267 | #else | |
268 | // set our text control as the log target | |
269 | wxLogTextCtrl *logWindow = new wxLogTextCtrl(m_textCtrl); | |
270 | delete wxLog::SetActiveTarget(logWindow); | |
271 | #endif | |
272 | } | |
273 | ||
274 | MyFrame::~MyFrame() | |
275 | { | |
276 | delete wxLog::SetActiveTarget(NULL); | |
277 | } | |
278 | ||
279 | void MyFrame::TogStyle(long flag) | |
280 | { | |
281 | m_treeCtrl->SetWindowStyle(m_treeCtrl->GetWindowStyle() ^ flag); | |
282 | } | |
283 | ||
284 | void MyFrame::OnSize(wxSizeEvent& event) | |
285 | { | |
286 | if ( m_treeCtrl && m_textCtrl ) | |
287 | { | |
288 | Resize(GetClientSize()); | |
289 | } | |
290 | ||
291 | event.Skip(); | |
292 | } | |
293 | ||
294 | void MyFrame::Resize(const wxSize& size) | |
295 | { | |
296 | m_treeCtrl->SetSize(0, 0, size.x, 2*size.y/3); | |
297 | m_textCtrl->SetSize(0, 2*size.y/3, size.x, size.y/3); | |
298 | } | |
299 | ||
300 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) | |
301 | { | |
302 | Close(TRUE); | |
303 | } | |
304 | ||
305 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) | |
306 | { | |
307 | wxMessageBox("Tree test sample\n" | |
308 | "(c) Julian Smart 1997, Vadim Zeitlin 1998", | |
309 | "About tree test", | |
310 | wxOK | wxICON_INFORMATION, this); | |
311 | } | |
312 | ||
313 | void MyFrame::OnRename(wxCommandEvent& WXUNUSED(event)) | |
314 | { | |
315 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
316 | ||
317 | CHECK_ITEM( item ); | |
318 | ||
319 | // old code - now we edit in place | |
320 | #if 0 | |
321 | static wxString s_text; | |
322 | s_text = wxGetTextFromUser("New name: ", "Tree sample question", | |
323 | s_text, this); | |
324 | if ( !s_text.IsEmpty() ) | |
325 | { | |
326 | m_treeCtrl->SetItemText(item, s_text); | |
327 | } | |
328 | #endif // 0 | |
329 | ||
330 | // TODO demonstrate creating a custom edit control... | |
331 | (void)m_treeCtrl->EditLabel(item); | |
332 | } | |
333 | ||
334 | void MyFrame::OnCount(wxCommandEvent& WXUNUSED(event)) | |
335 | { | |
336 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
337 | ||
338 | CHECK_ITEM( item ); | |
339 | ||
340 | int i = m_treeCtrl->GetChildrenCount( item, FALSE ); | |
341 | ||
342 | wxLogMessage(wxT("%d children"), i); | |
343 | } | |
344 | ||
345 | void MyFrame::OnCountRec(wxCommandEvent& WXUNUSED(event)) | |
346 | { | |
347 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
348 | ||
349 | CHECK_ITEM( item ); | |
350 | ||
351 | int i = m_treeCtrl->GetChildrenCount( item ); | |
352 | ||
353 | wxLogMessage(wxT("%d children"), i); | |
354 | } | |
355 | ||
356 | void MyFrame::DoSort(bool reverse) | |
357 | { | |
358 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
359 | ||
360 | CHECK_ITEM( item ); | |
361 | ||
362 | m_treeCtrl->DoSortChildren(item, reverse); | |
363 | } | |
364 | ||
365 | void MyFrame::OnDump(wxCommandEvent& WXUNUSED(event)) | |
366 | { | |
367 | wxTreeItemId root = m_treeCtrl->GetSelection(); | |
368 | ||
369 | CHECK_ITEM( root ); | |
370 | ||
371 | m_treeCtrl->GetItemsRecursively(root, -1); | |
372 | } | |
373 | ||
374 | #ifndef NO_MULTIPLE_SELECTION | |
375 | ||
376 | void MyFrame::OnToggleSel(wxCommandEvent& WXUNUSED(event)) | |
377 | { | |
378 | TogStyle(wxTR_MULTIPLE); | |
379 | #if 0 | |
380 | long style = m_treeCtrl->GetWindowStyle(); | |
381 | if ( style & wxTR_MULTIPLE ) | |
382 | style &= ~wxTR_MULTIPLE; | |
383 | else | |
384 | style |= wxTR_MULTIPLE; | |
385 | ||
386 | delete m_treeCtrl; | |
387 | ||
388 | m_treeCtrl = new MyTreeCtrl(this, TreeTest_Ctrl, | |
389 | wxDefaultPosition, wxDefaultSize, | |
390 | style); | |
391 | Resize(GetClientSize()); | |
392 | #endif | |
393 | } | |
394 | ||
395 | void MyFrame::OnDumpSelected(wxCommandEvent& WXUNUSED(event)) | |
396 | { | |
397 | wxArrayTreeItemIds array; | |
398 | ||
399 | size_t count = m_treeCtrl->GetSelections(array); | |
400 | wxLogMessage(wxT("%u items selected"), count); | |
401 | ||
402 | for ( size_t n = 0; n < count; n++ ) | |
403 | { | |
404 | wxLogMessage("\t%s", m_treeCtrl->GetItemText(array.Item(n)).c_str()); | |
405 | } | |
406 | } | |
407 | ||
408 | void MyFrame::OnSelect(wxCommandEvent& event) | |
409 | { | |
410 | m_treeCtrl->SelectItem(m_treeCtrl->GetSelection()); | |
411 | } | |
412 | ||
413 | void MyFrame::OnUnselect(wxCommandEvent& event) | |
414 | { | |
415 | m_treeCtrl->UnselectAll(); | |
416 | } | |
417 | ||
418 | #endif // NO_MULTIPLE_SELECTION | |
419 | ||
420 | void MyFrame::DoSetBold(bool bold) | |
421 | { | |
422 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
423 | ||
424 | CHECK_ITEM( item ); | |
425 | ||
426 | m_treeCtrl->SetItemBold(item, bold); | |
427 | } | |
428 | ||
429 | void MyFrame::OnDelete(wxCommandEvent& WXUNUSED(event)) | |
430 | { | |
431 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
432 | ||
433 | CHECK_ITEM( item ); | |
434 | ||
435 | m_treeCtrl->Delete(item); | |
436 | } | |
437 | ||
438 | void MyFrame::OnDeleteChildren(wxCommandEvent& WXUNUSED(event)) | |
439 | { | |
440 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
441 | ||
442 | CHECK_ITEM( item ); | |
443 | ||
444 | m_treeCtrl->DeleteChildren(item); | |
445 | } | |
446 | ||
447 | void MyFrame::OnDeleteAll(wxCommandEvent& WXUNUSED(event)) | |
448 | { | |
449 | m_treeCtrl->DeleteAllItems(); | |
450 | } | |
451 | ||
452 | void MyFrame::OnRecreate(wxCommandEvent& event) | |
453 | { | |
454 | OnDeleteAll(event); | |
455 | m_treeCtrl->AddTestItemsToTree(5, 2); | |
456 | } | |
457 | ||
458 | void MyFrame::OnSetImageSize(wxCommandEvent& event) | |
459 | { | |
460 | int size = wxGetNumberFromUser("Enter the size for the images to use", | |
461 | "Size: ", | |
462 | "TreeCtrl sample", | |
463 | m_treeCtrl->ImageSize()); | |
464 | if ( size == -1 ) | |
465 | return; | |
466 | ||
467 | m_treeCtrl->CreateImageList(size); | |
468 | wxGetApp().SetShowImages(TRUE); | |
469 | } | |
470 | ||
471 | void MyFrame::OnToggleImages(wxCommandEvent& event) | |
472 | { | |
473 | if ( wxGetApp().ShowImages() ) | |
474 | { | |
475 | m_treeCtrl->CreateImageList(-1); | |
476 | wxGetApp().SetShowImages(FALSE); | |
477 | } | |
478 | else | |
479 | { | |
480 | m_treeCtrl->CreateImageList(0); | |
481 | wxGetApp().SetShowImages(TRUE); | |
482 | } | |
483 | } | |
484 | ||
485 | void MyFrame::OnToggleButtons(wxCommandEvent& event) | |
486 | { | |
487 | if ( wxGetApp().ShowButtons() ) | |
488 | { | |
489 | m_treeCtrl->CreateButtonsImageList(-1); | |
490 | wxGetApp().SetShowButtons(FALSE); | |
491 | } | |
492 | else | |
493 | { | |
494 | m_treeCtrl->CreateButtonsImageList(15); | |
495 | wxGetApp().SetShowButtons(TRUE); | |
496 | } | |
497 | } | |
498 | ||
499 | void MyFrame::OnCollapseAndReset(wxCommandEvent& event) | |
500 | { | |
501 | m_treeCtrl->CollapseAndReset(m_treeCtrl->GetRootItem()); | |
502 | } | |
503 | ||
504 | void MyFrame::OnEnsureVisible(wxCommandEvent& event) | |
505 | { | |
506 | m_treeCtrl->DoEnsureVisible(); | |
507 | } | |
508 | ||
509 | void MyFrame::OnInsertItem(wxCommandEvent& WXUNUSED(event)) | |
510 | { | |
511 | int image = wxGetApp().ShowImages() ? MyTreeCtrl::TreeCtrlIcon_File : -1; | |
512 | m_treeCtrl->InsertItem(m_treeCtrl->GetRootItem(), image, "2nd item"); | |
513 | } | |
514 | ||
515 | void MyFrame::OnAddItem(wxCommandEvent& WXUNUSED(event)) | |
516 | { | |
517 | static int s_num = 0; | |
518 | ||
519 | wxString text; | |
520 | text.Printf("Item #%d", ++s_num); | |
521 | ||
522 | m_treeCtrl->AppendItem(m_treeCtrl->GetRootItem(), | |
523 | text /*, | |
524 | MyTreeCtrl::TreeCtrlIcon_File */ ); | |
525 | } | |
526 | ||
527 | void MyFrame::OnIncIndent(wxCommandEvent& WXUNUSED(event)) | |
528 | { | |
529 | unsigned int indent = m_treeCtrl->GetIndent(); | |
530 | if (indent < 100) | |
531 | m_treeCtrl->SetIndent( indent+5 ); | |
532 | } | |
533 | ||
534 | void MyFrame::OnDecIndent(wxCommandEvent& WXUNUSED(event)) | |
535 | { | |
536 | unsigned int indent = m_treeCtrl->GetIndent(); | |
537 | if (indent > 10) | |
538 | m_treeCtrl->SetIndent( indent-5 ); | |
539 | } | |
540 | ||
541 | void MyFrame::OnIncSpacing(wxCommandEvent& WXUNUSED(event)) | |
542 | { | |
543 | unsigned int indent = m_treeCtrl->GetSpacing(); | |
544 | if (indent < 100) | |
545 | m_treeCtrl->SetSpacing( indent+5 ); | |
546 | } | |
547 | ||
548 | void MyFrame::OnDecSpacing(wxCommandEvent& WXUNUSED(event)) | |
549 | { | |
550 | unsigned int indent = m_treeCtrl->GetSpacing(); | |
551 | if (indent > 10) | |
552 | m_treeCtrl->SetSpacing( indent-5 ); | |
553 | } | |
554 | ||
555 | void MyFrame::OnToggleIcon(wxCommandEvent& WXUNUSED(event)) | |
556 | { | |
557 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
558 | ||
559 | CHECK_ITEM( item ); | |
560 | ||
561 | m_treeCtrl->DoToggleIcon(item); | |
562 | } | |
563 | ||
564 | // MyTreeCtrl implementation | |
565 | #if USE_GENERIC_TREECTRL | |
566 | IMPLEMENT_DYNAMIC_CLASS(MyTreeCtrl, wxGenericTreeCtrl) | |
567 | #else | |
568 | IMPLEMENT_DYNAMIC_CLASS(MyTreeCtrl, wxTreeCtrl) | |
569 | #endif | |
570 | ||
571 | MyTreeCtrl::MyTreeCtrl(wxWindow *parent, const wxWindowID id, | |
572 | const wxPoint& pos, const wxSize& size, | |
573 | long style) | |
574 | : wxTreeCtrl(parent, id, pos, size, style) | |
575 | { | |
576 | m_reverseSort = FALSE; | |
577 | ||
578 | CreateImageList(); | |
579 | ||
580 | // Add some items to the tree | |
581 | AddTestItemsToTree(5, 2); | |
582 | } | |
583 | ||
584 | void MyTreeCtrl::CreateImageList(int size) | |
585 | { | |
586 | if ( size == -1 ) | |
587 | { | |
588 | SetImageList(NULL); | |
589 | return; | |
590 | } | |
591 | if ( size == 0 ) | |
592 | size = m_imageSize; | |
593 | else | |
594 | m_imageSize = size; | |
595 | ||
596 | // Make an image list containing small icons | |
597 | wxImageList *images = new wxImageList(size, size, TRUE); | |
598 | ||
599 | // should correspond to TreeCtrlIcon_xxx enum | |
600 | #if defined(__WXMSW__) && defined(__WIN16__) | |
601 | images->Add(wxBitmap("bitmap1", wxBITMAP_TYPE_BMP_RESOURCE)); | |
602 | images->Add(wxBitmap("bitmap2", wxBITMAP_TYPE_BMP_RESOURCE)); | |
603 | images->Add(wxBitmap("bitmap3", wxBITMAP_TYPE_BMP_RESOURCE)); | |
604 | images->Add(wxBitmap("bitmap4", wxBITMAP_TYPE_BMP_RESOURCE)); | |
605 | images->Add(wxBitmap("bitmap5", wxBITMAP_TYPE_BMP_RESOURCE)); | |
606 | #else // !MSW | |
607 | wxBusyCursor wait; | |
608 | wxIcon icons[5]; | |
609 | icons[0] = wxICON(icon1); | |
610 | icons[1] = wxICON(icon2); | |
611 | icons[2] = wxICON(icon3); | |
612 | icons[3] = wxICON(icon4); | |
613 | icons[4] = wxICON(icon5); | |
614 | ||
615 | int sizeOrig = icons[0].GetWidth(); | |
616 | for ( size_t i = 0; i < WXSIZEOF(icons); i++ ) | |
617 | { | |
618 | if ( size == sizeOrig ) | |
619 | { | |
620 | images->Add(icons[i]); | |
621 | } | |
622 | else | |
623 | { | |
624 | images->Add(wxImage(icons[i]).Rescale(size, size). | |
625 | ConvertToBitmap()); | |
626 | } | |
627 | } | |
628 | #endif // MSW/!MSW | |
629 | ||
630 | AssignImageList(images); | |
631 | } | |
632 | ||
633 | void MyTreeCtrl::CreateButtonsImageList(int size) | |
634 | { | |
635 | if ( size == -1 ) | |
636 | { | |
637 | SetButtonsImageList(NULL); | |
638 | return; | |
639 | } | |
640 | ||
641 | // Make an image list containing small icons | |
642 | wxImageList *images = new wxImageList(size, size, TRUE); | |
643 | ||
644 | // should correspond to TreeCtrlIcon_xxx enum | |
645 | #if defined(__WXMSW__) && defined(__WIN16__) | |
646 | images->Add(wxBitmap("bitmap1", wxBITMAP_TYPE_BMP_RESOURCE)); | |
647 | images->Add(wxBitmap("bitmap2", wxBITMAP_TYPE_BMP_RESOURCE)); | |
648 | images->Add(wxBitmap("bitmap3", wxBITMAP_TYPE_BMP_RESOURCE)); | |
649 | images->Add(wxBitmap("bitmap4", wxBITMAP_TYPE_BMP_RESOURCE)); | |
650 | images->Add(wxBitmap("bitmap5", wxBITMAP_TYPE_BMP_RESOURCE)); | |
651 | #else // !MSW | |
652 | wxBusyCursor wait; | |
653 | wxIcon icons[4]; | |
654 | icons[0] = wxICON(icon3); // closed | |
655 | icons[1] = wxICON(icon3); // closed, selected | |
656 | icons[2] = wxICON(icon5); // open | |
657 | icons[3] = wxICON(icon5); // open, selected | |
658 | ||
659 | for ( size_t i = 0; i < WXSIZEOF(icons); i++ ) | |
660 | { | |
661 | int sizeOrig = icons[i].GetWidth(); | |
662 | if ( size == sizeOrig ) | |
663 | { | |
664 | images->Add(icons[i]); | |
665 | } | |
666 | else | |
667 | { | |
668 | images->Add(wxImage(icons[i]).Rescale(size, size). | |
669 | ConvertToBitmap()); | |
670 | } | |
671 | } | |
672 | #endif // MSW/!MSW | |
673 | ||
674 | AssignButtonsImageList(images); | |
675 | } | |
676 | ||
677 | MyTreeCtrl::~MyTreeCtrl() | |
678 | { | |
679 | } | |
680 | ||
681 | int MyTreeCtrl::OnCompareItems(const wxTreeItemId& item1, | |
682 | const wxTreeItemId& item2) | |
683 | { | |
684 | if ( m_reverseSort ) | |
685 | { | |
686 | // just exchange 1st and 2nd items | |
687 | return wxTreeCtrl::OnCompareItems(item2, item1); | |
688 | } | |
689 | else | |
690 | { | |
691 | return wxTreeCtrl::OnCompareItems(item1, item2); | |
692 | } | |
693 | } | |
694 | ||
695 | void MyTreeCtrl::AddItemsRecursively(const wxTreeItemId& idParent, | |
696 | size_t numChildren, | |
697 | size_t depth, | |
698 | size_t folder) | |
699 | { | |
700 | if ( depth > 0 ) | |
701 | { | |
702 | bool hasChildren = depth > 1; | |
703 | ||
704 | wxString str; | |
705 | for ( size_t n = 0; n < numChildren; n++ ) | |
706 | { | |
707 | // at depth 1 elements won't have any more children | |
708 | if ( hasChildren ) | |
709 | str.Printf("%s child %d", "Folder", n + 1); | |
710 | else | |
711 | str.Printf("%s child %d.%d", "File", folder, n + 1); | |
712 | ||
713 | // here we pass to AppendItem() normal and selected item images (we | |
714 | // suppose that selected image follows the normal one in the enum) | |
715 | int image, imageSel; | |
716 | if ( wxGetApp().ShowImages() ) | |
717 | { | |
718 | image = depth == 1 ? TreeCtrlIcon_File : TreeCtrlIcon_Folder; | |
719 | imageSel = image + 1; | |
720 | } | |
721 | else | |
722 | { | |
723 | image = imageSel = -1; | |
724 | } | |
725 | wxTreeItemId id = AppendItem(idParent, str, image, imageSel, | |
726 | new MyTreeItemData(str)); | |
727 | ||
728 | // and now we also set the expanded one (only for the folders) | |
729 | if ( hasChildren && wxGetApp().ShowImages() ) | |
730 | { | |
731 | SetItemImage(id, TreeCtrlIcon_FolderOpened, | |
732 | wxTreeItemIcon_Expanded); | |
733 | } | |
734 | ||
735 | // remember the last child for OnEnsureVisible() | |
736 | if ( !hasChildren && n == numChildren - 1 ) | |
737 | { | |
738 | m_lastItem = id; | |
739 | } | |
740 | ||
741 | AddItemsRecursively(id, numChildren, depth - 1, n + 1); | |
742 | } | |
743 | } | |
744 | //else: done! | |
745 | } | |
746 | ||
747 | void MyTreeCtrl::AddTestItemsToTree(size_t numChildren, | |
748 | size_t depth) | |
749 | { | |
750 | int image = wxGetApp().ShowImages() ? MyTreeCtrl::TreeCtrlIcon_Folder : -1; | |
751 | wxTreeItemId rootId = AddRoot("Root", | |
752 | image, image, | |
753 | new MyTreeItemData("Root item")); | |
754 | if ( image != -1 ) | |
755 | { | |
756 | SetItemImage(rootId, TreeCtrlIcon_FolderOpened, wxTreeItemIcon_Expanded); | |
757 | } | |
758 | ||
759 | AddItemsRecursively(rootId, numChildren, depth, 0); | |
760 | ||
761 | // set some colours/fonts for testing | |
762 | SetItemFont(rootId, *wxITALIC_FONT); | |
763 | ||
764 | long cookie; | |
765 | wxTreeItemId id = GetFirstChild(rootId, cookie); | |
766 | SetItemTextColour(id, *wxBLUE); | |
767 | ||
768 | id = GetNextChild(rootId, cookie); | |
769 | id = GetNextChild(rootId, cookie); | |
770 | SetItemTextColour(id, *wxRED); | |
771 | SetItemBackgroundColour(id, *wxLIGHT_GREY); | |
772 | } | |
773 | ||
774 | void MyTreeCtrl::GetItemsRecursively(const wxTreeItemId& idParent, long cookie) | |
775 | { | |
776 | wxTreeItemId id; | |
777 | ||
778 | if( cookie == -1 ) | |
779 | id = GetFirstChild(idParent, cookie); | |
780 | else | |
781 | id = GetNextChild(idParent, cookie); | |
782 | ||
783 | if(id <= 0) | |
784 | return; | |
785 | ||
786 | wxString text = GetItemText(id); | |
787 | wxLogMessage(text); | |
788 | ||
789 | if (ItemHasChildren(id)) | |
790 | GetItemsRecursively(id,-1); | |
791 | ||
792 | GetItemsRecursively(idParent, cookie); | |
793 | } | |
794 | ||
795 | void MyTreeCtrl::DoToggleIcon(const wxTreeItemId& item) | |
796 | { | |
797 | int image = GetItemImage(item) == TreeCtrlIcon_Folder ? TreeCtrlIcon_File | |
798 | : TreeCtrlIcon_Folder; | |
799 | ||
800 | SetItemImage(item, image); | |
801 | } | |
802 | ||
803 | ||
804 | // avoid repetition | |
805 | #define TREE_EVENT_HANDLER(name) \ | |
806 | void MyTreeCtrl::name(wxTreeEvent& event) \ | |
807 | { \ | |
808 | wxLogMessage(#name); \ | |
809 | event.Skip(); \ | |
810 | } | |
811 | ||
812 | TREE_EVENT_HANDLER(OnBeginRDrag) | |
813 | TREE_EVENT_HANDLER(OnDeleteItem) | |
814 | TREE_EVENT_HANDLER(OnGetInfo) | |
815 | TREE_EVENT_HANDLER(OnSetInfo) | |
816 | TREE_EVENT_HANDLER(OnItemExpanded) | |
817 | TREE_EVENT_HANDLER(OnItemExpanding) | |
818 | TREE_EVENT_HANDLER(OnItemCollapsed) | |
819 | TREE_EVENT_HANDLER(OnSelChanged) | |
820 | TREE_EVENT_HANDLER(OnSelChanging) | |
821 | TREE_EVENT_HANDLER(OnTreeKeyDown) | |
822 | ||
823 | #undef TREE_EVENT_HANDLER | |
824 | ||
825 | void MyTreeCtrl::OnBeginDrag(wxTreeEvent& event) | |
826 | { | |
827 | // need to explicitly allow drag | |
828 | if ( event.GetItem() != GetRootItem() ) | |
829 | { | |
830 | m_draggedItem = event.GetItem(); | |
831 | ||
832 | wxLogMessage("OnBeginDrag: started dragging %s", | |
833 | GetItemText(m_draggedItem).c_str()); | |
834 | ||
835 | event.Allow(); | |
836 | } | |
837 | else | |
838 | { | |
839 | wxLogMessage("OnBeginDrag: this item can't be dragged."); | |
840 | } | |
841 | } | |
842 | ||
843 | void MyTreeCtrl::OnEndDrag(wxTreeEvent& event) | |
844 | { | |
845 | wxTreeItemId itemSrc = m_draggedItem, | |
846 | itemDst = event.GetItem(); | |
847 | m_draggedItem = (wxTreeItemId)0l; | |
848 | ||
849 | // where to copy the item? | |
850 | if ( itemDst.IsOk() && !ItemHasChildren(itemDst) ) | |
851 | { | |
852 | // copy to the parent then | |
853 | itemDst = GetParent(itemDst); | |
854 | } | |
855 | ||
856 | if ( !itemDst.IsOk() ) | |
857 | { | |
858 | wxLogMessage("OnEndDrag: can't drop here."); | |
859 | ||
860 | return; | |
861 | } | |
862 | ||
863 | wxString text = GetItemText(itemSrc); | |
864 | wxLogMessage("OnEndDrag: '%s' copied to '%s'.", | |
865 | text.c_str(), GetItemText(itemDst).c_str()); | |
866 | ||
867 | // just do append here - we could also insert it just before/after the item | |
868 | // on which it was dropped, but this requires slightly more work... we also | |
869 | // completely ignore the client data and icon of the old item but could | |
870 | // copy them as well. | |
871 | // | |
872 | // Finally, we only copy one item here but we might copy the entire tree if | |
873 | // we were dragging a folder. | |
874 | int image = wxGetApp().ShowImages() ? TreeCtrlIcon_File : -1; | |
875 | AppendItem(itemDst, text, image); | |
876 | } | |
877 | ||
878 | void MyTreeCtrl::OnBeginLabelEdit(wxTreeEvent& event) | |
879 | { | |
880 | wxLogMessage("OnBeginLabelEdit"); | |
881 | ||
882 | // for testing, prevent this item's label editing | |
883 | wxTreeItemId itemId = event.GetItem(); | |
884 | if ( IsTestItem(itemId) ) | |
885 | { | |
886 | wxMessageBox("You can't edit this item."); | |
887 | ||
888 | event.Veto(); | |
889 | } | |
890 | } | |
891 | ||
892 | void MyTreeCtrl::OnEndLabelEdit(wxTreeEvent& event) | |
893 | { | |
894 | wxLogMessage("OnEndLabelEdit"); | |
895 | ||
896 | // don't allow anything except letters in the labels | |
897 | if ( !event.GetLabel().IsWord() ) | |
898 | { | |
899 | wxMessageBox("The label should contain only letters."); | |
900 | ||
901 | event.Veto(); | |
902 | } | |
903 | } | |
904 | ||
905 | void MyTreeCtrl::OnItemCollapsing(wxTreeEvent& event) | |
906 | { | |
907 | wxLogMessage("OnItemCollapsing"); | |
908 | ||
909 | // for testing, prevent the user from collapsing the first child folder | |
910 | wxTreeItemId itemId = event.GetItem(); | |
911 | if ( IsTestItem(itemId) ) | |
912 | { | |
913 | wxMessageBox("You can't collapse this item."); | |
914 | ||
915 | event.Veto(); | |
916 | } | |
917 | } | |
918 | ||
919 | void MyTreeCtrl::OnItemActivated(wxTreeEvent& event) | |
920 | { | |
921 | // show some info about this item | |
922 | wxTreeItemId itemId = event.GetItem(); | |
923 | MyTreeItemData *item = (MyTreeItemData *)GetItemData(itemId); | |
924 | ||
925 | if ( item != NULL ) | |
926 | { | |
927 | item->ShowInfo(this); | |
928 | } | |
929 | ||
930 | wxLogMessage("OnItemActivated"); | |
931 | } | |
932 | ||
933 | void MyTreeCtrl::OnItemRightClick(wxTreeEvent& event) | |
934 | { | |
935 | ShowMenu(event.GetItem(), event.GetPoint()); | |
936 | } | |
937 | ||
938 | void MyTreeCtrl::OnRMouseUp(wxMouseEvent& event) | |
939 | { | |
940 | wxPoint pt = event.GetPosition(); | |
941 | ShowMenu(HitTest(pt), pt); | |
942 | } | |
943 | ||
944 | void MyTreeCtrl::ShowMenu(wxTreeItemId id, const wxPoint& pt) | |
945 | { | |
946 | wxString title; | |
947 | if ( id.IsOk() ) | |
948 | { | |
949 | title << _T("Menu for ") << GetItemText(id); | |
950 | } | |
951 | else | |
952 | { | |
953 | title = _T("Menu for no particular item"); | |
954 | } | |
955 | ||
956 | #if wxUSE_MENUS | |
957 | wxMenu menu(title); | |
958 | menu.Append(TreeTest_About, _T("&About...")); | |
959 | menu.Append(TreeTest_Dump, _T("&Dump")); | |
960 | ||
961 | PopupMenu(&menu, pt); | |
962 | #endif // wxUSE_MENUS | |
963 | } | |
964 | ||
965 | void MyTreeCtrl::OnRMouseDClick(wxMouseEvent& event) | |
966 | { | |
967 | wxTreeItemId id = HitTest(event.GetPosition()); | |
968 | if ( !id ) | |
969 | wxLogMessage("No item under mouse"); | |
970 | else | |
971 | { | |
972 | MyTreeItemData *item = (MyTreeItemData *)GetItemData(id); | |
973 | if ( item ) | |
974 | wxLogMessage("Item '%s' under mouse", item->GetDesc()); | |
975 | } | |
976 | } | |
977 | ||
978 | static inline const char *Bool2String(bool b) | |
979 | { | |
980 | return b ? "" : "not "; | |
981 | } | |
982 | ||
983 | void MyTreeItemData::ShowInfo(wxTreeCtrl *tree) | |
984 | { | |
985 | wxLogMessage("Item '%s': %sselected, %sexpanded, %sbold,\n" | |
986 | "%u children (%u immediately under this item).", | |
987 | m_desc.c_str(), | |
988 | Bool2String(tree->IsSelected(GetId())), | |
989 | Bool2String(tree->IsExpanded(GetId())), | |
990 | Bool2String(tree->IsBold(GetId())), | |
991 | tree->GetChildrenCount(GetId()), | |
992 | tree->GetChildrenCount(GetId(), FALSE)); | |
993 | } |