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