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