]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: treetest.h | |
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 | |
5a43154b | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | // Define a new application type | |
5a43154b VZ |
13 | class MyApp : public wxApp |
14 | { | |
15 | public: | |
5f939e78 | 16 | bool OnInit(); |
5a43154b | 17 | }; |
457814b5 | 18 | |
5a43154b VZ |
19 | class MyTreeItemData : public wxTreeItemData |
20 | { | |
21 | public: | |
5f939e78 | 22 | MyTreeItemData(const wxString& desc) : m_desc(desc) { } |
5a43154b | 23 | |
5f939e78 VZ |
24 | void ShowInfo(wxTreeCtrl *tree); |
25 | const char *GetDesc() const { return m_desc.c_str(); } | |
5a43154b VZ |
26 | |
27 | private: | |
5f939e78 | 28 | wxString m_desc; |
457814b5 JS |
29 | }; |
30 | ||
5a43154b | 31 | class MyTreeCtrl : public wxTreeCtrl |
457814b5 JS |
32 | { |
33 | public: | |
5f939e78 VZ |
34 | enum |
35 | { | |
36 | TreeCtrlIcon_File, | |
37 | TreeCtrlIcon_Folder | |
38 | }; | |
39 | ||
40 | MyTreeCtrl() { } | |
41 | MyTreeCtrl(wxWindow *parent, const wxWindowID id, | |
42 | const wxPoint& pos, const wxSize& size, | |
43 | long style); | |
44 | virtual ~MyTreeCtrl(); | |
45 | ||
46 | void OnBeginDrag(wxTreeEvent& event); | |
47 | void OnBeginRDrag(wxTreeEvent& event); | |
48 | void OnBeginLabelEdit(wxTreeEvent& event); | |
49 | void OnEndLabelEdit(wxTreeEvent& event); | |
50 | void OnDeleteItem(wxTreeEvent& event); | |
51 | void OnGetInfo(wxTreeEvent& event); | |
52 | void OnSetInfo(wxTreeEvent& event); | |
53 | void OnItemExpanded(wxTreeEvent& event); | |
54 | void OnItemExpanding(wxTreeEvent& event); | |
55 | void OnItemCollapsed(wxTreeEvent& event); | |
56 | void OnItemCollapsing(wxTreeEvent& event); | |
57 | void OnSelChanged(wxTreeEvent& event); | |
58 | void OnSelChanging(wxTreeEvent& event); | |
59 | void OnTreeKeyDown(wxTreeEvent& event); | |
60 | void OnItemActivated(wxTreeEvent& event); | |
61 | void OnRMouseDClick(wxMouseEvent& event); | |
62 | ||
63 | void GetItemsRecursively(const wxTreeItemId& idParent, long cookie); | |
64 | ||
65 | void AddTestItemsToTree(size_t numChildren, size_t depth); | |
66 | ||
67 | void DoSortChildren(const wxTreeItemId& item, bool reverse = FALSE) | |
e1ee62bd | 68 | { m_reverseSort = reverse; wxTreeCtrl::SortChildren(item); } |
5f939e78 | 69 | void DoEnsureVisible() { EnsureVisible(m_lastItem); } |
e1ee62bd VZ |
70 | |
71 | protected: | |
5f939e78 | 72 | virtual int OnCompareItems(const wxTreeItemId& i1, const wxTreeItemId& i2); |
e1ee62bd | 73 | |
5a43154b | 74 | private: |
5f939e78 VZ |
75 | void AddItemsRecursively(const wxTreeItemId& idParent, |
76 | size_t nChildren, | |
77 | size_t depth, | |
78 | size_t folder); | |
79 | ||
80 | wxImageList *m_imageListNormal; | |
81 | bool m_reverseSort; // flag for OnCompareItems | |
82 | wxTreeItemId m_lastItem; // for OnEnsureVisible() | |
83 | ||
84 | // NB: due to an ugly wxMSW hack you _must_ use DECLARE_DYNAMIC_CLASS() | |
85 | // if you want your overloaded OnCompareItems() to be called. | |
86 | // OTOH, if you don't want it you may omit the next line - this will | |
87 | // make default (alphabetical) sorting much faster under wxMSW. | |
88 | DECLARE_DYNAMIC_CLASS(MyTreeCtrl) | |
89 | DECLARE_EVENT_TABLE() | |
457814b5 JS |
90 | }; |
91 | ||
92 | // Define a new frame type | |
93 | class MyFrame: public wxFrame | |
019bf128 UU |
94 | { |
95 | public: | |
5f939e78 VZ |
96 | // ctor and dtor |
97 | MyFrame(const wxString& title, int x, int y, int w, int h); | |
98 | virtual ~MyFrame(); | |
f135ff73 | 99 | |
5f939e78 VZ |
100 | // menu callbacks |
101 | void OnQuit(wxCommandEvent& event); | |
102 | void OnAbout(wxCommandEvent& event); | |
f135ff73 | 103 | |
5f939e78 VZ |
104 | void OnDump(wxCommandEvent& event); |
105 | void OnDelete(wxCommandEvent& event); | |
106 | void OnDeleteChildren(wxCommandEvent& event); | |
107 | void OnDeleteAll(wxCommandEvent& event); | |
108 | void OnRecreate(wxCommandEvent& event); | |
109 | void OnCollapseAndReset(wxCommandEvent& event); | |
add28c55 | 110 | |
5f939e78 VZ |
111 | void OnSetBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(TRUE); } |
112 | void OnClearBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(FALSE); } | |
f65635b5 | 113 | |
5f939e78 VZ |
114 | void OnEnsureVisible(wxCommandEvent& event); |
115 | ||
116 | void OnRename(wxCommandEvent& event); | |
117 | void OnSort(wxCommandEvent& event) { DoSort(); } | |
118 | void OnSortRev(wxCommandEvent& event) { DoSort(TRUE); } | |
119 | ||
120 | void OnAddItem(wxCommandEvent& event); | |
e1ee62bd | 121 | |
f135ff73 | 122 | private: |
5f939e78 | 123 | void DoSort(bool reverse = FALSE); |
e1ee62bd | 124 | |
5f939e78 | 125 | MyTreeCtrl *m_treeCtrl; |
457814b5 | 126 | |
5f939e78 | 127 | void DoSetBold(bool bold = TRUE); |
add28c55 | 128 | |
5f939e78 | 129 | DECLARE_EVENT_TABLE() |
5a43154b | 130 | }; |
457814b5 | 131 | |
5a43154b VZ |
132 | // menu and control ids |
133 | enum | |
134 | { | |
5f939e78 VZ |
135 | TreeTest_Quit, |
136 | TreeTest_About, | |
137 | TreeTest_Dump, | |
138 | TreeTest_Sort, | |
139 | TreeTest_SortRev, | |
140 | TreeTest_Bold, | |
141 | TreeTest_UnBold, | |
142 | TreeTest_Rename, | |
143 | TreeTest_Delete, | |
144 | TreeTest_DeleteChildren, | |
145 | TreeTest_DeleteAll, | |
146 | TreeTest_Recreate, | |
147 | TreeTest_CollapseAndReset, | |
148 | TreeTest_EnsureVisible, | |
149 | TreeTest_AddItem, | |
150 | TreeTest_Ctrl = 100 | |
f65635b5 | 151 | }; |