]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treetest.cpp | |
3 | // Purpose: wxTreeCtrl sample | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
3a5a2f56 | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifdef __GNUG__ | |
3a5a2f56 VZ |
13 | #pragma implementation |
14 | #pragma interface | |
457814b5 JS |
15 | #endif |
16 | ||
17 | // For compilers that support precompilation, includes "wx/wx.h". | |
18 | #include "wx/wxprec.h" | |
19 | ||
20 | #ifdef __BORLANDC__ | |
3a5a2f56 | 21 | #pragma hdrstop |
457814b5 JS |
22 | #endif |
23 | ||
24 | #ifndef WX_PRECOMP | |
3a5a2f56 | 25 | #include "wx/wx.h" |
457814b5 JS |
26 | #endif |
27 | ||
3a5a2f56 | 28 | // under Windows the icons are in the .rc file |
c89a6106 VZ |
29 | #ifndef __WXMSW__ |
30 | #include "icon1.xpm" | |
31 | #include "icon2.xpm" | |
32 | #include "mondrian.xpm" | |
47908e25 RR |
33 | #endif |
34 | ||
3a5a2f56 VZ |
35 | #include "wx/log.h" |
36 | ||
37 | #include "wx/imaglist.h" | |
457814b5 JS |
38 | #include "wx/treectrl.h" |
39 | ||
40 | #include "treetest.h" | |
41 | ||
e1ee62bd VZ |
42 | // verify that the item is ok and insult the user if it is not |
43 | #define CHECK_ITEM( item ) if ( !item.IsOk() ) { \ | |
44 | wxMessageBox("Please select some item first!", \ | |
45 | "Tree sample error", \ | |
46 | wxOK | wxICON_EXCLAMATION, \ | |
47 | this); \ | |
48 | return; \ | |
49 | } | |
50 | ||
457814b5 | 51 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
5a43154b VZ |
52 | EVT_MENU(TreeTest_Quit, MyFrame::OnQuit) |
53 | EVT_MENU(TreeTest_About, MyFrame::OnAbout) | |
4832f7c0 | 54 | EVT_MENU(TreeTest_Dump, MyFrame::OnDump) |
e1ee62bd VZ |
55 | EVT_MENU(TreeTest_Rename, MyFrame::OnRename) |
56 | EVT_MENU(TreeTest_Sort, MyFrame::OnSort) | |
57 | EVT_MENU(TreeTest_SortRev, MyFrame::OnSortRev) | |
add28c55 VZ |
58 | EVT_MENU(TreeTest_Bold, MyFrame::OnSetBold) |
59 | EVT_MENU(TreeTest_UnBold, MyFrame::OnClearBold) | |
ff5bf259 | 60 | EVT_MENU(TreeTest_Delete, MyFrame::OnDelete) |
372edb9d | 61 | EVT_MENU(TreeTest_DeleteChildren, MyFrame::OnDeleteChildren) |
ff5bf259 VZ |
62 | EVT_MENU(TreeTest_DeleteAll, MyFrame::OnDeleteAll) |
63 | EVT_MENU(TreeTest_Recreate, MyFrame::OnRecreate) | |
457814b5 JS |
64 | END_EVENT_TABLE() |
65 | ||
66 | BEGIN_EVENT_TABLE(MyTreeCtrl, wxTreeCtrl) | |
5a43154b VZ |
67 | EVT_TREE_BEGIN_DRAG(TreeTest_Ctrl, MyTreeCtrl::OnBeginDrag) |
68 | EVT_TREE_BEGIN_RDRAG(TreeTest_Ctrl, MyTreeCtrl::OnBeginRDrag) | |
69 | EVT_TREE_BEGIN_LABEL_EDIT(TreeTest_Ctrl, MyTreeCtrl::OnBeginLabelEdit) | |
70 | EVT_TREE_END_LABEL_EDIT(TreeTest_Ctrl, MyTreeCtrl::OnEndLabelEdit) | |
71 | EVT_TREE_DELETE_ITEM(TreeTest_Ctrl, MyTreeCtrl::OnDeleteItem) | |
72 | EVT_TREE_GET_INFO(TreeTest_Ctrl, MyTreeCtrl::OnGetInfo) | |
73 | EVT_TREE_SET_INFO(TreeTest_Ctrl, MyTreeCtrl::OnSetInfo) | |
74 | EVT_TREE_ITEM_EXPANDED(TreeTest_Ctrl, MyTreeCtrl::OnItemExpanded) | |
75 | EVT_TREE_ITEM_EXPANDING(TreeTest_Ctrl, MyTreeCtrl::OnItemExpanding) | |
76 | EVT_TREE_ITEM_COLLAPSED(TreeTest_Ctrl, MyTreeCtrl::OnItemCollapsed) | |
77 | EVT_TREE_ITEM_COLLAPSING(TreeTest_Ctrl, MyTreeCtrl::OnItemCollapsing) | |
78 | EVT_TREE_SEL_CHANGED(TreeTest_Ctrl, MyTreeCtrl::OnSelChanged) | |
79 | EVT_TREE_SEL_CHANGING(TreeTest_Ctrl, MyTreeCtrl::OnSelChanging) | |
6daa0637 | 80 | EVT_TREE_KEY_DOWN(TreeTest_Ctrl, MyTreeCtrl::OnTreeKeyDown) |
435fe83e | 81 | EVT_TREE_ITEM_ACTIVATED(TreeTest_Ctrl, MyTreeCtrl::OnItemActivated) |
457814b5 JS |
82 | END_EVENT_TABLE() |
83 | ||
84 | IMPLEMENT_APP(MyApp) | |
85 | ||
c89a6106 | 86 | bool MyApp::OnInit() |
457814b5 JS |
87 | { |
88 | // Create the main frame window | |
3a5a2f56 | 89 | MyFrame *frame = new MyFrame("wxTreeCtrl Test", 50, 50, 450, 340); |
457814b5 | 90 | |
3a5a2f56 VZ |
91 | // Show the frame |
92 | frame->Show(TRUE); | |
93 | SetTopWindow(frame); | |
457814b5 | 94 | |
3a5a2f56 VZ |
95 | return TRUE; |
96 | } | |
457814b5 | 97 | |
457814b5 | 98 | |
3a5a2f56 VZ |
99 | // My frame constructor |
100 | MyFrame::MyFrame(const wxString& title, int x, int y, int w, int h) | |
101 | : wxFrame((wxFrame *)NULL, -1, title, wxPoint(x, y), wxSize(w, h)) | |
102 | { | |
103 | // This reduces flicker effects - even better would be to define | |
104 | // OnEraseBackground to do nothing. When the tree control's scrollbars are | |
105 | // show or hidden, the frame is sent a background erase event. | |
106 | SetBackgroundColour(wxColour(255, 255, 255)); | |
107 | ||
108 | // Give it an icon | |
109 | SetIcon(wxICON(mondrian)); | |
457814b5 JS |
110 | |
111 | // Make a menubar | |
e1ee62bd VZ |
112 | wxMenu *file_menu = new wxMenu, |
113 | *tree_menu = new wxMenu; | |
457814b5 | 114 | |
5a43154b | 115 | file_menu->Append(TreeTest_About, "&About..."); |
4832f7c0 | 116 | file_menu->AppendSeparator(); |
5a43154b | 117 | file_menu->Append(TreeTest_Quit, "E&xit"); |
4832f7c0 | 118 | |
e1ee62bd VZ |
119 | tree_menu->Append(TreeTest_Dump, "D&ump tree items"); |
120 | tree_menu->Append(TreeTest_Recreate, "&Recreate the tree"); | |
121 | tree_menu->AppendSeparator(); | |
122 | tree_menu->Append(TreeTest_Delete, "&Delete this item"); | |
123 | tree_menu->Append(TreeTest_DeleteChildren, "Delete &children"); | |
124 | tree_menu->Append(TreeTest_DeleteAll, "Delete &all items"); | |
125 | tree_menu->AppendSeparator(); | |
126 | tree_menu->Append(TreeTest_Sort, "Sort children of current item"); | |
127 | tree_menu->Append(TreeTest_SortRev, "Sort in reversed order"); | |
128 | tree_menu->Append(TreeTest_Rename, "Rename item..."); | |
129 | tree_menu->AppendSeparator(); | |
130 | tree_menu->Append(TreeTest_Bold, "Make item &bold"); | |
131 | tree_menu->Append(TreeTest_UnBold, "Make item ¬ bold"); | |
132 | ||
457814b5 JS |
133 | wxMenuBar *menu_bar = new wxMenuBar; |
134 | menu_bar->Append(file_menu, "&File"); | |
e1ee62bd | 135 | menu_bar->Append(tree_menu, "&Tree"); |
3a5a2f56 | 136 | SetMenuBar(menu_bar); |
457814b5 | 137 | |
5a43154b | 138 | m_treeCtrl = new MyTreeCtrl(this, TreeTest_Ctrl, |
3a5a2f56 VZ |
139 | wxDefaultPosition, wxDefaultSize, |
140 | wxTR_HAS_BUTTONS | wxSUNKEN_BORDER); | |
141 | wxTextCtrl *textCtrl = new wxTextCtrl(this, -1, "", | |
142 | wxDefaultPosition, wxDefaultSize, | |
143 | wxTE_MULTILINE | wxSUNKEN_BORDER); | |
457814b5 JS |
144 | |
145 | wxLayoutConstraints *c = new wxLayoutConstraints; | |
3a5a2f56 VZ |
146 | c->top.SameAs(this, wxTop); |
147 | c->left.SameAs(this, wxLeft); | |
148 | c->right.SameAs(this, wxRight); | |
149 | c->height.PercentOf(this, wxHeight, 66); | |
150 | m_treeCtrl->SetConstraints(c); | |
457814b5 JS |
151 | |
152 | c = new wxLayoutConstraints; | |
3a5a2f56 VZ |
153 | c->top.Below(m_treeCtrl); |
154 | c->left.SameAs(this, wxLeft); | |
155 | c->right.SameAs(this, wxRight); | |
156 | c->bottom.SameAs(this, wxBottom); | |
157 | textCtrl->SetConstraints(c); | |
158 | SetAutoLayout(TRUE); | |
159 | ||
160 | // create a status bar with 3 panes | |
161 | CreateStatusBar(3); | |
162 | SetStatusText("", 0); | |
163 | ||
a367b9b3 JS |
164 | #ifdef __WXMOTIF__ |
165 | // For some reason, we get a memcpy crash in wxLogStream::DoLogStream | |
166 | // on gcc/wxMotif, if we use wxLogTextCtl. Maybe it's just gcc? | |
167 | delete wxLog::SetActiveTarget(new wxLogStderr); | |
168 | #else | |
3a5a2f56 VZ |
169 | // set our text control as the log target |
170 | wxLogTextCtrl *logWindow = new wxLogTextCtrl(textCtrl); | |
171 | delete wxLog::SetActiveTarget(logWindow); | |
a367b9b3 | 172 | #endif |
457814b5 JS |
173 | } |
174 | ||
c89a6106 | 175 | MyFrame::~MyFrame() |
457814b5 | 176 | { |
3a5a2f56 | 177 | delete wxLog::SetActiveTarget(NULL); |
457814b5 JS |
178 | } |
179 | ||
3a5a2f56 | 180 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) |
457814b5 JS |
181 | { |
182 | Close(TRUE); | |
183 | } | |
184 | ||
3a5a2f56 | 185 | void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event)) |
457814b5 | 186 | { |
e1ee62bd VZ |
187 | wxMessageBox("Tree test sample\n" |
188 | "Julian Smart (c) 1997,\n" | |
189 | "Vadim Zeitlin (c) 1998", | |
190 | "About tree test", | |
191 | wxOK | wxICON_INFORMATION, this); | |
192 | } | |
193 | ||
194 | void MyFrame::OnRename(wxCommandEvent& WXUNUSED(event)) | |
195 | { | |
196 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
197 | ||
198 | CHECK_ITEM( item ); | |
199 | ||
200 | static wxString s_text; | |
201 | s_text = wxGetTextFromUser("New name: ", "Tree sample question", | |
202 | s_text, this); | |
203 | if ( !s_text.IsEmpty() ) | |
204 | { | |
205 | m_treeCtrl->SetItemText(item, s_text); | |
206 | } | |
207 | } | |
208 | ||
209 | void MyFrame::DoSort(bool reverse) | |
210 | { | |
211 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
212 | ||
213 | CHECK_ITEM( item ); | |
457814b5 | 214 | |
e1ee62bd | 215 | m_treeCtrl->DoSortChildren(item, reverse); |
457814b5 JS |
216 | } |
217 | ||
4832f7c0 VZ |
218 | void MyFrame::OnDump(wxCommandEvent& WXUNUSED(event)) |
219 | { | |
ff5bf259 | 220 | wxTreeItemId root = m_treeCtrl->GetSelection(); |
e1ee62bd VZ |
221 | |
222 | CHECK_ITEM( root ); | |
223 | ||
4832f7c0 VZ |
224 | m_treeCtrl->GetItemsRecursively(root, -1); |
225 | } | |
226 | ||
add28c55 VZ |
227 | void MyFrame::DoSetBold(bool bold) |
228 | { | |
e1ee62bd VZ |
229 | wxTreeItemId item = m_treeCtrl->GetSelection(); |
230 | ||
231 | CHECK_ITEM( item ); | |
232 | ||
233 | m_treeCtrl->SetItemBold(item, bold); | |
add28c55 VZ |
234 | } |
235 | ||
ff5bf259 VZ |
236 | void MyFrame::OnDelete(wxCommandEvent& WXUNUSED(event)) |
237 | { | |
238 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
e1ee62bd VZ |
239 | |
240 | CHECK_ITEM( item ); | |
241 | ||
ff5bf259 VZ |
242 | m_treeCtrl->Delete(item); |
243 | } | |
244 | ||
372edb9d VZ |
245 | void MyFrame::OnDeleteChildren(wxCommandEvent& WXUNUSED(event)) |
246 | { | |
247 | wxTreeItemId item = m_treeCtrl->GetSelection(); | |
e1ee62bd VZ |
248 | |
249 | CHECK_ITEM( item ); | |
250 | ||
372edb9d VZ |
251 | m_treeCtrl->DeleteChildren(item); |
252 | } | |
253 | ||
ff5bf259 VZ |
254 | void MyFrame::OnDeleteAll(wxCommandEvent& WXUNUSED(event)) |
255 | { | |
256 | m_treeCtrl->DeleteAllItems(); | |
257 | } | |
258 | ||
259 | void MyFrame::OnRecreate(wxCommandEvent& event) | |
260 | { | |
261 | OnDeleteAll(event); | |
262 | m_treeCtrl->AddTestItemsToTree(3, 2); | |
263 | } | |
264 | ||
3a5a2f56 | 265 | // MyTreeCtrl implementation |
23fd5130 VZ |
266 | IMPLEMENT_DYNAMIC_CLASS(MyTreeCtrl, wxTreeCtrl) |
267 | ||
3a5a2f56 VZ |
268 | MyTreeCtrl::MyTreeCtrl(wxWindow *parent, const wxWindowID id, |
269 | const wxPoint& pos, const wxSize& size, | |
270 | long style) | |
271 | : wxTreeCtrl(parent, id, pos, size, style) | |
457814b5 | 272 | { |
e1ee62bd VZ |
273 | m_reverseSort = FALSE; |
274 | ||
3a5a2f56 VZ |
275 | // Make an image list containing small icons |
276 | m_imageListNormal = new wxImageList(16, 16, TRUE); | |
457814b5 | 277 | |
3a5a2f56 | 278 | // should correspond to TreeCtrlIcon_xxx enum |
f60d0f94 JS |
279 | #if defined(__WXMSW__) && defined(__WIN16__) |
280 | // This is required in 16-bit Windows mode only because we can't load a specific (16x16) | |
0a240683 | 281 | // icon image, so it comes out stretched |
f60d0f94 JS |
282 | m_imageListNormal->Add(wxBitmap("bitmap1", wxBITMAP_TYPE_BMP_RESOURCE)); |
283 | m_imageListNormal->Add(wxBitmap("bitmap2", wxBITMAP_TYPE_BMP_RESOURCE)); | |
284 | #else | |
df875e59 | 285 | m_imageListNormal->Add(wxICON(icon1)); |
3db7be80 | 286 | m_imageListNormal->Add(wxICON(icon2)); |
f60d0f94 | 287 | #endif |
457814b5 | 288 | |
3a5a2f56 | 289 | SetImageList(m_imageListNormal); |
457814b5 | 290 | |
3a5a2f56 | 291 | // Add some items to the tree |
4832f7c0 | 292 | AddTestItemsToTree(3, 2); |
457814b5 JS |
293 | } |
294 | ||
3a5a2f56 | 295 | MyTreeCtrl::~MyTreeCtrl() |
457814b5 | 296 | { |
3a5a2f56 | 297 | delete m_imageListNormal; |
457814b5 JS |
298 | } |
299 | ||
e1ee62bd VZ |
300 | int MyTreeCtrl::OnCompareItems(const wxTreeItemId& item1, |
301 | const wxTreeItemId& item2) | |
302 | { | |
303 | if ( m_reverseSort ) | |
304 | { | |
305 | // just exchange 1st and 2nd items | |
306 | return wxTreeCtrl::OnCompareItems(item2, item1); | |
307 | } | |
308 | else | |
309 | { | |
310 | return wxTreeCtrl::OnCompareItems(item1, item2); | |
311 | } | |
312 | } | |
313 | ||
3a5a2f56 VZ |
314 | void MyTreeCtrl::AddItemsRecursively(const wxTreeItemId& idParent, |
315 | size_t numChildren, | |
4832f7c0 VZ |
316 | size_t depth, |
317 | size_t folder) | |
457814b5 | 318 | { |
3a5a2f56 VZ |
319 | if ( depth > 0 ) |
320 | { | |
321 | wxString str; | |
322 | for ( size_t n = 0; n < numChildren; n++ ) | |
323 | { | |
324 | // at depth 1 elements won't have any more children | |
4832f7c0 VZ |
325 | if (depth == 1) |
326 | str.Printf("%s child %d.%d", "File", folder, n + 1); | |
327 | else | |
328 | str.Printf("%s child %d","Folder", n + 1); | |
329 | ||
3a5a2f56 VZ |
330 | int image = depth == 1 ? TreeCtrlIcon_File : TreeCtrlIcon_Folder; |
331 | wxTreeItemId id = AppendItem(idParent, str, image, image, | |
332 | new MyTreeItemData(str)); | |
add28c55 | 333 | AddItemsRecursively(id, numChildren, depth - 1, n + 1); |
3a5a2f56 VZ |
334 | } |
335 | } | |
336 | //else: done! | |
457814b5 JS |
337 | } |
338 | ||
3a5a2f56 VZ |
339 | void MyTreeCtrl::AddTestItemsToTree(size_t numChildren, |
340 | size_t depth) | |
457814b5 | 341 | { |
3efb01df | 342 | wxTreeItemId rootId = AddRoot("Root", |
3a5a2f56 VZ |
343 | TreeCtrlIcon_Folder, TreeCtrlIcon_Folder, |
344 | new MyTreeItemData("Root item")); | |
457814b5 | 345 | |
add28c55 | 346 | AddItemsRecursively(rootId, numChildren, depth, 0); |
4832f7c0 VZ |
347 | } |
348 | ||
349 | void MyTreeCtrl::GetItemsRecursively(const wxTreeItemId& idParent, long cookie) | |
350 | { | |
351 | wxTreeItemId id; | |
352 | ||
353 | if( cookie == -1 ) | |
354 | id = GetFirstChild(idParent, cookie); | |
355 | else | |
356 | id = GetNextChild(idParent, cookie); | |
357 | ||
358 | if(id <= 0) | |
359 | return; | |
360 | ||
361 | wxString text=GetItemText(id); | |
362 | wxLogMessage(text); | |
363 | ||
364 | if (ItemHasChildren(id)) | |
365 | GetItemsRecursively(id,-1); | |
366 | ||
367 | GetItemsRecursively(idParent, cookie); | |
457814b5 JS |
368 | } |
369 | ||
4832f7c0 | 370 | |
3a5a2f56 VZ |
371 | // avoid repetition |
372 | #define TREE_EVENT_HANDLER(name) \ | |
373 | void MyTreeCtrl::name(wxTreeEvent& WXUNUSED(event)) \ | |
374 | { \ | |
375 | wxLogMessage(#name); \ | |
376 | } | |
457814b5 | 377 | |
3a5a2f56 VZ |
378 | TREE_EVENT_HANDLER(OnBeginDrag) |
379 | TREE_EVENT_HANDLER(OnBeginRDrag) | |
380 | TREE_EVENT_HANDLER(OnBeginLabelEdit) | |
381 | TREE_EVENT_HANDLER(OnEndLabelEdit) | |
382 | TREE_EVENT_HANDLER(OnDeleteItem) | |
383 | TREE_EVENT_HANDLER(OnGetInfo) | |
384 | TREE_EVENT_HANDLER(OnSetInfo) | |
385 | TREE_EVENT_HANDLER(OnItemExpanded) | |
386 | TREE_EVENT_HANDLER(OnItemExpanding) | |
387 | TREE_EVENT_HANDLER(OnItemCollapsed) | |
388 | TREE_EVENT_HANDLER(OnSelChanged) | |
389 | TREE_EVENT_HANDLER(OnSelChanging) | |
390 | ||
391 | #undef TREE_EVENT_HANDLER | |
392 | ||
393 | void MyTreeCtrl::OnItemCollapsing(wxTreeEvent& event) | |
457814b5 | 394 | { |
f135ff73 VZ |
395 | wxLogMessage("OnItemCollapsing"); |
396 | ||
3a5a2f56 VZ |
397 | // for testing, prevent the user from collapsing the root item |
398 | wxTreeItemId itemId = event.GetItem(); | |
399 | if ( !GetParent(itemId).IsOk() ) | |
400 | { | |
f135ff73 | 401 | wxMessageBox("You can't collapse the root item."); |
457814b5 | 402 | |
3a5a2f56 VZ |
403 | event.Veto(); |
404 | } | |
457814b5 JS |
405 | } |
406 | ||
6daa0637 | 407 | void MyTreeCtrl::OnTreeKeyDown(wxTreeEvent&WXUNUSED(event)) |
435fe83e RR |
408 | { |
409 | wxLogMessage("OnTreeKeyDown"); | |
410 | } | |
411 | ||
412 | void MyTreeCtrl::OnItemActivated(wxTreeEvent&WXUNUSED(event)) | |
457814b5 | 413 | { |
3a5a2f56 VZ |
414 | // show some info about this item |
415 | wxTreeItemId itemId = GetSelection(); | |
416 | MyTreeItemData *item = (MyTreeItemData *)GetItemData(itemId); | |
457814b5 | 417 | |
3a5a2f56 VZ |
418 | if ( item != NULL ) |
419 | { | |
420 | item->ShowInfo(this); | |
421 | } | |
457814b5 | 422 | |
435fe83e | 423 | wxLogMessage("OnItemActivated"); |
457814b5 JS |
424 | } |
425 | ||
3a5a2f56 | 426 | static inline const char *Bool2String(bool b) |
457814b5 | 427 | { |
3a5a2f56 | 428 | return b ? "" : "not "; |
457814b5 JS |
429 | } |
430 | ||
9769e589 | 431 | void MyTreeItemData::ShowInfo(wxTreeCtrl *tree) |
457814b5 | 432 | { |
add28c55 | 433 | wxLogMessage("Item '%s': %sselected, %sexpanded, %sbold,\n" |
4832f7c0 | 434 | "%u children (%u immediately under this item).", |
3a5a2f56 | 435 | m_desc.c_str(), |
f135ff73 | 436 | Bool2String(tree->IsSelected(GetId())), |
4832f7c0 | 437 | Bool2String(tree->IsExpanded(GetId())), |
add28c55 | 438 | Bool2String(tree->IsBold(GetId())), |
4832f7c0 VZ |
439 | tree->GetChildrenCount(GetId()), |
440 | tree->GetChildrenCount(GetId(), FALSE)); | |
457814b5 | 441 | } |