]>
Commit | Line | Data |
---|---|---|
457814b5 | 1 | ///////////////////////////////////////////////////////////////////////////// |
ec312631 | 2 | // Name: treetest.cpp |
457814b5 JS |
3 | // Purpose: wxTreeCtrl sample |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart |
3a5a2f56 | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
457814b5 JS |
12 | // For compilers that support precompilation, includes "wx/wx.h". |
13 | #include "wx/wxprec.h" | |
14 | ||
15 | #ifdef __BORLANDC__ | |
b2c82287 | 16 | #pragma hdrstop |
457814b5 JS |
17 | #endif |
18 | ||
19 | #ifndef WX_PRECOMP | |
b2c82287 WS |
20 | #include "wx/wx.h" |
21 | #include "wx/log.h" | |
457814b5 JS |
22 | #endif |
23 | ||
75cd9288 | 24 | #include "wx/colordlg.h" |
e4f3eb42 | 25 | #include "wx/numdlg.h" |
3a5a2f56 | 26 | |
52734360 | 27 | #include "wx/artprov.h" |
91b8de8d | 28 | #include "wx/image.h" |
3a5a2f56 | 29 | #include "wx/imaglist.h" |
457814b5 | 30 | #include "wx/treectrl.h" |
b713f891 | 31 | #include "wx/math.h" |
4754ab16 | 32 | #include "wx/renderer.h" |
cf724bce | 33 | |
2c8e4738 VZ |
34 | #ifdef __WIN32__ |
35 | // this is not supported by native control | |
7cc8c988 | 36 | #define NO_VARIABLE_HEIGHT |
74b31181 | 37 | #endif |
91b8de8d | 38 | |
ec312631 | 39 | #include "treetest.h" |
9dfbf520 | 40 | |
6f4aae60 CE |
41 | #include "icon1.xpm" |
42 | #include "icon2.xpm" | |
43 | #include "icon3.xpm" | |
44 | #include "icon4.xpm" | |
45 | #include "icon5.xpm" | |
dacaa6f1 | 46 | |
4754ab16 RR |
47 | #include "state1.xpm" |
48 | #include "state2.xpm" | |
49 | #include "state3.xpm" | |
50 | #include "state4.xpm" | |
51 | #include "state5.xpm" | |
52 | ||
11339a38 RR |
53 | #include "unchecked.xpm" |
54 | #include "checked.xpm" | |
55 | ||
b2c82287 WS |
56 | #ifndef __WXMSW__ |
57 | #include "../sample.xpm" | |
dacaa6f1 | 58 | #endif |
6f4aae60 | 59 | |
bd5d8ac1 VZ |
60 | static const int NUM_CHILDREN_PER_LEVEL = 5; |
61 | static const int NUM_LEVELS = 2; | |
62 | ||
e1ee62bd | 63 | // verify that the item is ok and insult the user if it is not |
4693b20c MB |
64 | #define CHECK_ITEM( item ) if ( !item.IsOk() ) { \ |
65 | wxMessageBox(wxT("Please select some item first!"), \ | |
66 | wxT("Tree sample error"), \ | |
67 | wxOK | wxICON_EXCLAMATION, \ | |
68 | this); \ | |
69 | return; \ | |
5f939e78 VZ |
70 | } |
71 | ||
d88a2485 VZ |
72 | #define MENU_LINK(name) EVT_MENU(TreeTest_##name, MyFrame::On##name) |
73 | ||
457814b5 | 74 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
a67c5664 | 75 | EVT_IDLE(MyFrame::OnIdle) |
7cc8c988 VZ |
76 | EVT_SIZE(MyFrame::OnSize) |
77 | ||
618a5e38 RR |
78 | MENU_LINK(Quit) |
79 | MENU_LINK(About) | |
f87a111f | 80 | MENU_LINK(ClearLog) |
11ab1dfb | 81 | |
618a5e38 RR |
82 | MENU_LINK(TogButtons) |
83 | MENU_LINK(TogTwist) | |
84 | MENU_LINK(TogLines) | |
85 | MENU_LINK(TogEdit) | |
86 | MENU_LINK(TogHideRoot) | |
87 | MENU_LINK(TogRootLines) | |
88 | MENU_LINK(TogBorder) | |
33984936 | 89 | MENU_LINK(TogFullHighlight) |
d88a2485 VZ |
90 | MENU_LINK(SetFgColour) |
91 | MENU_LINK(SetBgColour) | |
11ab1dfb VZ |
92 | MENU_LINK(ResetStyle) |
93 | ||
e525c4ff | 94 | MENU_LINK(Highlight) |
618a5e38 | 95 | MENU_LINK(Dump) |
9dfbf520 | 96 | #ifndef NO_MULTIPLE_SELECTION |
618a5e38 RR |
97 | MENU_LINK(DumpSelected) |
98 | MENU_LINK(Select) | |
99 | MENU_LINK(Unselect) | |
100 | MENU_LINK(ToggleSel) | |
9dfbf520 | 101 | #endif // NO_MULTIPLE_SELECTION |
618a5e38 RR |
102 | MENU_LINK(Rename) |
103 | MENU_LINK(Count) | |
104 | MENU_LINK(CountRec) | |
105 | MENU_LINK(Sort) | |
106 | MENU_LINK(SortRev) | |
107 | MENU_LINK(SetBold) | |
108 | MENU_LINK(ClearBold) | |
109 | MENU_LINK(Delete) | |
110 | MENU_LINK(DeleteChildren) | |
111 | MENU_LINK(DeleteAll) | |
112 | MENU_LINK(Recreate) | |
113 | MENU_LINK(ToggleImages) | |
4754ab16 | 114 | MENU_LINK(ToggleStates) |
52734360 | 115 | MENU_LINK(ToggleAlternateImages) |
4754ab16 | 116 | MENU_LINK(ToggleAlternateStates) |
618a5e38 RR |
117 | MENU_LINK(ToggleButtons) |
118 | MENU_LINK(SetImageSize) | |
119 | MENU_LINK(CollapseAndReset) | |
120 | MENU_LINK(EnsureVisible) | |
5cfb5f66 | 121 | MENU_LINK(SetFocus) |
618a5e38 RR |
122 | MENU_LINK(AddItem) |
123 | MENU_LINK(InsertItem) | |
124 | MENU_LINK(IncIndent) | |
125 | MENU_LINK(DecIndent) | |
126 | MENU_LINK(IncSpacing) | |
127 | MENU_LINK(DecSpacing) | |
128 | MENU_LINK(ToggleIcon) | |
4754ab16 | 129 | MENU_LINK(ToggleState) |
dc631754 | 130 | MENU_LINK(SelectRoot) |
f73eddd2 VZ |
131 | |
132 | MENU_LINK(ShowFirstVisible) | |
133 | #ifdef wxHAS_LAST_VISIBLE | |
134 | MENU_LINK(ShowLastVisible) | |
135 | #endif // wxHAS_LAST_VISIBLE | |
136 | MENU_LINK(ShowNextVisible) | |
137 | MENU_LINK(ShowPrevVisible) | |
0c6afdbf VZ |
138 | MENU_LINK(ShowParent) |
139 | MENU_LINK(ShowPrevSibling) | |
140 | MENU_LINK(ShowNextSibling) | |
51a5c8df | 141 | MENU_LINK(ScrollTo) |
618a5e38 RR |
142 | #undef MENU_LINK |
143 | ||
457814b5 JS |
144 | END_EVENT_TABLE() |
145 | ||
484523cf JS |
146 | #if USE_GENERIC_TREECTRL |
147 | BEGIN_EVENT_TABLE(MyTreeCtrl, wxGenericTreeCtrl) | |
148 | #else | |
457814b5 | 149 | BEGIN_EVENT_TABLE(MyTreeCtrl, wxTreeCtrl) |
484523cf | 150 | #endif |
5f939e78 VZ |
151 | EVT_TREE_BEGIN_DRAG(TreeTest_Ctrl, MyTreeCtrl::OnBeginDrag) |
152 | EVT_TREE_BEGIN_RDRAG(TreeTest_Ctrl, MyTreeCtrl::OnBeginRDrag) | |
5888ef1e | 153 | EVT_TREE_END_DRAG(TreeTest_Ctrl, MyTreeCtrl::OnEndDrag) |
5f939e78 VZ |
154 | EVT_TREE_BEGIN_LABEL_EDIT(TreeTest_Ctrl, MyTreeCtrl::OnBeginLabelEdit) |
155 | EVT_TREE_END_LABEL_EDIT(TreeTest_Ctrl, MyTreeCtrl::OnEndLabelEdit) | |
156 | EVT_TREE_DELETE_ITEM(TreeTest_Ctrl, MyTreeCtrl::OnDeleteItem) | |
74b31181 | 157 | #if 0 // there are so many of those that logging them causes flicker |
5f939e78 | 158 | EVT_TREE_GET_INFO(TreeTest_Ctrl, MyTreeCtrl::OnGetInfo) |
74b31181 | 159 | #endif |
5f939e78 VZ |
160 | EVT_TREE_SET_INFO(TreeTest_Ctrl, MyTreeCtrl::OnSetInfo) |
161 | EVT_TREE_ITEM_EXPANDED(TreeTest_Ctrl, MyTreeCtrl::OnItemExpanded) | |
162 | EVT_TREE_ITEM_EXPANDING(TreeTest_Ctrl, MyTreeCtrl::OnItemExpanding) | |
163 | EVT_TREE_ITEM_COLLAPSED(TreeTest_Ctrl, MyTreeCtrl::OnItemCollapsed) | |
164 | EVT_TREE_ITEM_COLLAPSING(TreeTest_Ctrl, MyTreeCtrl::OnItemCollapsing) | |
e3d0aa77 | 165 | |
5f939e78 VZ |
166 | EVT_TREE_SEL_CHANGED(TreeTest_Ctrl, MyTreeCtrl::OnSelChanged) |
167 | EVT_TREE_SEL_CHANGING(TreeTest_Ctrl, MyTreeCtrl::OnSelChanging) | |
168 | EVT_TREE_KEY_DOWN(TreeTest_Ctrl, MyTreeCtrl::OnTreeKeyDown) | |
169 | EVT_TREE_ITEM_ACTIVATED(TreeTest_Ctrl, MyTreeCtrl::OnItemActivated) | |
4754ab16 | 170 | EVT_TREE_STATE_IMAGE_CLICK(TreeTest_Ctrl, MyTreeCtrl::OnItemStateClick) |
c545c230 | 171 | |
f73eddd2 | 172 | // so many different ways to handle right mouse button clicks... |
5fd60e08 | 173 | EVT_CONTEXT_MENU(MyTreeCtrl::OnContextMenu) |
9489a535 KH |
174 | // EVT_TREE_ITEM_MENU is the preferred event for creating context menus |
175 | // on a tree control, because it includes the point of the click or item, | |
176 | // meaning that no additional placement calculations are required. | |
5fd60e08 VZ |
177 | EVT_TREE_ITEM_MENU(TreeTest_Ctrl, MyTreeCtrl::OnItemMenu) |
178 | EVT_TREE_ITEM_RIGHT_CLICK(TreeTest_Ctrl, MyTreeCtrl::OnItemRClick) | |
179 | ||
c545c230 VZ |
180 | EVT_RIGHT_DOWN(MyTreeCtrl::OnRMouseDown) |
181 | EVT_RIGHT_UP(MyTreeCtrl::OnRMouseUp) | |
5f939e78 | 182 | EVT_RIGHT_DCLICK(MyTreeCtrl::OnRMouseDClick) |
457814b5 JS |
183 | END_EVENT_TABLE() |
184 | ||
185 | IMPLEMENT_APP(MyApp) | |
186 | ||
c89a6106 | 187 | bool MyApp::OnInit() |
457814b5 | 188 | { |
45e6e6f8 VZ |
189 | if ( !wxApp::OnInit() ) |
190 | return false; | |
191 | ||
5f939e78 | 192 | // Create the main frame window |
4693b20c | 193 | MyFrame *frame = new MyFrame(wxT("wxTreeCtrl Test"), 50, 50, 450, 600); |
457814b5 | 194 | |
5f939e78 | 195 | // Show the frame |
9013f513 | 196 | frame->Show(true); |
5f939e78 | 197 | SetTopWindow(frame); |
457814b5 | 198 | |
9013f513 | 199 | return true; |
3a5a2f56 | 200 | } |
457814b5 | 201 | |
457814b5 | 202 | |
3a5a2f56 VZ |
203 | // My frame constructor |
204 | MyFrame::MyFrame(const wxString& title, int x, int y, int w, int h) | |
9013f513 | 205 | : wxFrame((wxFrame *)NULL, wxID_ANY, title, wxPoint(x, y), wxSize(w, h)), |
b29903d4 WS |
206 | m_treeCtrl(NULL) |
207 | #if wxUSE_LOG | |
208 | , m_textCtrl(NULL) | |
209 | #endif // wxUSE_LOG | |
3a5a2f56 | 210 | { |
5f939e78 VZ |
211 | // This reduces flicker effects - even better would be to define |
212 | // OnEraseBackground to do nothing. When the tree control's scrollbars are | |
213 | // show or hidden, the frame is sent a background erase event. | |
214 | SetBackgroundColour(wxColour(255, 255, 255)); | |
215 | ||
216 | // Give it an icon | |
b2c82287 | 217 | SetIcon(wxICON(sample)); |
5f939e78 | 218 | |
801bb685 | 219 | #if wxUSE_MENUS |
5f939e78 VZ |
220 | // Make a menubar |
221 | wxMenu *file_menu = new wxMenu, | |
618a5e38 | 222 | *style_menu = new wxMenu, |
5f939e78 VZ |
223 | *tree_menu = new wxMenu, |
224 | *item_menu = new wxMenu; | |
225 | ||
f87a111f VZ |
226 | file_menu->Append(TreeTest_ClearLog, wxT("&Clear log\tCtrl-L")); |
227 | file_menu->AppendSeparator(); | |
4693b20c | 228 | file_menu->Append(TreeTest_About, wxT("&About...")); |
5f939e78 | 229 | file_menu->AppendSeparator(); |
4693b20c | 230 | file_menu->Append(TreeTest_Quit, wxT("E&xit\tAlt-X")); |
5f939e78 | 231 | |
2153bf89 DS |
232 | style_menu->AppendCheckItem(TreeTest_TogButtons, wxT("Toggle &normal buttons")); |
233 | style_menu->AppendCheckItem(TreeTest_TogTwist, wxT("Toggle &twister buttons")); | |
234 | style_menu->AppendCheckItem(TreeTest_ToggleButtons, wxT("Toggle image &buttons")); | |
618a5e38 | 235 | style_menu->AppendSeparator(); |
2153bf89 DS |
236 | style_menu->AppendCheckItem(TreeTest_TogLines, wxT("Toggle &connecting lines")); |
237 | style_menu->AppendCheckItem(TreeTest_TogRootLines, wxT("Toggle &lines at root")); | |
238 | style_menu->AppendCheckItem(TreeTest_TogHideRoot, wxT("Toggle &hidden root")); | |
239 | style_menu->AppendCheckItem(TreeTest_TogBorder, wxT("Toggle &item border")); | |
240 | style_menu->AppendCheckItem(TreeTest_TogFullHighlight, wxT("Toggle &full row highlight")); | |
241 | style_menu->AppendCheckItem(TreeTest_TogEdit, wxT("Toggle &edit mode")); | |
7cc8c988 | 242 | #ifndef NO_MULTIPLE_SELECTION |
f87a111f | 243 | style_menu->AppendCheckItem(TreeTest_ToggleSel, wxT("Toggle &selection mode\tCtrl-S")); |
7cc8c988 | 244 | #endif // NO_MULTIPLE_SELECTION |
2153bf89 | 245 | style_menu->AppendCheckItem(TreeTest_ToggleImages, wxT("Toggle show ima&ges")); |
4754ab16 | 246 | style_menu->AppendCheckItem(TreeTest_ToggleStates, wxT("Toggle show st&ates")); |
52734360 | 247 | style_menu->AppendCheckItem(TreeTest_ToggleAlternateImages, wxT("Toggle alternate images")); |
4754ab16 | 248 | style_menu->AppendCheckItem(TreeTest_ToggleAlternateStates, wxT("Toggle alternate state images")); |
4693b20c | 249 | style_menu->Append(TreeTest_SetImageSize, wxT("Set image si&ze...")); |
d88a2485 VZ |
250 | style_menu->AppendSeparator(); |
251 | style_menu->Append(TreeTest_SetFgColour, wxT("Set &foreground colour...")); | |
252 | style_menu->Append(TreeTest_SetBgColour, wxT("Set &background colour...")); | |
11ab1dfb VZ |
253 | style_menu->AppendSeparator(); |
254 | style_menu->Append(TreeTest_ResetStyle, wxT("&Reset to default\tF10")); | |
618a5e38 | 255 | |
3acd4349 VS |
256 | tree_menu->Append(TreeTest_Recreate, wxT("&Recreate the tree")); |
257 | tree_menu->Append(TreeTest_CollapseAndReset, wxT("C&ollapse and reset")); | |
5f939e78 | 258 | tree_menu->AppendSeparator(); |
3acd4349 VS |
259 | tree_menu->Append(TreeTest_AddItem, wxT("Append a &new item")); |
260 | tree_menu->Append(TreeTest_InsertItem, wxT("&Insert a new item")); | |
261 | tree_menu->Append(TreeTest_Delete, wxT("&Delete this item")); | |
262 | tree_menu->Append(TreeTest_DeleteChildren, wxT("Delete &children")); | |
263 | tree_menu->Append(TreeTest_DeleteAll, wxT("Delete &all items")); | |
dc631754 | 264 | tree_menu->Append(TreeTest_SelectRoot, wxT("Select root item")); |
5f939e78 | 265 | tree_menu->AppendSeparator(); |
3acd4349 VS |
266 | tree_menu->Append(TreeTest_Count, wxT("Count children of current item")); |
267 | tree_menu->Append(TreeTest_CountRec, wxT("Recursively count children of current item")); | |
5fd11f09 | 268 | tree_menu->AppendSeparator(); |
3acd4349 VS |
269 | tree_menu->Append(TreeTest_Sort, wxT("Sort children of current item")); |
270 | tree_menu->Append(TreeTest_SortRev, wxT("Sort in reversed order")); | |
5f939e78 | 271 | tree_menu->AppendSeparator(); |
3acd4349 | 272 | tree_menu->Append(TreeTest_EnsureVisible, wxT("Make the last item &visible")); |
5cfb5f66 | 273 | tree_menu->Append(TreeTest_SetFocus, wxT("Set &focus to the tree")); |
cf724bce | 274 | tree_menu->AppendSeparator(); |
3acd4349 VS |
275 | tree_menu->Append(TreeTest_IncIndent, wxT("Add 5 points to indentation\tAlt-I")); |
276 | tree_menu->Append(TreeTest_DecIndent, wxT("Reduce indentation by 5 points\tAlt-R")); | |
cf724bce | 277 | tree_menu->AppendSeparator(); |
3acd4349 VS |
278 | tree_menu->Append(TreeTest_IncSpacing, wxT("Add 5 points to spacing\tCtrl-I")); |
279 | tree_menu->Append(TreeTest_DecSpacing, wxT("Reduce spacing by 5 points\tCtrl-R")); | |
5f939e78 | 280 | |
3acd4349 VS |
281 | item_menu->Append(TreeTest_Dump, wxT("&Dump item children")); |
282 | item_menu->Append(TreeTest_Rename, wxT("&Rename item...")); | |
91b8de8d | 283 | |
5f939e78 | 284 | item_menu->AppendSeparator(); |
3acd4349 VS |
285 | item_menu->Append(TreeTest_SetBold, wxT("Make item &bold")); |
286 | item_menu->Append(TreeTest_ClearBold, wxT("Make item ¬ bold")); | |
9dfbf520 | 287 | item_menu->AppendSeparator(); |
3acd4349 | 288 | item_menu->Append(TreeTest_ToggleIcon, wxT("Toggle the item's &icon")); |
4754ab16 | 289 | item_menu->Append(TreeTest_ToggleState, wxT("Toggle the item's &state")); |
f73eddd2 VZ |
290 | item_menu->AppendSeparator(); |
291 | item_menu->Append(TreeTest_ShowFirstVisible, wxT("Show &first visible")); | |
292 | #ifdef wxHAS_LAST_VISIBLE | |
293 | item_menu->Append(TreeTest_ShowLastVisible, wxT("Show &last visible")); | |
294 | #endif // wxHAS_LAST_VISIBLE | |
295 | item_menu->Append(TreeTest_ShowNextVisible, wxT("Show &next visible")); | |
296 | item_menu->Append(TreeTest_ShowPrevVisible, wxT("Show &previous visible")); | |
0c6afdbf VZ |
297 | item_menu->AppendSeparator(); |
298 | item_menu->Append(TreeTest_ShowParent, "Show pa&rent"); | |
299 | item_menu->Append(TreeTest_ShowPrevSibling, "Show &previous sibling"); | |
300 | item_menu->Append(TreeTest_ShowNextSibling, "Show &next sibling"); | |
51a5c8df VZ |
301 | item_menu->AppendSeparator(); |
302 | item_menu->Append(TreeTest_ScrollTo, "Scroll &to item", | |
303 | "Scroll to the last by one top level child"); | |
9dfbf520 VZ |
304 | |
305 | #ifndef NO_MULTIPLE_SELECTION | |
306 | item_menu->AppendSeparator(); | |
3acd4349 VS |
307 | item_menu->Append(TreeTest_DumpSelected, wxT("Dump selected items\tAlt-D")); |
308 | item_menu->Append(TreeTest_Select, wxT("Select current item\tAlt-S")); | |
309 | item_menu->Append(TreeTest_Unselect, wxT("Unselect everything\tAlt-U")); | |
7cc8c988 | 310 | #endif // NO_MULTIPLE_SELECTION |
5f939e78 VZ |
311 | |
312 | wxMenuBar *menu_bar = new wxMenuBar; | |
3acd4349 VS |
313 | menu_bar->Append(file_menu, wxT("&File")); |
314 | menu_bar->Append(style_menu, wxT("&Style")); | |
315 | menu_bar->Append(tree_menu, wxT("&Tree")); | |
316 | menu_bar->Append(item_menu, wxT("&Item")); | |
5f939e78 | 317 | SetMenuBar(menu_bar); |
801bb685 | 318 | #endif // wxUSE_MENUS |
2c8e4738 | 319 | |
998cee67 VZ |
320 | m_panel = new wxPanel(this); |
321 | ||
b29903d4 | 322 | #if wxUSE_LOG |
11ab1dfb | 323 | // create the controls |
998cee67 | 324 | m_textCtrl = new wxTextCtrl(m_panel, wxID_ANY, wxT(""), |
5f939e78 VZ |
325 | wxDefaultPosition, wxDefaultSize, |
326 | wxTE_MULTILINE | wxSUNKEN_BORDER); | |
b29903d4 | 327 | #endif // wxUSE_LOG |
5f939e78 | 328 | |
11ab1dfb VZ |
329 | CreateTreeWithDefStyle(); |
330 | ||
9013f513 | 331 | menu_bar->Check(TreeTest_ToggleImages, true); |
4754ab16 | 332 | menu_bar->Check(TreeTest_ToggleStates, true); |
52734360 | 333 | menu_bar->Check(TreeTest_ToggleAlternateImages, false); |
4754ab16 | 334 | menu_bar->Check(TreeTest_ToggleAlternateStates, false); |
11ab1dfb | 335 | |
a67c5664 VZ |
336 | #if wxUSE_STATUSBAR |
337 | // create a status bar | |
338 | CreateStatusBar(2); | |
339 | #endif // wxUSE_STATUSBAR | |
3a5a2f56 | 340 | |
b29903d4 | 341 | #if wxUSE_LOG |
a367b9b3 | 342 | #ifdef __WXMOTIF__ |
5f939e78 VZ |
343 | // For some reason, we get a memcpy crash in wxLogStream::DoLogStream |
344 | // on gcc/wxMotif, if we use wxLogTextCtl. Maybe it's just gcc? | |
345 | delete wxLog::SetActiveTarget(new wxLogStderr); | |
a367b9b3 | 346 | #else |
5f939e78 | 347 | // set our text control as the log target |
7cc8c988 | 348 | wxLogTextCtrl *logWindow = new wxLogTextCtrl(m_textCtrl); |
5f939e78 | 349 | delete wxLog::SetActiveTarget(logWindow); |
a367b9b3 | 350 | #endif |
b29903d4 | 351 | #endif // wxUSE_LOG |
457814b5 JS |
352 | } |
353 | ||
c89a6106 | 354 | MyFrame::~MyFrame() |
457814b5 | 355 | { |
b29903d4 | 356 | #if wxUSE_LOG |
5f939e78 | 357 | delete wxLog::SetActiveTarget(NULL); |
b29903d4 | 358 | #endif // wxUSE_LOG |
457814b5 JS |
359 | } |
360 | ||
11ab1dfb VZ |
361 | void MyFrame::CreateTreeWithDefStyle() |
362 | { | |
363 | long style = wxTR_DEFAULT_STYLE | | |
364 | #ifndef NO_VARIABLE_HEIGHT | |
365 | wxTR_HAS_VARIABLE_ROW_HEIGHT | | |
366 | #endif | |
367 | wxTR_EDIT_LABELS; | |
368 | ||
369 | CreateTree(style | wxSUNKEN_BORDER); | |
370 | ||
371 | // as we don't know what wxTR_DEFAULT_STYLE could contain, test for | |
372 | // everything | |
373 | wxMenuBar *mbar = GetMenuBar(); | |
374 | mbar->Check(TreeTest_TogButtons, (style & wxTR_HAS_BUTTONS) != 0); | |
375 | mbar->Check(TreeTest_TogButtons, (style & wxTR_TWIST_BUTTONS) != 0); | |
376 | mbar->Check(TreeTest_TogLines, (style & wxTR_NO_LINES) == 0); | |
377 | mbar->Check(TreeTest_TogRootLines, (style & wxTR_LINES_AT_ROOT) != 0); | |
378 | mbar->Check(TreeTest_TogHideRoot, (style & wxTR_HIDE_ROOT) != 0); | |
379 | mbar->Check(TreeTest_TogEdit, (style & wxTR_EDIT_LABELS) != 0); | |
380 | mbar->Check(TreeTest_TogBorder, (style & wxTR_ROW_LINES) != 0); | |
381 | mbar->Check(TreeTest_TogFullHighlight, (style & wxTR_FULL_ROW_HIGHLIGHT) != 0); | |
382 | } | |
383 | ||
384 | void MyFrame::CreateTree(long style) | |
385 | { | |
998cee67 | 386 | m_treeCtrl = new MyTreeCtrl(m_panel, TreeTest_Ctrl, |
11ab1dfb VZ |
387 | wxDefaultPosition, wxDefaultSize, |
388 | style); | |
c6a6bbbf VZ |
389 | |
390 | GetMenuBar()->Enable(TreeTest_SelectRoot, !(style & wxTR_HIDE_ROOT)); | |
391 | ||
11ab1dfb VZ |
392 | Resize(); |
393 | } | |
394 | ||
395 | void MyFrame::TogStyle(int id, long flag) | |
618a5e38 | 396 | { |
11ab1dfb VZ |
397 | long style = m_treeCtrl->GetWindowStyle() ^ flag; |
398 | ||
399 | // most treectrl styles can't be changed on the fly using the native | |
400 | // control and the tree must be recreated | |
401 | #ifndef __WXMSW__ | |
402 | m_treeCtrl->SetWindowStyle(style); | |
403 | #else // MSW | |
404 | delete m_treeCtrl; | |
405 | CreateTree(style); | |
406 | #endif // !MSW/MSW | |
407 | ||
408 | GetMenuBar()->Check(id, (style & flag) != 0); | |
618a5e38 RR |
409 | } |
410 | ||
a67c5664 VZ |
411 | void MyFrame::OnIdle(wxIdleEvent& event) |
412 | { | |
413 | #if wxUSE_STATUSBAR | |
e4a8a172 VZ |
414 | if ( m_treeCtrl ) |
415 | { | |
416 | wxTreeItemId idRoot = m_treeCtrl->GetRootItem(); | |
98123913 PC |
417 | wxString status; |
418 | if (idRoot.IsOk()) | |
419 | { | |
420 | wxTreeItemId idLast = m_treeCtrl->GetLastChild(idRoot); | |
421 | status = wxString::Format( | |
9a83f860 VZ |
422 | wxT("Root/last item is %svisible/%svisible"), |
423 | m_treeCtrl->IsVisible(idRoot) ? wxT("") : wxT("not "), | |
98123913 | 424 | idLast.IsOk() && m_treeCtrl->IsVisible(idLast) |
9a83f860 | 425 | ? wxT("") : wxT("not ")); |
98123913 PC |
426 | } |
427 | else | |
9a83f860 | 428 | status = wxT("No root item"); |
98123913 PC |
429 | |
430 | SetStatusText(status, 1); | |
e4a8a172 | 431 | } |
a67c5664 VZ |
432 | #endif // wxUSE_STATUSBAR |
433 | ||
434 | event.Skip(); | |
435 | } | |
436 | ||
7cc8c988 VZ |
437 | void MyFrame::OnSize(wxSizeEvent& event) |
438 | { | |
925e9792 | 439 | if ( m_treeCtrl |
b29903d4 | 440 | #if wxUSE_LOG |
925e9792 | 441 | && m_textCtrl |
b29903d4 WS |
442 | #endif // wxUSE_LOG |
443 | ) | |
7cc8c988 | 444 | { |
11ab1dfb | 445 | Resize(); |
7cc8c988 VZ |
446 | } |
447 | ||
448 | event.Skip(); | |
449 | } | |
450 | ||
11ab1dfb | 451 | void MyFrame::Resize() |
7cc8c988 | 452 | { |
11ab1dfb | 453 | wxSize size = GetClientSize(); |
b29903d4 | 454 | m_treeCtrl->SetSize(0, 0, size.x, size.y |
f87a111f | 455 | #if wxUSE_LOG |
b29903d4 | 456 | *2/3); |
f87a111f | 457 | m_textCtrl->SetSize(0, 2*size.y/3, size.x, size.y/3 |
b29903d4 | 458 | #endif |
f87a111f | 459 | ); |
7cc8c988 VZ |
460 | } |
461 | ||
3a5a2f56 | 462 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 463 | { |
9013f513 | 464 | Close(true); |
457814b5 JS |
465 | } |
466 | ||
3a5a2f56 | 467 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 468 | { |
3acd4349 VS |
469 | wxMessageBox(wxT("Tree test sample\n") |
470 | wxT("(c) Julian Smart 1997, Vadim Zeitlin 1998"), | |
471 | wxT("About tree test"), | |
5f939e78 | 472 | wxOK | wxICON_INFORMATION, this); |
e1ee62bd VZ |
473 | } |
474 | ||
f87a111f VZ |
475 | void MyFrame::OnClearLog(wxCommandEvent& WXUNUSED(event)) |
476 | { | |
477 | m_textCtrl->Clear(); | |
478 | } | |
479 | ||
e1ee62bd VZ |
480 | void MyFrame::OnRename(wxCommandEvent& WXUNUSED(event)) |
481 | { | |
febebac1 | 482 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
e1ee62bd | 483 | |
5f939e78 | 484 | CHECK_ITEM( item ); |
e1ee62bd | 485 | |
5ea47806 VZ |
486 | // old code - now we edit in place |
487 | #if 0 | |
5f939e78 | 488 | static wxString s_text; |
3acd4349 | 489 | s_text = wxGetTextFromUser(wxT("New name: "), wxT("Tree sample question"), |
5f939e78 | 490 | s_text, this); |
b713f891 | 491 | if ( !s_text.empty() ) |
5f939e78 VZ |
492 | { |
493 | m_treeCtrl->SetItemText(item, s_text); | |
494 | } | |
5ea47806 VZ |
495 | #endif // 0 |
496 | ||
497 | // TODO demonstrate creating a custom edit control... | |
498 | (void)m_treeCtrl->EditLabel(item); | |
e1ee62bd VZ |
499 | } |
500 | ||
5fd11f09 RR |
501 | void MyFrame::OnCount(wxCommandEvent& WXUNUSED(event)) |
502 | { | |
febebac1 | 503 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
5fd11f09 RR |
504 | |
505 | CHECK_ITEM( item ); | |
506 | ||
9013f513 | 507 | int i = m_treeCtrl->GetChildrenCount( item, false ); |
75c74ca0 | 508 | |
247e5b16 | 509 | wxLogMessage(wxT("%d children"), i); |
5fd11f09 RR |
510 | } |
511 | ||
512 | void MyFrame::OnCountRec(wxCommandEvent& WXUNUSED(event)) | |
513 | { | |
febebac1 | 514 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
5fd11f09 RR |
515 | |
516 | CHECK_ITEM( item ); | |
517 | ||
518 | int i = m_treeCtrl->GetChildrenCount( item ); | |
75c74ca0 | 519 | |
247e5b16 | 520 | wxLogMessage(wxT("%d children"), i); |
5fd11f09 RR |
521 | } |
522 | ||
e1ee62bd VZ |
523 | void MyFrame::DoSort(bool reverse) |
524 | { | |
febebac1 | 525 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
e1ee62bd | 526 | |
5f939e78 | 527 | CHECK_ITEM( item ); |
457814b5 | 528 | |
5f939e78 | 529 | m_treeCtrl->DoSortChildren(item, reverse); |
457814b5 JS |
530 | } |
531 | ||
e525c4ff VZ |
532 | void MyFrame::OnHighlight(wxCommandEvent& WXUNUSED(event)) |
533 | { | |
febebac1 | 534 | wxTreeItemId id = m_treeCtrl->GetFocusedItem(); |
e525c4ff VZ |
535 | |
536 | CHECK_ITEM( id ); | |
537 | ||
538 | wxRect r; | |
539 | if ( !m_treeCtrl->GetBoundingRect(id, r, true /* text, not full row */) ) | |
540 | { | |
9a83f860 | 541 | wxLogMessage(wxT("Failed to get bounding item rect")); |
e525c4ff VZ |
542 | return; |
543 | } | |
544 | ||
545 | wxClientDC dc(m_treeCtrl); | |
546 | dc.SetBrush(*wxRED); | |
547 | dc.SetPen(*wxTRANSPARENT_PEN); | |
548 | dc.DrawRectangle(r); | |
549 | m_treeCtrl->Update(); | |
550 | } | |
551 | ||
4832f7c0 VZ |
552 | void MyFrame::OnDump(wxCommandEvent& WXUNUSED(event)) |
553 | { | |
febebac1 | 554 | wxTreeItemId root = m_treeCtrl->GetFocusedItem(); |
e1ee62bd | 555 | |
5f939e78 | 556 | CHECK_ITEM( root ); |
e1ee62bd | 557 | |
2d75caaa | 558 | m_treeCtrl->GetItemsRecursively(root); |
4832f7c0 VZ |
559 | } |
560 | ||
9dfbf520 VZ |
561 | #ifndef NO_MULTIPLE_SELECTION |
562 | ||
11ab1dfb | 563 | void MyFrame::OnToggleSel(wxCommandEvent& event) |
7cc8c988 | 564 | { |
11ab1dfb | 565 | TogStyle(event.GetId(), wxTR_MULTIPLE); |
7cc8c988 VZ |
566 | } |
567 | ||
91b8de8d RR |
568 | void MyFrame::OnDumpSelected(wxCommandEvent& WXUNUSED(event)) |
569 | { | |
9dfbf520 | 570 | wxArrayTreeItemIds array; |
91b8de8d | 571 | |
9dfbf520 | 572 | size_t count = m_treeCtrl->GetSelections(array); |
b143cf70 | 573 | wxLogMessage(wxT("%u items selected"), unsigned(count)); |
91b8de8d | 574 | |
9dfbf520 VZ |
575 | for ( size_t n = 0; n < count; n++ ) |
576 | { | |
4693b20c | 577 | wxLogMessage(wxT("\t%s"), m_treeCtrl->GetItemText(array.Item(n)).c_str()); |
9dfbf520 VZ |
578 | } |
579 | } | |
580 | ||
256b8649 | 581 | void MyFrame::OnSelect(wxCommandEvent& WXUNUSED(event)) |
9dfbf520 | 582 | { |
febebac1 | 583 | m_treeCtrl->SelectItem(m_treeCtrl->GetFocusedItem()); |
9dfbf520 VZ |
584 | } |
585 | ||
dc631754 VZ |
586 | void MyFrame::OnSelectRoot(wxCommandEvent& WXUNUSED(event)) |
587 | { | |
c6a6bbbf VZ |
588 | if ( !m_treeCtrl->HasFlag(wxTR_HIDE_ROOT) ) |
589 | m_treeCtrl->SelectItem(m_treeCtrl->GetRootItem()); | |
dc631754 VZ |
590 | } |
591 | ||
256b8649 | 592 | void MyFrame::OnUnselect(wxCommandEvent& WXUNUSED(event)) |
9dfbf520 VZ |
593 | { |
594 | m_treeCtrl->UnselectAll(); | |
91b8de8d RR |
595 | } |
596 | ||
9dfbf520 VZ |
597 | #endif // NO_MULTIPLE_SELECTION |
598 | ||
add28c55 VZ |
599 | void MyFrame::DoSetBold(bool bold) |
600 | { | |
febebac1 | 601 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
e1ee62bd | 602 | |
5f939e78 | 603 | CHECK_ITEM( item ); |
e1ee62bd | 604 | |
5f939e78 | 605 | m_treeCtrl->SetItemBold(item, bold); |
add28c55 VZ |
606 | } |
607 | ||
ff5bf259 VZ |
608 | void MyFrame::OnDelete(wxCommandEvent& WXUNUSED(event)) |
609 | { | |
febebac1 | 610 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
e1ee62bd | 611 | |
5f939e78 | 612 | CHECK_ITEM( item ); |
e1ee62bd | 613 | |
5f939e78 | 614 | m_treeCtrl->Delete(item); |
ff5bf259 VZ |
615 | } |
616 | ||
372edb9d VZ |
617 | void MyFrame::OnDeleteChildren(wxCommandEvent& WXUNUSED(event)) |
618 | { | |
febebac1 | 619 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
e1ee62bd | 620 | |
5f939e78 | 621 | CHECK_ITEM( item ); |
e1ee62bd | 622 | |
5f939e78 | 623 | m_treeCtrl->DeleteChildren(item); |
372edb9d VZ |
624 | } |
625 | ||
ff5bf259 VZ |
626 | void MyFrame::OnDeleteAll(wxCommandEvent& WXUNUSED(event)) |
627 | { | |
5f939e78 | 628 | m_treeCtrl->DeleteAllItems(); |
ff5bf259 VZ |
629 | } |
630 | ||
631 | void MyFrame::OnRecreate(wxCommandEvent& event) | |
632 | { | |
5f939e78 | 633 | OnDeleteAll(event); |
bd5d8ac1 | 634 | m_treeCtrl->AddTestItemsToTree(NUM_CHILDREN_PER_LEVEL, NUM_LEVELS); |
ff5bf259 VZ |
635 | } |
636 | ||
256b8649 | 637 | void MyFrame::OnSetImageSize(wxCommandEvent& WXUNUSED(event)) |
2c8e4738 | 638 | { |
3acd4349 VS |
639 | int size = wxGetNumberFromUser(wxT("Enter the size for the images to use"), |
640 | wxT("Size: "), | |
641 | wxT("TreeCtrl sample"), | |
618a5e38 | 642 | m_treeCtrl->ImageSize()); |
2c8e4738 VZ |
643 | if ( size == -1 ) |
644 | return; | |
645 | ||
618a5e38 | 646 | m_treeCtrl->CreateImageList(size); |
9013f513 | 647 | wxGetApp().SetShowImages(true); |
2c8e4738 VZ |
648 | } |
649 | ||
256b8649 | 650 | void MyFrame::OnToggleImages(wxCommandEvent& WXUNUSED(event)) |
2c8e4738 | 651 | { |
f6bcfd97 BP |
652 | if ( wxGetApp().ShowImages() ) |
653 | { | |
654 | m_treeCtrl->CreateImageList(-1); | |
9013f513 | 655 | wxGetApp().SetShowImages(false); |
f6bcfd97 BP |
656 | } |
657 | else | |
658 | { | |
618a5e38 | 659 | m_treeCtrl->CreateImageList(0); |
9013f513 | 660 | wxGetApp().SetShowImages(true); |
f6bcfd97 | 661 | } |
618a5e38 | 662 | } |
2c8e4738 | 663 | |
4754ab16 RR |
664 | void MyFrame::OnToggleStates(wxCommandEvent& WXUNUSED(event)) |
665 | { | |
666 | if ( wxGetApp().ShowStates() ) | |
667 | { | |
668 | m_treeCtrl->CreateStateImageList(true); | |
669 | wxGetApp().SetShowStates(false); | |
670 | } | |
671 | else | |
672 | { | |
673 | m_treeCtrl->CreateStateImageList(false); | |
674 | wxGetApp().SetShowStates(true); | |
675 | } | |
676 | } | |
677 | ||
52734360 VZ |
678 | void MyFrame::OnToggleAlternateImages(wxCommandEvent& WXUNUSED(event)) |
679 | { | |
680 | bool alternateImages = m_treeCtrl->AlternateImages(); | |
681 | ||
682 | m_treeCtrl->SetAlternateImages(!alternateImages); | |
683 | m_treeCtrl->CreateImageList(0); | |
684 | } | |
685 | ||
4754ab16 RR |
686 | void MyFrame::OnToggleAlternateStates(wxCommandEvent& WXUNUSED(event)) |
687 | { | |
688 | bool alternateStates = m_treeCtrl->AlternateStates(); | |
689 | ||
690 | m_treeCtrl->SetAlternateStates(!alternateStates); | |
691 | m_treeCtrl->CreateStateImageList(); | |
df4a099c VZ |
692 | |
693 | // normal states < alternate states | |
694 | // so we must reset broken states | |
695 | if ( alternateStates ) | |
696 | m_treeCtrl->ResetBrokenStateImages(); | |
4754ab16 RR |
697 | } |
698 | ||
256b8649 | 699 | void MyFrame::OnToggleButtons(wxCommandEvent& WXUNUSED(event)) |
618a5e38 | 700 | { |
a3e377a3 | 701 | #if USE_GENERIC_TREECTRL || !defined(__WXMSW__) |
618a5e38 RR |
702 | if ( wxGetApp().ShowButtons() ) |
703 | { | |
704 | m_treeCtrl->CreateButtonsImageList(-1); | |
9013f513 | 705 | wxGetApp().SetShowButtons(false); |
618a5e38 RR |
706 | } |
707 | else | |
708 | { | |
709 | m_treeCtrl->CreateButtonsImageList(15); | |
9013f513 | 710 | wxGetApp().SetShowButtons(true); |
618a5e38 | 711 | } |
a3e377a3 | 712 | #endif |
2c8e4738 VZ |
713 | } |
714 | ||
256b8649 | 715 | void MyFrame::OnCollapseAndReset(wxCommandEvent& WXUNUSED(event)) |
dd3646fd | 716 | { |
5f939e78 | 717 | m_treeCtrl->CollapseAndReset(m_treeCtrl->GetRootItem()); |
dd3646fd VZ |
718 | } |
719 | ||
256b8649 | 720 | void MyFrame::OnEnsureVisible(wxCommandEvent& WXUNUSED(event)) |
f65635b5 VZ |
721 | { |
722 | m_treeCtrl->DoEnsureVisible(); | |
723 | } | |
724 | ||
5cfb5f66 VZ |
725 | void MyFrame::OnSetFocus(wxCommandEvent& WXUNUSED(event)) |
726 | { | |
727 | m_treeCtrl->SetFocus(); | |
728 | } | |
729 | ||
75c74ca0 VZ |
730 | void MyFrame::OnInsertItem(wxCommandEvent& WXUNUSED(event)) |
731 | { | |
2c8e4738 | 732 | int image = wxGetApp().ShowImages() ? MyTreeCtrl::TreeCtrlIcon_File : -1; |
3acd4349 | 733 | m_treeCtrl->InsertItem(m_treeCtrl->GetRootItem(), image, wxT("2nd item")); |
75c74ca0 VZ |
734 | } |
735 | ||
5f939e78 VZ |
736 | void MyFrame::OnAddItem(wxCommandEvent& WXUNUSED(event)) |
737 | { | |
738 | static int s_num = 0; | |
739 | ||
740 | wxString text; | |
4693b20c | 741 | text.Printf(wxT("Item #%d"), ++s_num); |
5f939e78 VZ |
742 | |
743 | m_treeCtrl->AppendItem(m_treeCtrl->GetRootItem(), | |
112c5086 RR |
744 | text /*, |
745 | MyTreeCtrl::TreeCtrlIcon_File */ ); | |
5f939e78 VZ |
746 | } |
747 | ||
cf724bce RR |
748 | void MyFrame::OnIncIndent(wxCommandEvent& WXUNUSED(event)) |
749 | { | |
750 | unsigned int indent = m_treeCtrl->GetIndent(); | |
751 | if (indent < 100) | |
752 | m_treeCtrl->SetIndent( indent+5 ); | |
753 | } | |
754 | ||
755 | void MyFrame::OnDecIndent(wxCommandEvent& WXUNUSED(event)) | |
756 | { | |
757 | unsigned int indent = m_treeCtrl->GetIndent(); | |
758 | if (indent > 10) | |
759 | m_treeCtrl->SetIndent( indent-5 ); | |
760 | } | |
761 | ||
762 | void MyFrame::OnIncSpacing(wxCommandEvent& WXUNUSED(event)) | |
763 | { | |
764 | unsigned int indent = m_treeCtrl->GetSpacing(); | |
765 | if (indent < 100) | |
febebac1 | 766 | { |
cf724bce | 767 | m_treeCtrl->SetSpacing( indent+5 ); |
febebac1 VZ |
768 | m_treeCtrl->Refresh(); |
769 | } | |
cf724bce RR |
770 | } |
771 | ||
772 | void MyFrame::OnDecSpacing(wxCommandEvent& WXUNUSED(event)) | |
773 | { | |
774 | unsigned int indent = m_treeCtrl->GetSpacing(); | |
775 | if (indent > 10) | |
febebac1 | 776 | { |
cf724bce | 777 | m_treeCtrl->SetSpacing( indent-5 ); |
febebac1 VZ |
778 | m_treeCtrl->Refresh(); |
779 | } | |
cf724bce RR |
780 | } |
781 | ||
9dfbf520 VZ |
782 | void MyFrame::OnToggleIcon(wxCommandEvent& WXUNUSED(event)) |
783 | { | |
febebac1 | 784 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
9dfbf520 VZ |
785 | |
786 | CHECK_ITEM( item ); | |
787 | ||
788 | m_treeCtrl->DoToggleIcon(item); | |
789 | } | |
790 | ||
4754ab16 RR |
791 | void MyFrame::OnToggleState(wxCommandEvent& WXUNUSED(event)) |
792 | { | |
febebac1 | 793 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
4754ab16 RR |
794 | |
795 | CHECK_ITEM( item ); | |
796 | ||
797 | m_treeCtrl->DoToggleState(item); | |
798 | } | |
799 | ||
f73eddd2 VZ |
800 | void MyFrame::DoShowFirstOrLast(TreeFunc0_t pfn, const wxString& label) |
801 | { | |
802 | const wxTreeItemId item = (m_treeCtrl->*pfn)(); | |
803 | ||
804 | if ( !item.IsOk() ) | |
43b2d5e7 | 805 | { |
f73eddd2 | 806 | wxLogMessage("There is no %s item", label); |
43b2d5e7 | 807 | } |
f73eddd2 | 808 | else |
43b2d5e7 | 809 | { |
f73eddd2 VZ |
810 | wxLogMessage("The %s item is \"%s\"", |
811 | label, m_treeCtrl->GetItemText(item)); | |
43b2d5e7 | 812 | } |
f73eddd2 VZ |
813 | } |
814 | ||
0c6afdbf | 815 | void MyFrame::DoShowRelativeItem(TreeFunc1_t pfn, const wxString& label) |
f73eddd2 | 816 | { |
febebac1 | 817 | wxTreeItemId item = m_treeCtrl->GetFocusedItem(); |
f73eddd2 VZ |
818 | |
819 | CHECK_ITEM( item ); | |
820 | ||
0c6afdbf VZ |
821 | if ((pfn == (TreeFunc1_t) &wxTreeCtrl::GetPrevVisible |
822 | || pfn == (TreeFunc1_t) &wxTreeCtrl::GetNextVisible) | |
823 | && !m_treeCtrl->IsVisible(item)) | |
f73eddd2 VZ |
824 | { |
825 | wxLogMessage("The selected item must be visible."); | |
826 | return; | |
827 | } | |
828 | ||
0c6afdbf | 829 | wxTreeItemId new_item = (m_treeCtrl->*pfn)(item); |
f73eddd2 | 830 | |
0c6afdbf | 831 | if ( !new_item.IsOk() ) |
43b2d5e7 | 832 | { |
f73eddd2 | 833 | wxLogMessage("There is no %s item", label); |
43b2d5e7 | 834 | } |
f73eddd2 | 835 | else |
43b2d5e7 | 836 | { |
f73eddd2 | 837 | wxLogMessage("The %s item is \"%s\"", |
0c6afdbf | 838 | label, m_treeCtrl->GetItemText(new_item)); |
43b2d5e7 | 839 | } |
f73eddd2 VZ |
840 | } |
841 | ||
51a5c8df VZ |
842 | void MyFrame::OnScrollTo(wxCommandEvent& WXUNUSED(event)) |
843 | { | |
844 | // scroll to the last but one top level child | |
845 | wxTreeItemId item = m_treeCtrl->GetPrevSibling( | |
846 | m_treeCtrl->GetLastChild( | |
847 | m_treeCtrl->GetRootItem())); | |
848 | CHECK_ITEM( item ); | |
849 | ||
850 | m_treeCtrl->ScrollTo(item); | |
851 | } | |
852 | ||
d88a2485 VZ |
853 | void MyFrame::OnSetFgColour(wxCommandEvent& WXUNUSED(event)) |
854 | { | |
855 | wxColour col = wxGetColourFromUser(this, m_treeCtrl->GetForegroundColour()); | |
856 | if ( col.Ok() ) | |
857 | m_treeCtrl->SetForegroundColour(col); | |
858 | } | |
859 | ||
860 | void MyFrame::OnSetBgColour(wxCommandEvent& WXUNUSED(event)) | |
861 | { | |
862 | wxColour col = wxGetColourFromUser(this, m_treeCtrl->GetBackgroundColour()); | |
863 | if ( col.Ok() ) | |
864 | m_treeCtrl->SetBackgroundColour(col); | |
865 | } | |
866 | ||
3a5a2f56 | 867 | // MyTreeCtrl implementation |
484523cf JS |
868 | #if USE_GENERIC_TREECTRL |
869 | IMPLEMENT_DYNAMIC_CLASS(MyTreeCtrl, wxGenericTreeCtrl) | |
870 | #else | |
23fd5130 | 871 | IMPLEMENT_DYNAMIC_CLASS(MyTreeCtrl, wxTreeCtrl) |
484523cf | 872 | #endif |
23fd5130 | 873 | |
3a5a2f56 VZ |
874 | MyTreeCtrl::MyTreeCtrl(wxWindow *parent, const wxWindowID id, |
875 | const wxPoint& pos, const wxSize& size, | |
876 | long style) | |
52734360 | 877 | : wxTreeCtrl(parent, id, pos, size, style), |
4754ab16 RR |
878 | m_alternateImages(false), |
879 | m_alternateStates(false) | |
457814b5 | 880 | { |
9013f513 | 881 | m_reverseSort = false; |
91b8de8d | 882 | |
2c8e4738 | 883 | CreateImageList(); |
4754ab16 | 884 | CreateStateImageList(); |
91b8de8d | 885 | |
2c8e4738 | 886 | // Add some items to the tree |
bd5d8ac1 | 887 | AddTestItemsToTree(NUM_CHILDREN_PER_LEVEL, NUM_LEVELS); |
2c8e4738 VZ |
888 | } |
889 | ||
890 | void MyTreeCtrl::CreateImageList(int size) | |
891 | { | |
2c8e4738 VZ |
892 | if ( size == -1 ) |
893 | { | |
618a5e38 RR |
894 | SetImageList(NULL); |
895 | return; | |
2c8e4738 | 896 | } |
618a5e38 RR |
897 | if ( size == 0 ) |
898 | size = m_imageSize; | |
f6bcfd97 | 899 | else |
618a5e38 RR |
900 | m_imageSize = size; |
901 | ||
902 | // Make an image list containing small icons | |
9013f513 | 903 | wxImageList *images = new wxImageList(size, size, true); |
e1ee62bd | 904 | |
618a5e38 | 905 | // should correspond to TreeCtrlIcon_xxx enum |
618a5e38 RR |
906 | wxBusyCursor wait; |
907 | wxIcon icons[5]; | |
618a5e38 | 908 | |
52734360 VZ |
909 | if (m_alternateImages) |
910 | { | |
911 | icons[TreeCtrlIcon_File] = wxIcon(icon1_xpm); | |
912 | icons[TreeCtrlIcon_FileSelected] = wxIcon(icon2_xpm); | |
913 | icons[TreeCtrlIcon_Folder] = wxIcon(icon3_xpm); | |
914 | icons[TreeCtrlIcon_FolderSelected] = wxIcon(icon4_xpm); | |
915 | icons[TreeCtrlIcon_FolderOpened] = wxIcon(icon5_xpm); | |
916 | } | |
917 | else | |
918 | { | |
919 | wxSize iconSize(size, size); | |
920 | ||
921 | icons[TreeCtrlIcon_File] = | |
922 | icons[TreeCtrlIcon_FileSelected] = wxArtProvider::GetIcon(wxART_NORMAL_FILE, wxART_LIST, iconSize); | |
923 | icons[TreeCtrlIcon_Folder] = | |
924 | icons[TreeCtrlIcon_FolderSelected] = | |
925 | icons[TreeCtrlIcon_FolderOpened] = wxArtProvider::GetIcon(wxART_FOLDER, wxART_LIST, iconSize); | |
926 | } | |
927 | ||
618a5e38 RR |
928 | for ( size_t i = 0; i < WXSIZEOF(icons); i++ ) |
929 | { | |
52734360 | 930 | int sizeOrig = icons[0].GetWidth(); |
618a5e38 | 931 | if ( size == sizeOrig ) |
2c8e4738 | 932 | { |
618a5e38 | 933 | images->Add(icons[i]); |
2c8e4738 | 934 | } |
618a5e38 RR |
935 | else |
936 | { | |
9f24e0b5 | 937 | images->Add(wxBitmap(wxBitmap(icons[i]).ConvertToImage().Rescale(size, size))); |
618a5e38 RR |
938 | } |
939 | } | |
618a5e38 RR |
940 | |
941 | AssignImageList(images); | |
942 | } | |
943 | ||
4754ab16 RR |
944 | void MyTreeCtrl::CreateStateImageList(bool del) |
945 | { | |
946 | if ( del ) | |
947 | { | |
948 | SetStateImageList(NULL); | |
949 | return; | |
950 | } | |
951 | ||
952 | wxImageList *states; | |
953 | wxBusyCursor wait; | |
954 | ||
955 | if (m_alternateStates) | |
956 | { | |
957 | wxIcon icons[5]; | |
958 | icons[0] = wxIcon(state1_xpm); // yellow | |
959 | icons[1] = wxIcon(state2_xpm); // green | |
960 | icons[2] = wxIcon(state3_xpm); // red | |
961 | icons[3] = wxIcon(state4_xpm); // blue | |
962 | icons[4] = wxIcon(state5_xpm); // black | |
963 | ||
964 | int width = icons[0].GetWidth(), | |
965 | height = icons[0].GetHeight(); | |
966 | ||
967 | // Make an state image list containing small icons | |
968 | states = new wxImageList(width, height, true); | |
969 | ||
970 | for ( size_t i = 0; i < WXSIZEOF(icons); i++ ) | |
971 | states->Add(icons[i]); | |
972 | } | |
973 | else | |
974 | { | |
11339a38 RR |
975 | wxIcon icons[2]; |
976 | icons[0] = wxIcon(unchecked_xpm); | |
977 | icons[1] = wxIcon(checked_xpm); | |
978 | ||
979 | int width = icons[0].GetWidth(), | |
980 | height = icons[0].GetHeight(); | |
981 | ||
982 | // Make an state image list containing small icons | |
983 | states = new wxImageList(width, height, true); | |
4754ab16 | 984 | |
11339a38 RR |
985 | for ( size_t i = 0; i < WXSIZEOF(icons); i++ ) |
986 | states->Add(icons[i]); | |
4754ab16 RR |
987 | } |
988 | ||
989 | AssignStateImageList(states); | |
990 | } | |
991 | ||
256b8649 | 992 | #if USE_GENERIC_TREECTRL || !defined(__WXMSW__) |
618a5e38 RR |
993 | void MyTreeCtrl::CreateButtonsImageList(int size) |
994 | { | |
995 | if ( size == -1 ) | |
996 | { | |
997 | SetButtonsImageList(NULL); | |
998 | return; | |
999 | } | |
1000 | ||
1001 | // Make an image list containing small icons | |
9013f513 | 1002 | wxImageList *images = new wxImageList(size, size, true); |
618a5e38 RR |
1003 | |
1004 | // should correspond to TreeCtrlIcon_xxx enum | |
618a5e38 RR |
1005 | wxBusyCursor wait; |
1006 | wxIcon icons[4]; | |
618a5e38 | 1007 | |
52734360 VZ |
1008 | if (m_alternateImages) |
1009 | { | |
1010 | icons[0] = wxIcon(icon3_xpm); // closed | |
1011 | icons[1] = wxIcon(icon3_xpm); // closed, selected | |
1012 | icons[2] = wxIcon(icon5_xpm); // open | |
1013 | icons[3] = wxIcon(icon5_xpm); // open, selected | |
1014 | } | |
1015 | else | |
1016 | { | |
1017 | wxSize iconSize(size, size); | |
1018 | ||
1019 | icons[0] = // closed | |
1020 | icons[1] = wxArtProvider::GetIcon(wxART_FOLDER, wxART_LIST, iconSize); // closed, selected | |
1021 | icons[2] = // open | |
1022 | icons[3] = wxArtProvider::GetIcon(wxART_FOLDER_OPEN, wxART_LIST, iconSize);// open, selected | |
1023 | } | |
1024 | ||
1025 | for ( size_t i = 0; i < WXSIZEOF(icons); i++ ) | |
618a5e38 RR |
1026 | { |
1027 | int sizeOrig = icons[i].GetWidth(); | |
1028 | if ( size == sizeOrig ) | |
1029 | { | |
1030 | images->Add(icons[i]); | |
1031 | } | |
1032 | else | |
1033 | { | |
8dda7c0c | 1034 | images->Add(wxBitmap(wxBitmap(icons[i]).ConvertToImage().Rescale(size, size))); |
618a5e38 | 1035 | } |
2c8e4738 | 1036 | } |
457814b5 | 1037 | |
618a5e38 | 1038 | AssignButtonsImageList(images); |
256b8649 JS |
1039 | #else |
1040 | void MyTreeCtrl::CreateButtonsImageList(int WXUNUSED(size)) | |
1041 | { | |
a3e377a3 | 1042 | #endif |
457814b5 JS |
1043 | } |
1044 | ||
e1ee62bd VZ |
1045 | int MyTreeCtrl::OnCompareItems(const wxTreeItemId& item1, |
1046 | const wxTreeItemId& item2) | |
1047 | { | |
5f939e78 VZ |
1048 | if ( m_reverseSort ) |
1049 | { | |
1050 | // just exchange 1st and 2nd items | |
1051 | return wxTreeCtrl::OnCompareItems(item2, item1); | |
1052 | } | |
1053 | else | |
1054 | { | |
1055 | return wxTreeCtrl::OnCompareItems(item1, item2); | |
1056 | } | |
e1ee62bd VZ |
1057 | } |
1058 | ||
3a5a2f56 VZ |
1059 | void MyTreeCtrl::AddItemsRecursively(const wxTreeItemId& idParent, |
1060 | size_t numChildren, | |
4832f7c0 VZ |
1061 | size_t depth, |
1062 | size_t folder) | |
457814b5 | 1063 | { |
f65635b5 | 1064 | if ( depth > 0 ) |
3a5a2f56 | 1065 | { |
74b31181 VZ |
1066 | bool hasChildren = depth > 1; |
1067 | ||
f65635b5 VZ |
1068 | wxString str; |
1069 | for ( size_t n = 0; n < numChildren; n++ ) | |
1070 | { | |
1071 | // at depth 1 elements won't have any more children | |
74b31181 | 1072 | if ( hasChildren ) |
b143cf70 | 1073 | str.Printf(wxT("%s child %u"), wxT("Folder"), unsigned(n + 1)); |
74b31181 | 1074 | else |
b143cf70 | 1075 | str.Printf(wxT("%s child %u.%u"), wxT("File"), unsigned(folder), unsigned(n + 1)); |
f65635b5 | 1076 | |
74b31181 VZ |
1077 | // here we pass to AppendItem() normal and selected item images (we |
1078 | // suppose that selected image follows the normal one in the enum) | |
2c8e4738 VZ |
1079 | int image, imageSel; |
1080 | if ( wxGetApp().ShowImages() ) | |
1081 | { | |
1082 | image = depth == 1 ? TreeCtrlIcon_File : TreeCtrlIcon_Folder; | |
1083 | imageSel = image + 1; | |
1084 | } | |
1085 | else | |
1086 | { | |
1087 | image = imageSel = -1; | |
1088 | } | |
1089 | wxTreeItemId id = AppendItem(idParent, str, image, imageSel, | |
f65635b5 VZ |
1090 | new MyTreeItemData(str)); |
1091 | ||
4754ab16 RR |
1092 | if ( wxGetApp().ShowStates() ) |
1093 | SetItemState(id, 0); | |
1094 | ||
74b31181 | 1095 | // and now we also set the expanded one (only for the folders) |
2c8e4738 | 1096 | if ( hasChildren && wxGetApp().ShowImages() ) |
74b31181 VZ |
1097 | { |
1098 | SetItemImage(id, TreeCtrlIcon_FolderOpened, | |
1099 | wxTreeItemIcon_Expanded); | |
1100 | } | |
1101 | ||
f65635b5 | 1102 | // remember the last child for OnEnsureVisible() |
74b31181 | 1103 | if ( !hasChildren && n == numChildren - 1 ) |
f65635b5 VZ |
1104 | { |
1105 | m_lastItem = id; | |
1106 | } | |
1107 | ||
1108 | AddItemsRecursively(id, numChildren, depth - 1, n + 1); | |
1109 | } | |
3a5a2f56 | 1110 | } |
f65635b5 | 1111 | //else: done! |
457814b5 JS |
1112 | } |
1113 | ||
3a5a2f56 VZ |
1114 | void MyTreeCtrl::AddTestItemsToTree(size_t numChildren, |
1115 | size_t depth) | |
457814b5 | 1116 | { |
2c8e4738 | 1117 | int image = wxGetApp().ShowImages() ? MyTreeCtrl::TreeCtrlIcon_Folder : -1; |
3acd4349 | 1118 | wxTreeItemId rootId = AddRoot(wxT("Root"), |
2c8e4738 | 1119 | image, image, |
3acd4349 | 1120 | new MyTreeItemData(wxT("Root item"))); |
c6a6bbbf | 1121 | if ( !HasFlag(wxTR_HIDE_ROOT) && image != -1 ) |
2c8e4738 VZ |
1122 | { |
1123 | SetItemImage(rootId, TreeCtrlIcon_FolderOpened, wxTreeItemIcon_Expanded); | |
1124 | } | |
457814b5 | 1125 | |
5f939e78 | 1126 | AddItemsRecursively(rootId, numChildren, depth, 0); |
9ec64fa7 VZ |
1127 | |
1128 | // set some colours/fonts for testing | |
c6a6bbbf VZ |
1129 | if ( !HasFlag(wxTR_HIDE_ROOT) ) |
1130 | SetItemFont(rootId, *wxITALIC_FONT); | |
9ec64fa7 | 1131 | |
2d75caaa | 1132 | wxTreeItemIdValue cookie; |
9ec64fa7 VZ |
1133 | wxTreeItemId id = GetFirstChild(rootId, cookie); |
1134 | SetItemTextColour(id, *wxBLUE); | |
1135 | ||
1136 | id = GetNextChild(rootId, cookie); | |
bd5d8ac1 VZ |
1137 | if ( id ) |
1138 | id = GetNextChild(rootId, cookie); | |
1139 | if ( id ) | |
1140 | { | |
1141 | SetItemTextColour(id, *wxRED); | |
1142 | SetItemBackgroundColour(id, *wxLIGHT_GREY); | |
1143 | } | |
4832f7c0 VZ |
1144 | } |
1145 | ||
2d75caaa VZ |
1146 | void MyTreeCtrl::GetItemsRecursively(const wxTreeItemId& idParent, |
1147 | wxTreeItemIdValue cookie) | |
4832f7c0 | 1148 | { |
5f939e78 | 1149 | wxTreeItemId id; |
4832f7c0 | 1150 | |
2d75caaa | 1151 | if ( !cookie ) |
5f939e78 VZ |
1152 | id = GetFirstChild(idParent, cookie); |
1153 | else | |
1154 | id = GetNextChild(idParent, cookie); | |
4832f7c0 | 1155 | |
2d75caaa | 1156 | if ( !id.IsOk() ) |
5f939e78 | 1157 | return; |
4832f7c0 | 1158 | |
9dfbf520 | 1159 | wxString text = GetItemText(id); |
5f939e78 | 1160 | wxLogMessage(text); |
4832f7c0 | 1161 | |
5f939e78 | 1162 | if (ItemHasChildren(id)) |
2d75caaa | 1163 | GetItemsRecursively(id); |
4832f7c0 | 1164 | |
5f939e78 | 1165 | GetItemsRecursively(idParent, cookie); |
457814b5 JS |
1166 | } |
1167 | ||
9dfbf520 VZ |
1168 | void MyTreeCtrl::DoToggleIcon(const wxTreeItemId& item) |
1169 | { | |
8c7da4a6 | 1170 | int image = GetItemImage(item) == TreeCtrlIcon_Folder |
0c36b36e VS |
1171 | ? TreeCtrlIcon_File |
1172 | : TreeCtrlIcon_Folder; | |
1173 | SetItemImage(item, image, wxTreeItemIcon_Normal); | |
1174 | ||
ec8bb924 | 1175 | image = GetItemImage(item, wxTreeItemIcon_Selected) == TreeCtrlIcon_FolderSelected |
0c36b36e VS |
1176 | ? TreeCtrlIcon_FileSelected |
1177 | : TreeCtrlIcon_FolderSelected; | |
1178 | SetItemImage(item, image, wxTreeItemIcon_Selected); | |
9dfbf520 VZ |
1179 | } |
1180 | ||
4754ab16 RR |
1181 | void MyTreeCtrl::DoToggleState(const wxTreeItemId& item) |
1182 | { | |
1183 | if ( m_alternateStates ) | |
1184 | { | |
1185 | // sets random state unlike current | |
1186 | int state = GetItemState(item); | |
1187 | int nState; | |
1188 | ||
1189 | srand (time(NULL)); | |
1190 | do { | |
1191 | nState = rand() % GetStateImageList()->GetImageCount(); | |
1192 | } while (nState == state); | |
1193 | ||
1194 | SetItemState(item, nState); | |
1195 | } | |
1196 | else | |
1197 | { | |
1198 | // we have only 2 checkbox states, so next state will be reversed | |
1199 | SetItemState(item, wxTREE_ITEMSTATE_NEXT); | |
1200 | } | |
1201 | } | |
1202 | ||
df4a099c VZ |
1203 | void MyTreeCtrl::DoResetBrokenStateImages(const wxTreeItemId& idParent, |
1204 | wxTreeItemIdValue cookie, int state) | |
1205 | { | |
1206 | wxTreeItemId id; | |
1207 | ||
1208 | if ( !cookie ) | |
1209 | id = GetFirstChild(idParent, cookie); | |
1210 | else | |
1211 | id = GetNextChild(idParent, cookie); | |
1212 | ||
1213 | if ( !id.IsOk() ) | |
1214 | return; | |
1215 | ||
1216 | int curState = GetItemState(id); | |
1217 | if ( curState != wxTREE_ITEMSTATE_NONE && curState > state ) | |
1218 | SetItemState(id, state); | |
1219 | ||
1220 | if (ItemHasChildren(id)) | |
1221 | DoResetBrokenStateImages(id, 0, state); | |
1222 | ||
1223 | DoResetBrokenStateImages(idParent, cookie, state); | |
1224 | } | |
1225 | ||
5c2603c2 VZ |
1226 | void MyTreeCtrl::LogEvent(const wxChar *name, const wxTreeEvent& event) |
1227 | { | |
1228 | wxTreeItemId item = event.GetItem(); | |
1229 | wxString text; | |
1230 | if ( item.IsOk() ) | |
9a83f860 | 1231 | text << wxT('"') << GetItemText(item).c_str() << wxT('"'); |
5c2603c2 | 1232 | else |
9a83f860 | 1233 | text = wxT("invalid item"); |
5c2603c2 VZ |
1234 | wxLogMessage(wxT("%s(%s)"), name, text.c_str()); |
1235 | } | |
4832f7c0 | 1236 | |
3a5a2f56 | 1237 | // avoid repetition |
4693b20c MB |
1238 | #define TREE_EVENT_HANDLER(name) \ |
1239 | void MyTreeCtrl::name(wxTreeEvent& event) \ | |
1240 | { \ | |
9a83f860 | 1241 | LogEvent(wxT(#name), event); \ |
1cf1238d | 1242 | SetLastItem(wxTreeItemId()); \ |
4693b20c | 1243 | event.Skip(); \ |
5f939e78 | 1244 | } |
457814b5 | 1245 | |
3a5a2f56 | 1246 | TREE_EVENT_HANDLER(OnBeginRDrag) |
3a5a2f56 VZ |
1247 | TREE_EVENT_HANDLER(OnDeleteItem) |
1248 | TREE_EVENT_HANDLER(OnGetInfo) | |
1249 | TREE_EVENT_HANDLER(OnSetInfo) | |
1250 | TREE_EVENT_HANDLER(OnItemExpanded) | |
1251 | TREE_EVENT_HANDLER(OnItemExpanding) | |
1252 | TREE_EVENT_HANDLER(OnItemCollapsed) | |
1253 | TREE_EVENT_HANDLER(OnSelChanged) | |
1254 | TREE_EVENT_HANDLER(OnSelChanging) | |
1255 | ||
1256 | #undef TREE_EVENT_HANDLER | |
1257 | ||
1944ad76 VZ |
1258 | void LogKeyEvent(const wxChar *name, const wxKeyEvent& event) |
1259 | { | |
1260 | wxString key; | |
0c6099b7 | 1261 | long keycode = event.GetKeyCode(); |
1944ad76 | 1262 | { |
0c6099b7 | 1263 | switch ( keycode ) |
1944ad76 | 1264 | { |
0c6099b7 RN |
1265 | case WXK_BACK: key = wxT("BACK"); break; |
1266 | case WXK_TAB: key = wxT("TAB"); break; | |
1267 | case WXK_RETURN: key = wxT("RETURN"); break; | |
1268 | case WXK_ESCAPE: key = wxT("ESCAPE"); break; | |
1269 | case WXK_SPACE: key = wxT("SPACE"); break; | |
1270 | case WXK_DELETE: key = wxT("DELETE"); break; | |
1271 | case WXK_START: key = wxT("START"); break; | |
1272 | case WXK_LBUTTON: key = wxT("LBUTTON"); break; | |
1273 | case WXK_RBUTTON: key = wxT("RBUTTON"); break; | |
1274 | case WXK_CANCEL: key = wxT("CANCEL"); break; | |
1275 | case WXK_MBUTTON: key = wxT("MBUTTON"); break; | |
1276 | case WXK_CLEAR: key = wxT("CLEAR"); break; | |
1277 | case WXK_SHIFT: key = wxT("SHIFT"); break; | |
1278 | case WXK_ALT: key = wxT("ALT"); break; | |
1279 | case WXK_CONTROL: key = wxT("CONTROL"); break; | |
1280 | case WXK_MENU: key = wxT("MENU"); break; | |
1281 | case WXK_PAUSE: key = wxT("PAUSE"); break; | |
1282 | case WXK_CAPITAL: key = wxT("CAPITAL"); break; | |
0c6099b7 RN |
1283 | case WXK_END: key = wxT("END"); break; |
1284 | case WXK_HOME: key = wxT("HOME"); break; | |
1285 | case WXK_LEFT: key = wxT("LEFT"); break; | |
1286 | case WXK_UP: key = wxT("UP"); break; | |
1287 | case WXK_RIGHT: key = wxT("RIGHT"); break; | |
1288 | case WXK_DOWN: key = wxT("DOWN"); break; | |
1289 | case WXK_SELECT: key = wxT("SELECT"); break; | |
1290 | case WXK_PRINT: key = wxT("PRINT"); break; | |
1291 | case WXK_EXECUTE: key = wxT("EXECUTE"); break; | |
1292 | case WXK_SNAPSHOT: key = wxT("SNAPSHOT"); break; | |
1293 | case WXK_INSERT: key = wxT("INSERT"); break; | |
1294 | case WXK_HELP: key = wxT("HELP"); break; | |
1295 | case WXK_NUMPAD0: key = wxT("NUMPAD0"); break; | |
1296 | case WXK_NUMPAD1: key = wxT("NUMPAD1"); break; | |
1297 | case WXK_NUMPAD2: key = wxT("NUMPAD2"); break; | |
1298 | case WXK_NUMPAD3: key = wxT("NUMPAD3"); break; | |
1299 | case WXK_NUMPAD4: key = wxT("NUMPAD4"); break; | |
1300 | case WXK_NUMPAD5: key = wxT("NUMPAD5"); break; | |
1301 | case WXK_NUMPAD6: key = wxT("NUMPAD6"); break; | |
1302 | case WXK_NUMPAD7: key = wxT("NUMPAD7"); break; | |
1303 | case WXK_NUMPAD8: key = wxT("NUMPAD8"); break; | |
1304 | case WXK_NUMPAD9: key = wxT("NUMPAD9"); break; | |
1305 | case WXK_MULTIPLY: key = wxT("MULTIPLY"); break; | |
1306 | case WXK_ADD: key = wxT("ADD"); break; | |
1307 | case WXK_SEPARATOR: key = wxT("SEPARATOR"); break; | |
1308 | case WXK_SUBTRACT: key = wxT("SUBTRACT"); break; | |
1309 | case WXK_DECIMAL: key = wxT("DECIMAL"); break; | |
1310 | case WXK_DIVIDE: key = wxT("DIVIDE"); break; | |
1311 | case WXK_F1: key = wxT("F1"); break; | |
1312 | case WXK_F2: key = wxT("F2"); break; | |
1313 | case WXK_F3: key = wxT("F3"); break; | |
1314 | case WXK_F4: key = wxT("F4"); break; | |
1315 | case WXK_F5: key = wxT("F5"); break; | |
1316 | case WXK_F6: key = wxT("F6"); break; | |
1317 | case WXK_F7: key = wxT("F7"); break; | |
1318 | case WXK_F8: key = wxT("F8"); break; | |
1319 | case WXK_F9: key = wxT("F9"); break; | |
1320 | case WXK_F10: key = wxT("F10"); break; | |
1321 | case WXK_F11: key = wxT("F11"); break; | |
1322 | case WXK_F12: key = wxT("F12"); break; | |
1323 | case WXK_F13: key = wxT("F13"); break; | |
1324 | case WXK_F14: key = wxT("F14"); break; | |
1325 | case WXK_F15: key = wxT("F15"); break; | |
1326 | case WXK_F16: key = wxT("F16"); break; | |
1327 | case WXK_F17: key = wxT("F17"); break; | |
1328 | case WXK_F18: key = wxT("F18"); break; | |
1329 | case WXK_F19: key = wxT("F19"); break; | |
1330 | case WXK_F20: key = wxT("F20"); break; | |
1331 | case WXK_F21: key = wxT("F21"); break; | |
1332 | case WXK_F22: key = wxT("F22"); break; | |
1333 | case WXK_F23: key = wxT("F23"); break; | |
1334 | case WXK_F24: key = wxT("F24"); break; | |
1335 | case WXK_NUMLOCK: key = wxT("NUMLOCK"); break; | |
1336 | case WXK_SCROLL: key = wxT("SCROLL"); break; | |
1337 | case WXK_PAGEUP: key = wxT("PAGEUP"); break; | |
1338 | case WXK_PAGEDOWN: key = wxT("PAGEDOWN"); break; | |
1339 | case WXK_NUMPAD_SPACE: key = wxT("NUMPAD_SPACE"); break; | |
1340 | case WXK_NUMPAD_TAB: key = wxT("NUMPAD_TAB"); break; | |
1341 | case WXK_NUMPAD_ENTER: key = wxT("NUMPAD_ENTER"); break; | |
1342 | case WXK_NUMPAD_F1: key = wxT("NUMPAD_F1"); break; | |
1343 | case WXK_NUMPAD_F2: key = wxT("NUMPAD_F2"); break; | |
1344 | case WXK_NUMPAD_F3: key = wxT("NUMPAD_F3"); break; | |
1345 | case WXK_NUMPAD_F4: key = wxT("NUMPAD_F4"); break; | |
1346 | case WXK_NUMPAD_HOME: key = wxT("NUMPAD_HOME"); break; | |
1347 | case WXK_NUMPAD_LEFT: key = wxT("NUMPAD_LEFT"); break; | |
1348 | case WXK_NUMPAD_UP: key = wxT("NUMPAD_UP"); break; | |
1349 | case WXK_NUMPAD_RIGHT: key = wxT("NUMPAD_RIGHT"); break; | |
1350 | case WXK_NUMPAD_DOWN: key = wxT("NUMPAD_DOWN"); break; | |
0c6099b7 RN |
1351 | case WXK_NUMPAD_PAGEUP: key = wxT("NUMPAD_PAGEUP"); break; |
1352 | case WXK_NUMPAD_PAGEDOWN: key = wxT("NUMPAD_PAGEDOWN"); break; | |
1353 | case WXK_NUMPAD_END: key = wxT("NUMPAD_END"); break; | |
1354 | case WXK_NUMPAD_BEGIN: key = wxT("NUMPAD_BEGIN"); break; | |
1355 | case WXK_NUMPAD_INSERT: key = wxT("NUMPAD_INSERT"); break; | |
1356 | case WXK_NUMPAD_DELETE: key = wxT("NUMPAD_DELETE"); break; | |
1357 | case WXK_NUMPAD_EQUAL: key = wxT("NUMPAD_EQUAL"); break; | |
1358 | case WXK_NUMPAD_MULTIPLY: key = wxT("NUMPAD_MULTIPLY"); break; | |
1359 | case WXK_NUMPAD_ADD: key = wxT("NUMPAD_ADD"); break; | |
1360 | case WXK_NUMPAD_SEPARATOR: key = wxT("NUMPAD_SEPARATOR"); break; | |
1361 | case WXK_NUMPAD_SUBTRACT: key = wxT("NUMPAD_SUBTRACT"); break; | |
1362 | case WXK_NUMPAD_DECIMAL: key = wxT("NUMPAD_DECIMAL"); break; | |
1363 | ||
1364 | default: | |
1365 | { | |
bee09d36 | 1366 | if ( keycode < 128 && wxIsprint((int)keycode) ) |
0c6099b7 RN |
1367 | key.Printf(wxT("'%c'"), (char)keycode); |
1368 | else if ( keycode > 0 && keycode < 27 ) | |
1369 | key.Printf(_("Ctrl-%c"), wxT('A') + keycode - 1); | |
1370 | else | |
1371 | key.Printf(wxT("unknown (%ld)"), keycode); | |
1372 | } | |
1944ad76 VZ |
1373 | } |
1374 | } | |
1375 | ||
3acd4349 | 1376 | wxLogMessage( wxT("%s event: %s (flags = %c%c%c%c)"), |
1944ad76 VZ |
1377 | name, |
1378 | key.c_str(), | |
3acd4349 VS |
1379 | event.ControlDown() ? wxT('C') : wxT('-'), |
1380 | event.AltDown() ? wxT('A') : wxT('-'), | |
1381 | event.ShiftDown() ? wxT('S') : wxT('-'), | |
1382 | event.MetaDown() ? wxT('M') : wxT('-')); | |
1944ad76 VZ |
1383 | } |
1384 | ||
1385 | void MyTreeCtrl::OnTreeKeyDown(wxTreeEvent& event) | |
1386 | { | |
3acd4349 | 1387 | LogKeyEvent(wxT("Tree key down "), event.GetKeyEvent()); |
1944ad76 VZ |
1388 | |
1389 | event.Skip(); | |
1390 | } | |
1391 | ||
5888ef1e VZ |
1392 | void MyTreeCtrl::OnBeginDrag(wxTreeEvent& event) |
1393 | { | |
1394 | // need to explicitly allow drag | |
1395 | if ( event.GetItem() != GetRootItem() ) | |
1396 | { | |
1397 | m_draggedItem = event.GetItem(); | |
1398 | ||
8f6dc819 VZ |
1399 | wxPoint clientpt = event.GetPoint(); |
1400 | wxPoint screenpt = ClientToScreen(clientpt); | |
1401 | ||
1402 | wxLogMessage(wxT("OnBeginDrag: started dragging %s at screen coords (%i,%i)"), | |
1403 | GetItemText(m_draggedItem).c_str(), | |
1404 | screenpt.x, screenpt.y); | |
5888ef1e VZ |
1405 | |
1406 | event.Allow(); | |
1407 | } | |
1408 | else | |
1409 | { | |
4693b20c | 1410 | wxLogMessage(wxT("OnBeginDrag: this item can't be dragged.")); |
5888ef1e VZ |
1411 | } |
1412 | } | |
1413 | ||
1414 | void MyTreeCtrl::OnEndDrag(wxTreeEvent& event) | |
1415 | { | |
1416 | wxTreeItemId itemSrc = m_draggedItem, | |
1417 | itemDst = event.GetItem(); | |
e97320d4 | 1418 | m_draggedItem = (wxTreeItemId)0l; |
5888ef1e VZ |
1419 | |
1420 | // where to copy the item? | |
1421 | if ( itemDst.IsOk() && !ItemHasChildren(itemDst) ) | |
1422 | { | |
1423 | // copy to the parent then | |
99006e44 | 1424 | itemDst = GetItemParent(itemDst); |
5888ef1e VZ |
1425 | } |
1426 | ||
1427 | if ( !itemDst.IsOk() ) | |
1428 | { | |
4693b20c | 1429 | wxLogMessage(wxT("OnEndDrag: can't drop here.")); |
5888ef1e VZ |
1430 | |
1431 | return; | |
1432 | } | |
1433 | ||
1434 | wxString text = GetItemText(itemSrc); | |
4693b20c | 1435 | wxLogMessage(wxT("OnEndDrag: '%s' copied to '%s'."), |
5888ef1e VZ |
1436 | text.c_str(), GetItemText(itemDst).c_str()); |
1437 | ||
1438 | // just do append here - we could also insert it just before/after the item | |
1439 | // on which it was dropped, but this requires slightly more work... we also | |
1440 | // completely ignore the client data and icon of the old item but could | |
1441 | // copy them as well. | |
1442 | // | |
1443 | // Finally, we only copy one item here but we might copy the entire tree if | |
1444 | // we were dragging a folder. | |
2c8e4738 | 1445 | int image = wxGetApp().ShowImages() ? TreeCtrlIcon_File : -1; |
4754ab16 RR |
1446 | wxTreeItemId id = AppendItem(itemDst, text, image); |
1447 | ||
1448 | if ( wxGetApp().ShowStates() ) | |
1449 | SetItemState(id, GetItemState(itemSrc)); | |
5888ef1e VZ |
1450 | } |
1451 | ||
5ea47806 VZ |
1452 | void MyTreeCtrl::OnBeginLabelEdit(wxTreeEvent& event) |
1453 | { | |
4693b20c | 1454 | wxLogMessage(wxT("OnBeginLabelEdit")); |
5ea47806 | 1455 | |
618a5e38 | 1456 | // for testing, prevent this item's label editing |
5ea47806 VZ |
1457 | wxTreeItemId itemId = event.GetItem(); |
1458 | if ( IsTestItem(itemId) ) | |
1459 | { | |
4693b20c | 1460 | wxMessageBox(wxT("You can't edit this item.")); |
5ea47806 VZ |
1461 | |
1462 | event.Veto(); | |
1463 | } | |
646a8a4d VZ |
1464 | else if ( itemId == GetRootItem() ) |
1465 | { | |
1466 | // test that it is possible to change the text of the item being edited | |
9a83f860 | 1467 | SetItemText(itemId, wxT("Editing root item")); |
646a8a4d | 1468 | } |
5ea47806 VZ |
1469 | } |
1470 | ||
1471 | void MyTreeCtrl::OnEndLabelEdit(wxTreeEvent& event) | |
1472 | { | |
4693b20c | 1473 | wxLogMessage(wxT("OnEndLabelEdit")); |
5ea47806 VZ |
1474 | |
1475 | // don't allow anything except letters in the labels | |
1476 | if ( !event.GetLabel().IsWord() ) | |
1477 | { | |
9602d7ae | 1478 | wxMessageBox(wxT("The new label should be a single word.")); |
5ea47806 VZ |
1479 | |
1480 | event.Veto(); | |
1481 | } | |
1482 | } | |
1483 | ||
3a5a2f56 | 1484 | void MyTreeCtrl::OnItemCollapsing(wxTreeEvent& event) |
457814b5 | 1485 | { |
4693b20c | 1486 | wxLogMessage(wxT("OnItemCollapsing")); |
f135ff73 | 1487 | |
5f939e78 VZ |
1488 | // for testing, prevent the user from collapsing the first child folder |
1489 | wxTreeItemId itemId = event.GetItem(); | |
5ea47806 | 1490 | if ( IsTestItem(itemId) ) |
5f939e78 | 1491 | { |
4693b20c | 1492 | wxMessageBox(wxT("You can't collapse this item.")); |
457814b5 | 1493 | |
5f939e78 VZ |
1494 | event.Veto(); |
1495 | } | |
457814b5 JS |
1496 | } |
1497 | ||
477350ce | 1498 | void MyTreeCtrl::OnItemActivated(wxTreeEvent& event) |
457814b5 | 1499 | { |
5f939e78 | 1500 | // show some info about this item |
477350ce | 1501 | wxTreeItemId itemId = event.GetItem(); |
5f939e78 | 1502 | MyTreeItemData *item = (MyTreeItemData *)GetItemData(itemId); |
457814b5 | 1503 | |
5f939e78 VZ |
1504 | if ( item != NULL ) |
1505 | { | |
1506 | item->ShowInfo(this); | |
1507 | } | |
457814b5 | 1508 | |
4693b20c | 1509 | wxLogMessage(wxT("OnItemActivated")); |
5f939e78 VZ |
1510 | } |
1511 | ||
4754ab16 RR |
1512 | void MyTreeCtrl::OnItemStateClick(wxTreeEvent& event) |
1513 | { | |
1514 | // toggle item state | |
1515 | wxTreeItemId itemId = event.GetItem(); | |
1516 | DoToggleState(itemId); | |
1517 | ||
1518 | wxLogMessage(wxT("Item \"%s\" state changed to %d"), | |
1519 | GetItemText(itemId), GetItemState(itemId)); | |
1520 | } | |
1521 | ||
ef46ef23 VZ |
1522 | void MyTreeCtrl::OnItemMenu(wxTreeEvent& event) |
1523 | { | |
1524 | wxTreeItemId itemId = event.GetItem(); | |
1525 | MyTreeItemData *item = itemId.IsOk() ? (MyTreeItemData *)GetItemData(itemId) | |
1526 | : NULL; | |
8f6dc819 VZ |
1527 | wxPoint clientpt = event.GetPoint(); |
1528 | wxPoint screenpt = ClientToScreen(clientpt); | |
ef46ef23 | 1529 | |
4754ab16 | 1530 | wxLogMessage(wxT("OnItemMenu for item \"%s\" at screen coords (%i, %i)"), |
9a83f860 | 1531 | item ? item->GetDesc() : wxT(""), screenpt.x, screenpt.y); |
ef46ef23 | 1532 | |
8f6dc819 | 1533 | ShowMenu(itemId, clientpt); |
ef46ef23 VZ |
1534 | event.Skip(); |
1535 | } | |
1536 | ||
ae8c4b33 | 1537 | void MyTreeCtrl::OnContextMenu(wxContextMenuEvent& event) |
e3d0aa77 VZ |
1538 | { |
1539 | wxPoint pt = event.GetPosition(); | |
925e9792 | 1540 | |
8f6dc819 | 1541 | wxLogMessage(wxT("OnContextMenu at screen coords (%i, %i)"), pt.x, pt.y); |
a10c8e43 VZ |
1542 | |
1543 | event.Skip(); | |
e3d0aa77 VZ |
1544 | } |
1545 | ||
1546 | void MyTreeCtrl::ShowMenu(wxTreeItemId id, const wxPoint& pt) | |
1547 | { | |
1548 | wxString title; | |
1549 | if ( id.IsOk() ) | |
1550 | { | |
3acd4349 | 1551 | title << wxT("Menu for ") << GetItemText(id); |
e3d0aa77 VZ |
1552 | } |
1553 | else | |
1554 | { | |
3acd4349 | 1555 | title = wxT("Menu for no particular item"); |
e3d0aa77 VZ |
1556 | } |
1557 | ||
801bb685 | 1558 | #if wxUSE_MENUS |
e3d0aa77 | 1559 | wxMenu menu(title); |
3acd4349 | 1560 | menu.Append(TreeTest_About, wxT("&About...")); |
e525c4ff VZ |
1561 | menu.AppendSeparator(); |
1562 | menu.Append(TreeTest_Highlight, wxT("&Highlight item")); | |
3acd4349 | 1563 | menu.Append(TreeTest_Dump, wxT("&Dump")); |
e3d0aa77 VZ |
1564 | |
1565 | PopupMenu(&menu, pt); | |
801bb685 | 1566 | #endif // wxUSE_MENUS |
e3d0aa77 VZ |
1567 | } |
1568 | ||
5fd60e08 VZ |
1569 | void MyTreeCtrl::OnItemRClick(wxTreeEvent& event) |
1570 | { | |
1571 | wxTreeItemId itemId = event.GetItem(); | |
1572 | MyTreeItemData *item = itemId.IsOk() ? (MyTreeItemData *)GetItemData(itemId) | |
1573 | : NULL; | |
1574 | ||
1575 | wxLogMessage(wxT("Item \"%s\" right clicked"), item ? item->GetDesc() | |
9a83f860 | 1576 | : wxT("")); |
5fd60e08 VZ |
1577 | |
1578 | event.Skip(); | |
1579 | } | |
1580 | ||
c545c230 VZ |
1581 | void MyTreeCtrl::OnRMouseDown(wxMouseEvent& event) |
1582 | { | |
1583 | wxLogMessage(wxT("Right mouse button down")); | |
1584 | ||
1585 | event.Skip(); | |
1586 | } | |
1587 | ||
1588 | void MyTreeCtrl::OnRMouseUp(wxMouseEvent& event) | |
1589 | { | |
1590 | wxLogMessage(wxT("Right mouse button up")); | |
1591 | ||
1592 | event.Skip(); | |
1593 | } | |
1594 | ||
5f939e78 VZ |
1595 | void MyTreeCtrl::OnRMouseDClick(wxMouseEvent& event) |
1596 | { | |
1597 | wxTreeItemId id = HitTest(event.GetPosition()); | |
1598 | if ( !id ) | |
43b2d5e7 | 1599 | { |
4693b20c | 1600 | wxLogMessage(wxT("No item under mouse")); |
43b2d5e7 | 1601 | } |
5f939e78 VZ |
1602 | else |
1603 | { | |
1604 | MyTreeItemData *item = (MyTreeItemData *)GetItemData(id); | |
1605 | if ( item ) | |
43b2d5e7 | 1606 | { |
4693b20c | 1607 | wxLogMessage(wxT("Item '%s' under mouse"), item->GetDesc()); |
43b2d5e7 | 1608 | } |
5f939e78 | 1609 | } |
c545c230 VZ |
1610 | |
1611 | event.Skip(); | |
457814b5 JS |
1612 | } |
1613 | ||
4693b20c | 1614 | static inline const wxChar *Bool2String(bool b) |
457814b5 | 1615 | { |
4693b20c | 1616 | return b ? wxT("") : wxT("not "); |
457814b5 JS |
1617 | } |
1618 | ||
9769e589 | 1619 | void MyTreeItemData::ShowInfo(wxTreeCtrl *tree) |
457814b5 | 1620 | { |
4693b20c MB |
1621 | wxLogMessage(wxT("Item '%s': %sselected, %sexpanded, %sbold,\n") |
1622 | wxT("%u children (%u immediately under this item)."), | |
5f939e78 VZ |
1623 | m_desc.c_str(), |
1624 | Bool2String(tree->IsSelected(GetId())), | |
1625 | Bool2String(tree->IsExpanded(GetId())), | |
1626 | Bool2String(tree->IsBold(GetId())), | |
b143cf70 PC |
1627 | unsigned(tree->GetChildrenCount(GetId())), |
1628 | unsigned(tree->GetChildrenCount(GetId(), false))); | |
457814b5 | 1629 | } |