- // This reduces flicker effects - even better would be to define
- // OnEraseBackground to do nothing. When the tree control's scrollbars are
- // show or hidden, the frame is sent a background erase event.
- SetBackgroundColour(wxColour(255, 255, 255));
-
- // Give it an icon
- SetIcon(wxICON(mondrian));
-
- // Make a menubar
- wxMenu *file_menu = new wxMenu,
- *tree_menu = new wxMenu;
-
- file_menu->Append(TreeTest_About, "&About...");
- file_menu->AppendSeparator();
- file_menu->Append(TreeTest_Quit, "E&xit");
-
- tree_menu->Append(TreeTest_Dump, "D&ump tree items");
- tree_menu->Append(TreeTest_Recreate, "&Recreate the tree");
- tree_menu->Append(TreeTest_CollapseAndReset, "C&ollapse and reset");
- tree_menu->AppendSeparator();
- tree_menu->Append(TreeTest_Delete, "&Delete this item");
- tree_menu->Append(TreeTest_DeleteChildren, "Delete &children");
- tree_menu->Append(TreeTest_DeleteAll, "Delete &all items");
- tree_menu->AppendSeparator();
- tree_menu->Append(TreeTest_Sort, "Sort children of current item");
- tree_menu->Append(TreeTest_SortRev, "Sort in reversed order");
- tree_menu->Append(TreeTest_Rename, "Rename item...");
- tree_menu->AppendSeparator();
- tree_menu->Append(TreeTest_Bold, "Make item &bold");
- tree_menu->Append(TreeTest_UnBold, "Make item ¬ bold");
- tree_menu->AppendSeparator();
- tree_menu->Append(TreeTest_EnsureVisible, "Make the last item &visible");
-
- wxMenuBar *menu_bar = new wxMenuBar;
- menu_bar->Append(file_menu, "&File");
- menu_bar->Append(tree_menu, "&Tree");
- SetMenuBar(menu_bar);
-
- m_treeCtrl = new MyTreeCtrl(this, TreeTest_Ctrl,
- wxDefaultPosition, wxDefaultSize,
- wxTR_HAS_BUTTONS | wxSUNKEN_BORDER);
- wxTextCtrl *textCtrl = new wxTextCtrl(this, -1, "",
- wxDefaultPosition, wxDefaultSize,
- wxTE_MULTILINE | wxSUNKEN_BORDER);
-
- wxLayoutConstraints *c = new wxLayoutConstraints;
- c->top.SameAs(this, wxTop);
- c->left.SameAs(this, wxLeft);
- c->right.SameAs(this, wxRight);
- c->height.PercentOf(this, wxHeight, 66);
- m_treeCtrl->SetConstraints(c);
-
- c = new wxLayoutConstraints;
- c->top.Below(m_treeCtrl);
- c->left.SameAs(this, wxLeft);
- c->right.SameAs(this, wxRight);
- c->bottom.SameAs(this, wxBottom);
- textCtrl->SetConstraints(c);
- SetAutoLayout(TRUE);
-
- // create a status bar with 3 panes
- CreateStatusBar(3);
- SetStatusText("", 0);
+ // This reduces flicker effects - even better would be to define
+ // OnEraseBackground to do nothing. When the tree control's scrollbars are
+ // show or hidden, the frame is sent a background erase event.
+ SetBackgroundColour(wxColour(255, 255, 255));
+
+ // Give it an icon
+ SetIcon(wxICON(mondrian));
+
+ // Make a menubar
+ wxMenu *file_menu = new wxMenu,
+ *tree_menu = new wxMenu,
+ *item_menu = new wxMenu;
+
+ file_menu->Append(TreeTest_About, "&About...");
+ file_menu->AppendSeparator();
+ file_menu->Append(TreeTest_Quit, "E&xit");
+
+ tree_menu->Append(TreeTest_Recreate, "&Recreate the tree");
+ tree_menu->Append(TreeTest_CollapseAndReset, "C&ollapse and reset");
+ tree_menu->AppendSeparator();
+ tree_menu->Append(TreeTest_AddItem, "Append a &new item");
+ tree_menu->Append(TreeTest_Delete, "&Delete this item");
+ tree_menu->Append(TreeTest_DeleteChildren, "Delete &children");
+ tree_menu->Append(TreeTest_DeleteAll, "Delete &all items");
+ tree_menu->AppendSeparator();
+ tree_menu->Append(TreeTest_Sort, "Sort children of current item");
+ tree_menu->Append(TreeTest_SortRev, "Sort in reversed order");
+ tree_menu->AppendSeparator();
+ tree_menu->Append(TreeTest_EnsureVisible, "Make the last item &visible");
+
+ item_menu->Append(TreeTest_Dump, "&Dump item children");
+ item_menu->AppendSeparator();
+ item_menu->Append(TreeTest_Rename, "&Rename item...");
+ item_menu->AppendSeparator();
+ item_menu->Append(TreeTest_Bold, "Make item &bold");
+ item_menu->Append(TreeTest_UnBold, "Make item ¬ bold");
+
+ wxMenuBar *menu_bar = new wxMenuBar;
+ menu_bar->Append(file_menu, "&File");
+ menu_bar->Append(tree_menu, "&Tree");
+ menu_bar->Append(item_menu, "&Item");
+ SetMenuBar(menu_bar);
+
+ m_treeCtrl = new MyTreeCtrl(this, TreeTest_Ctrl,
+ wxDefaultPosition, wxDefaultSize,
+ wxTR_HAS_BUTTONS | wxSUNKEN_BORDER);
+ wxTextCtrl *textCtrl = new wxTextCtrl(this, -1, "",
+ wxDefaultPosition, wxDefaultSize,
+ wxTE_MULTILINE | wxSUNKEN_BORDER);
+
+ wxLayoutConstraints *c = new wxLayoutConstraints;
+ c->top.SameAs(this, wxTop);
+ c->left.SameAs(this, wxLeft);
+ c->right.SameAs(this, wxRight);
+ c->height.PercentOf(this, wxHeight, 66);
+ m_treeCtrl->SetConstraints(c);
+
+ c = new wxLayoutConstraints;
+ c->top.Below(m_treeCtrl);
+ c->left.SameAs(this, wxLeft);
+ c->right.SameAs(this, wxRight);
+ c->bottom.SameAs(this, wxBottom);
+ textCtrl->SetConstraints(c);
+ SetAutoLayout(TRUE);
+
+ // create a status bar with 3 panes
+ CreateStatusBar(3);
+ SetStatusText("", 0);