-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileSelectForm.dfm
More file actions
127 lines (127 loc) · 3.26 KB
/
FileSelectForm.dfm
File metadata and controls
127 lines (127 loc) · 3.26 KB
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
object frmFileSelect: TfrmFileSelect
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
Caption = 'Select file from PND contents...'
ClientHeight = 336
ClientWidth = 358
Color = clBtnFace
Constraints.MinHeight = 374
Constraints.MinWidth = 374
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object vstFiles: TVirtualStringTree
AlignWithMargins = True
Left = 4
Top = 4
Width = 350
Height = 278
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
ClipboardFormats.Strings = (
'Virtual Tree Data')
Header.AutoSizeIndex = 0
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -11
Header.Font.Name = 'Tahoma'
Header.Font.Style = []
Header.Options = [hoAutoResize, hoColumnResize, hoDblClickResize, hoShowSortGlyphs, hoVisible]
Header.SortColumn = 0
Images = frmMain.imlFileTree
LineStyle = lsSolid
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScroll, toAutoScrollOnExpand, toAutoTristateTracking, toAutoDeleteMovedNodes]
TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowHorzGridLines, toShowRoot, toShowTreeLines, toShowVertGridLines, toThemeAware, toFullVertGridLines]
TreeOptions.SelectionOptions = [toFullRowSelect]
OnChange = vstFilesChange
OnCompareNodes = vstFilesCompareNodes
OnGetText = vstFilesGetText
OnGetImageIndex = vstFilesGetImageIndex
OnHeaderClick = vstFilesHeaderClick
Columns = <
item
Options = [coAllowClick, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus]
Position = 0
Width = 350
WideText = 'Filename'
end>
end
object pnlButtons: TPanel
Left = 0
Top = 307
Width = 358
Height = 29
Align = alBottom
BevelOuter = bvNone
TabOrder = 2
object btnCancel: TButton
AlignWithMargins = True
Left = 279
Top = 0
Width = 75
Height = 25
Margins.Left = 4
Margins.Top = 0
Margins.Right = 4
Margins.Bottom = 4
Align = alRight
Caption = 'Cancel'
TabOrder = 1
OnClick = btnCancelClick
end
object btnOK: TButton
AlignWithMargins = True
Left = 200
Top = 0
Width = 75
Height = 25
Margins.Left = 4
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 4
Align = alRight
Caption = 'OK'
Enabled = False
TabOrder = 0
OnClick = btnOKClick
end
end
object pnlFilter: TPanel
Left = 0
Top = 286
Width = 358
Height = 21
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object cbxFilter: TCheckBox
AlignWithMargins = True
Left = 8
Top = 4
Width = 342
Height = 13
Margins.Left = 8
Margins.Top = 4
Margins.Right = 8
Margins.Bottom = 4
Align = alClient
Caption = 'Filter: Some files (*.some)'
Checked = True
State = cbChecked
TabOrder = 0
OnClick = cbxFilterClick
end
end
end