| 1 | ///////////////////////////////////////////////////////////////////////////// |
| 2 | // Name: treectrl.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 |
| 9 | // Licence: wxWindows license |
| 10 | ///////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | #define USE_GENERIC_TREECTRL 0 |
| 13 | |
| 14 | #if USE_GENERIC_TREECTRL |
| 15 | #include "wx/generic/treectlg.h" |
| 16 | #ifndef wxTreeCtrl |
| 17 | #define wxTreeCtrl wxGenericTreeCtrl |
| 18 | #define sm_classwxTreeCtrl sm_classwxGenericTreeCtrl |
| 19 | #endif |
| 20 | #endif |
| 21 | |
| 22 | // Define a new application type |
| 23 | class MyApp : public wxApp |
| 24 | { |
| 25 | public: |
| 26 | MyApp() { m_showImages = TRUE; m_showButtons = FALSE; } |
| 27 | |
| 28 | bool OnInit(); |
| 29 | |
| 30 | void SetShowImages(bool show) { m_showImages = show; } |
| 31 | bool ShowImages() const { return m_showImages; } |
| 32 | |
| 33 | void SetShowButtons(bool show) { m_showButtons = show; } |
| 34 | bool ShowButtons() const { return m_showButtons; } |
| 35 | |
| 36 | private: |
| 37 | bool m_showImages, m_showButtons; |
| 38 | }; |
| 39 | |
| 40 | class MyTreeItemData : public wxTreeItemData |
| 41 | { |
| 42 | public: |
| 43 | MyTreeItemData(const wxString& desc) : m_desc(desc) { } |
| 44 | |
| 45 | void ShowInfo(wxTreeCtrl *tree); |
| 46 | const wxChar *GetDesc() const { return m_desc.c_str(); } |
| 47 | |
| 48 | private: |
| 49 | wxString m_desc; |
| 50 | }; |
| 51 | |
| 52 | class MyTreeCtrl : public wxTreeCtrl |
| 53 | { |
| 54 | public: |
| 55 | enum |
| 56 | { |
| 57 | TreeCtrlIcon_File, |
| 58 | TreeCtrlIcon_FileSelected, |
| 59 | TreeCtrlIcon_Folder, |
| 60 | TreeCtrlIcon_FolderSelected, |
| 61 | TreeCtrlIcon_FolderOpened |
| 62 | }; |
| 63 | |
| 64 | MyTreeCtrl() { } |
| 65 | MyTreeCtrl(wxWindow *parent, const wxWindowID id, |
| 66 | const wxPoint& pos, const wxSize& size, |
| 67 | long style); |
| 68 | virtual ~MyTreeCtrl(); |
| 69 | |
| 70 | void OnBeginDrag(wxTreeEvent& event); |
| 71 | void OnBeginRDrag(wxTreeEvent& event); |
| 72 | void OnEndDrag(wxTreeEvent& event); |
| 73 | void OnBeginLabelEdit(wxTreeEvent& event); |
| 74 | void OnEndLabelEdit(wxTreeEvent& event); |
| 75 | void OnDeleteItem(wxTreeEvent& event); |
| 76 | void OnRMouseUp(wxMouseEvent& event); |
| 77 | void OnGetInfo(wxTreeEvent& event); |
| 78 | void OnTreeRMouseClick(wxTreeEvent& event); |
| 79 | void OnItemRightClick(wxTreeEvent& event); |
| 80 | void OnSetInfo(wxTreeEvent& event); |
| 81 | void OnItemExpanded(wxTreeEvent& event); |
| 82 | void OnItemExpanding(wxTreeEvent& event); |
| 83 | void OnItemCollapsed(wxTreeEvent& event); |
| 84 | void OnItemCollapsing(wxTreeEvent& event); |
| 85 | void OnSelChanged(wxTreeEvent& event); |
| 86 | void OnSelChanging(wxTreeEvent& event); |
| 87 | void OnTreeKeyDown(wxTreeEvent& event); |
| 88 | void OnItemActivated(wxTreeEvent& event); |
| 89 | void OnRMouseDClick(wxMouseEvent& event); |
| 90 | |
| 91 | void GetItemsRecursively(const wxTreeItemId& idParent, long cookie); |
| 92 | |
| 93 | void CreateImageList(int size = 16); |
| 94 | void CreateButtonsImageList(int size = 11); |
| 95 | |
| 96 | void AddTestItemsToTree(size_t numChildren, size_t depth); |
| 97 | |
| 98 | void DoSortChildren(const wxTreeItemId& item, bool reverse = FALSE) |
| 99 | { m_reverseSort = reverse; wxTreeCtrl::SortChildren(item); } |
| 100 | void DoEnsureVisible() { EnsureVisible(m_lastItem); } |
| 101 | |
| 102 | void DoToggleIcon(const wxTreeItemId& item); |
| 103 | |
| 104 | void ShowMenu(wxTreeItemId id, const wxPoint& pt); |
| 105 | |
| 106 | int ImageSize(void) const { return m_imageSize; } |
| 107 | |
| 108 | protected: |
| 109 | virtual int OnCompareItems(const wxTreeItemId& i1, const wxTreeItemId& i2); |
| 110 | |
| 111 | // is this the test item which we use in several event handlers? |
| 112 | bool IsTestItem(const wxTreeItemId& item) |
| 113 | { |
| 114 | // the test item is the first child folder |
| 115 | return GetParent(item) == GetRootItem() && !GetPrevSibling(item); |
| 116 | } |
| 117 | |
| 118 | private: |
| 119 | void AddItemsRecursively(const wxTreeItemId& idParent, |
| 120 | size_t nChildren, |
| 121 | size_t depth, |
| 122 | size_t folder); |
| 123 | |
| 124 | int m_imageSize; // current size of images |
| 125 | bool m_reverseSort; // flag for OnCompareItems |
| 126 | wxTreeItemId m_lastItem, // for OnEnsureVisible() |
| 127 | m_draggedItem; // item being dragged right now |
| 128 | |
| 129 | // NB: due to an ugly wxMSW hack you _must_ use DECLARE_DYNAMIC_CLASS() |
| 130 | // if you want your overloaded OnCompareItems() to be called. |
| 131 | // OTOH, if you don't want it you may omit the next line - this will |
| 132 | // make default (alphabetical) sorting much faster under wxMSW. |
| 133 | DECLARE_DYNAMIC_CLASS(MyTreeCtrl) |
| 134 | DECLARE_EVENT_TABLE() |
| 135 | }; |
| 136 | |
| 137 | // Define a new frame type |
| 138 | class MyFrame: public wxFrame |
| 139 | { |
| 140 | public: |
| 141 | // ctor and dtor |
| 142 | MyFrame(const wxString& title, int x, int y, int w, int h); |
| 143 | virtual ~MyFrame(); |
| 144 | |
| 145 | // menu callbacks |
| 146 | void OnQuit(wxCommandEvent& event); |
| 147 | void OnAbout(wxCommandEvent& event); |
| 148 | |
| 149 | void OnTogButtons(wxCommandEvent& event) { TogStyle(wxTR_HAS_BUTTONS); } |
| 150 | void OnTogTwist(wxCommandEvent& event) { TogStyle(wxTR_TWIST_BUTTONS); } |
| 151 | void OnTogLines(wxCommandEvent& event) { TogStyle(wxTR_NO_LINES); } |
| 152 | void OnTogEdit(wxCommandEvent& event) { TogStyle(wxTR_EDIT_LABELS); } |
| 153 | void OnTogHideRoot(wxCommandEvent& event) { TogStyle(wxTR_HIDE_ROOT); } |
| 154 | void OnTogRootLines(wxCommandEvent& event) { TogStyle(wxTR_LINES_AT_ROOT); } |
| 155 | void OnTogBorder(wxCommandEvent& event) { TogStyle(wxTR_ROW_LINES); } |
| 156 | void OnTogFullHighlight(wxCommandEvent& event) { TogStyle(wxTR_FULL_ROW_HIGHLIGHT); } |
| 157 | |
| 158 | void OnDump(wxCommandEvent& event); |
| 159 | #ifndef NO_MULTIPLE_SELECTION |
| 160 | void OnDumpSelected(wxCommandEvent& event); |
| 161 | void OnSelect(wxCommandEvent& event); |
| 162 | void OnUnselect(wxCommandEvent& event); |
| 163 | void OnToggleSel(wxCommandEvent& event); |
| 164 | #endif // NO_MULTIPLE_SELECTION |
| 165 | void OnDelete(wxCommandEvent& event); |
| 166 | void OnDeleteChildren(wxCommandEvent& event); |
| 167 | void OnDeleteAll(wxCommandEvent& event); |
| 168 | |
| 169 | void OnRecreate(wxCommandEvent& event); |
| 170 | void OnToggleButtons(wxCommandEvent& event); |
| 171 | void OnToggleImages(wxCommandEvent& event); |
| 172 | void OnSetImageSize(wxCommandEvent& event); |
| 173 | void OnCollapseAndReset(wxCommandEvent& event); |
| 174 | |
| 175 | void OnSetBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(TRUE); } |
| 176 | void OnClearBold(wxCommandEvent& WXUNUSED(event)) { DoSetBold(FALSE); } |
| 177 | |
| 178 | void OnEnsureVisible(wxCommandEvent& event); |
| 179 | |
| 180 | void OnCount(wxCommandEvent& event); |
| 181 | void OnCountRec(wxCommandEvent& event); |
| 182 | |
| 183 | void OnRename(wxCommandEvent& event); |
| 184 | void OnSort(wxCommandEvent& event) { DoSort(); } |
| 185 | void OnSortRev(wxCommandEvent& event) { DoSort(TRUE); } |
| 186 | |
| 187 | void OnAddItem(wxCommandEvent& event); |
| 188 | void OnInsertItem(wxCommandEvent& event); |
| 189 | |
| 190 | void OnIncIndent(wxCommandEvent& event); |
| 191 | void OnDecIndent(wxCommandEvent& event); |
| 192 | |
| 193 | void OnIncSpacing(wxCommandEvent& event); |
| 194 | void OnDecSpacing(wxCommandEvent& event); |
| 195 | |
| 196 | void OnToggleIcon(wxCommandEvent& event); |
| 197 | |
| 198 | void OnSize(wxSizeEvent& event); |
| 199 | |
| 200 | private: |
| 201 | void TogStyle(long flag); |
| 202 | |
| 203 | void DoSort(bool reverse = FALSE); |
| 204 | |
| 205 | void Resize(const wxSize& size); |
| 206 | |
| 207 | MyTreeCtrl *m_treeCtrl; |
| 208 | wxTextCtrl *m_textCtrl; |
| 209 | |
| 210 | void DoSetBold(bool bold = TRUE); |
| 211 | |
| 212 | DECLARE_EVENT_TABLE() |
| 213 | }; |
| 214 | |
| 215 | // menu and control ids |
| 216 | enum |
| 217 | { |
| 218 | TreeTest_Quit, |
| 219 | TreeTest_About, |
| 220 | TreeTest_TogButtons, |
| 221 | TreeTest_TogTwist, |
| 222 | TreeTest_TogLines, |
| 223 | TreeTest_TogEdit, |
| 224 | TreeTest_TogHideRoot, |
| 225 | TreeTest_TogRootLines, |
| 226 | TreeTest_TogBorder, |
| 227 | TreeTest_TogFullHighlight, |
| 228 | TreeTest_Dump, |
| 229 | TreeTest_DumpSelected, |
| 230 | TreeTest_Count, |
| 231 | TreeTest_CountRec, |
| 232 | TreeTest_Sort, |
| 233 | TreeTest_SortRev, |
| 234 | TreeTest_SetBold, |
| 235 | TreeTest_ClearBold, |
| 236 | TreeTest_Rename, |
| 237 | TreeTest_Delete, |
| 238 | TreeTest_DeleteChildren, |
| 239 | TreeTest_DeleteAll, |
| 240 | TreeTest_Recreate, |
| 241 | TreeTest_ToggleImages, |
| 242 | TreeTest_ToggleButtons, |
| 243 | TreeTest_SetImageSize, |
| 244 | TreeTest_ToggleSel, |
| 245 | TreeTest_CollapseAndReset, |
| 246 | TreeTest_EnsureVisible, |
| 247 | TreeTest_AddItem, |
| 248 | TreeTest_InsertItem, |
| 249 | TreeTest_IncIndent, |
| 250 | TreeTest_DecIndent, |
| 251 | TreeTest_IncSpacing, |
| 252 | TreeTest_DecSpacing, |
| 253 | TreeTest_ToggleIcon, |
| 254 | TreeTest_Select, |
| 255 | TreeTest_Unselect, |
| 256 | TreeTest_Ctrl = 1000 |
| 257 | }; |