]>
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: | |
16 | bool OnInit(); | |
17 | }; | |
457814b5 | 18 | |
5a43154b VZ |
19 | class MyTreeItemData : public wxTreeItemData |
20 | { | |
21 | public: | |
22 | MyTreeItemData(const wxString& desc) : m_desc(desc) { } | |
23 | ||
24 | void ShowInfo(wxTreeCtrl *tree); | |
25 | ||
26 | private: | |
27 | wxString m_desc; | |
457814b5 JS |
28 | }; |
29 | ||
5a43154b | 30 | class MyTreeCtrl : public wxTreeCtrl |
457814b5 JS |
31 | { |
32 | public: | |
5a43154b VZ |
33 | enum |
34 | { | |
35 | TreeCtrlIcon_Folder, | |
36 | TreeCtrlIcon_File | |
37 | }; | |
38 | ||
39 | MyTreeCtrl(wxWindow *parent, const wxWindowID id, | |
40 | const wxPoint& pos, const wxSize& size, | |
41 | long style); | |
42 | virtual ~MyTreeCtrl(); | |
43 | ||
44 | void OnBeginDrag(wxTreeEvent& event); | |
45 | void OnBeginRDrag(wxTreeEvent& event); | |
46 | void OnBeginLabelEdit(wxTreeEvent& event); | |
47 | void OnEndLabelEdit(wxTreeEvent& event); | |
48 | void OnDeleteItem(wxTreeEvent& event); | |
49 | void OnGetInfo(wxTreeEvent& event); | |
50 | void OnSetInfo(wxTreeEvent& event); | |
51 | void OnItemExpanded(wxTreeEvent& event); | |
52 | void OnItemExpanding(wxTreeEvent& event); | |
53 | void OnItemCollapsed(wxTreeEvent& event); | |
54 | void OnItemCollapsing(wxTreeEvent& event); | |
55 | void OnSelChanged(wxTreeEvent& event); | |
56 | void OnSelChanging(wxTreeEvent& event); | |
57 | void OnKeyDown(wxTreeEvent& event); | |
58 | ||
ff5bf259 VZ |
59 | void GetItemsRecursively(const wxTreeItemId& idParent, long cookie); |
60 | ||
61 | void AddTestItemsToTree(size_t numChildren, | |
62 | size_t depth); | |
4832f7c0 | 63 | |
5a43154b VZ |
64 | private: |
65 | void AddItemsRecursively(const wxTreeItemId& idParent, | |
66 | size_t nChildren, | |
4832f7c0 | 67 | size_t depth, |
ff5bf259 | 68 | size_t folder); |
5a43154b VZ |
69 | |
70 | wxImageList *m_imageListNormal; | |
71 | ||
72 | DECLARE_EVENT_TABLE() | |
457814b5 JS |
73 | }; |
74 | ||
75 | // Define a new frame type | |
76 | class MyFrame: public wxFrame | |
019bf128 UU |
77 | { |
78 | public: | |
5a43154b VZ |
79 | // ctor and dtor |
80 | MyFrame(const wxString& title, int x, int y, int w, int h); | |
81 | virtual ~MyFrame(); | |
f135ff73 | 82 | |
5a43154b VZ |
83 | // menu callbacks |
84 | void OnQuit(wxCommandEvent& event); | |
85 | void OnAbout(wxCommandEvent& event); | |
4832f7c0 | 86 | void OnDump(wxCommandEvent& event); |
ff5bf259 VZ |
87 | void OnDelete(wxCommandEvent& event); |
88 | void OnDeleteAll(wxCommandEvent& event); | |
89 | void OnRecreate(wxCommandEvent& event); | |
f135ff73 VZ |
90 | |
91 | private: | |
5a43154b | 92 | MyTreeCtrl *m_treeCtrl; |
457814b5 | 93 | |
5a43154b VZ |
94 | DECLARE_EVENT_TABLE() |
95 | }; | |
457814b5 | 96 | |
5a43154b VZ |
97 | // menu and control ids |
98 | enum | |
99 | { | |
100 | TreeTest_Quit, | |
101 | TreeTest_About, | |
4832f7c0 | 102 | TreeTest_Dump, |
ff5bf259 VZ |
103 | TreeTest_Delete, |
104 | TreeTest_DeleteAll, | |
105 | TreeTest_Recreate, | |
5a43154b VZ |
106 | TreeTest_Ctrl = 100 |
107 | }; | |
457814b5 | 108 | |
f135ff73 VZ |
109 | enum |
110 | { | |
111 | TreeCtrlIcon_File, | |
112 | TreeCtrlIcon_Folder | |
113 | }; |