-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathufFileVirtualTree.lfm
182 lines (182 loc) · 3.67 KB
/
ufFileVirtualTree.lfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
object fFileVirtualTree: TfFileVirtualTree
Left = 469
Height = 952
Top = 483
Width = 1223
Caption = 'fFileVirtualTree'
ClientHeight = 952
ClientWidth = 1223
OnCreate = FormCreate
OnDestroy = FormDestroy
Position = poDesktopCenter
LCLVersion = '2.0.4.0'
object Panel1: TPanel
Left = 0
Height = 98
Top = 0
Width = 1223
Align = alTop
ClientHeight = 98
ClientWidth = 1223
TabOrder = 0
object bGetSelection: TButton
Left = 159
Height = 25
Top = 13
Width = 139
Caption = 'Get Selection'
OnClick = bGetSelectionClick
TabOrder = 0
end
object bGetChecked: TButton
Left = 315
Height = 25
Top = 13
Width = 139
Caption = 'Get checked items'
OnClick = bGetCheckedClick
TabOrder = 1
end
object bfFileTree: TButton
Left = 509
Height = 25
Top = 12
Width = 119
Caption = 'Show fFileTree'
OnClick = bfFileTreeClick
TabOrder = 2
end
object bLoad_from_File: TButton
Left = 11
Height = 25
Top = 12
Width = 131
Caption = 'Load from file'
OnClick = bLoad_from_FileClick
TabOrder = 3
end
object eFileName: TEdit
Left = 70
Height = 23
Top = 44
Width = 418
TabOrder = 4
Text = 'FileTree.ini'
end
object Label1: TLabel
Left = 12
Height = 15
Top = 46
Width = 51
Caption = 'File name'
ParentColor = False
end
object bOD: TButton
Left = 495
Height = 22
Top = 44
Width = 24
Caption = '...'
OnClick = bODClick
TabOrder = 5
end
object pb: TProgressBar
Left = 1
Height = 20
Top = 77
Width = 1221
Align = alBottom
TabOrder = 6
end
object lCompute_Aggregates: TLabel
Left = 566
Height = 15
Top = 50
Width = 149
Caption = 'Computing time aggregates'
ParentColor = False
Visible = False
end
end
object Panel2: TPanel
Left = 0
Height = 854
Top = 98
Width = 1223
Align = alClient
ClientHeight = 854
ClientWidth = 1223
TabOrder = 1
object m: TMemo
Left = 715
Height = 852
Top = 1
Width = 507
Align = alRight
Lines.Strings = (
'm'
)
OnChange = mChange
TabOrder = 0
end
object Splitter1: TSplitter
Left = 710
Height = 852
Top = 1
Width = 5
Align = alRight
Color = clLime
ParentColor = False
ResizeAnchor = akRight
end
object vst: TVirtualStringTree
Left = 1
Height = 852
Top = 1
Width = 709
Align = alClient
DefaultNodeHeight = 21
DefaultText = 'Node'
Header.AutoSizeIndex = 0
Header.Columns = <
item
Position = 0
Text = 'File'
Width = 200
end
item
Position = 1
Text = 'Time'
end>
TabOrder = 2
TreeOptions.MiscOptions = [toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning, toEditOnClick]
TreeOptions.SelectionOptions = [toMultiSelect]
OnChecked = vstChecked
OnGetText = vstGetText
OnInitNode = vstInitNode
end
end
object Edit1: TEdit
Left = 648
Height = 23
Top = 16
Width = 80
OnChange = Edit1Change
TabOrder = 2
Text = '4:00'
TextHint = 'Load Time'
end
object Label2: TLabel
Left = 648
Height = 15
Top = 0
Width = 58
Caption = 'Load Time:'
ParentColor = False
end
object od: TOpenDialog
Filter = 'ini file|*.ini'
left = 531
top = 42
end
end