-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathformImport.dfm
More file actions
148 lines (148 loc) · 3.78 KB
/
formImport.dfm
File metadata and controls
148 lines (148 loc) · 3.78 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
object frmImport: TfrmImport
Left = 335
Top = 202
Width = 560
Height = 424
Caption = 'Import'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object JvToolBar1: TJvToolBar
Left = 0
Top = 0
Width = 552
Height = 29
Caption = 'JvToolBar1'
Images = Form1.ImageList1
TabOrder = 0
object ToolButton1: TToolButton
Left = 0
Top = 2
Hint = 'Select Import Directory'
Caption = 'ToolButton1'
ImageIndex = 0
ParentShowHint = False
ShowHint = True
OnClick = ToolButton1Click
end
object ToolButton2: TToolButton
Left = 23
Top = 2
Width = 8
Caption = 'ToolButton2'
ImageIndex = 1
Style = tbsSeparator
end
object ToolButton3: TToolButton
Left = 31
Top = 2
Caption = 'ToolButton3'
ImageIndex = 7
ParentShowHint = False
ShowHint = True
OnClick = ToolButton3Click
end
object ToolButton4: TToolButton
Left = 54
Top = 2
Width = 8
Caption = 'ToolButton4'
ImageIndex = 8
Style = tbsSeparator
end
object ProgressBar1: TProgressBar
Left = 62
Top = 2
Width = 150
Height = 22
TabOrder = 0
end
end
object vstImport: TVirtualStringTree
Left = 0
Top = 29
Width = 552
Height = 349
Align = alClient
CheckImageKind = ckXP
Header.AutoSizeIndex = 1
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -11
Header.Font.Name = 'MS Sans Serif'
Header.Font.Style = []
Header.MainColumn = 1
Header.Options = [hoColumnResize, hoDrag, hoVisible]
PopupMenu = popImport
TabOrder = 1
TreeOptions.MiscOptions = [toAcceptOLEDrop, toCheckSupport, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning]
TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowTreeLines, toThemeAware, toUseBlendedImages]
TreeOptions.SelectionOptions = [toMultiSelect, toRightClickSelect]
OnChecked = vstImportChecked
OnPaintText = vstImportPaintText
Columns = <
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 0
WideText = 'id'
end
item
Position = 1
Width = 200
WideText = 'airFile'
end
item
Position = 2
Width = 100
WideText = 'hasSffFile'
end
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark]
Position = 3
Width = 100
WideText = 'Checked'
end>
end
object StatusBar1: TStatusBar
Left = 0
Top = 378
Width = 552
Height = 19
Panels = <
item
Text = 'Give credit where credit is due when importing characters!'
Width = 250
end>
end
object popImport: TPopupMenu
Left = 376
Top = 184
object CheckAll1: TMenuItem
Caption = 'Check All'
OnClick = CheckAll1Click
end
object UnCheckAll1: TMenuItem
Caption = 'UnCheck All'
OnClick = UnCheckAll1Click
end
object N1: TMenuItem
Caption = '-'
end
object CheckSelected1: TMenuItem
Caption = 'Check Selected'
OnClick = CheckSelected1Click
end
object UnCheckSelected1: TMenuItem
Caption = 'UnCheck Selected'
OnClick = UnCheckSelected1Click
end
end
end