-
Notifications
You must be signed in to change notification settings - Fork 5
/
unit5.lfm
174 lines (174 loc) · 3.07 KB
/
unit5.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
object Form5: TForm5
Left = 238
Height = 265
Top = 122
Width = 332
ActiveControl = Button1
Caption = 'Form5'
ClientHeight = 265
ClientWidth = 332
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '0.9.31'
object Button3: TButton
Left = 16
Height = 25
Top = 193
Width = 105
Caption = '&Load Quest'
OnClick = Button3Click
TabOrder = 0
end
object Button4: TButton
Left = 216
Height = 25
Top = 192
Width = 105
Caption = '&Save Quest'
OnClick = Button4Click
TabOrder = 1
end
object Button2: TButton
Left = 16
Height = 25
Top = 232
Width = 304
Caption = '&OK'
OnClick = Button2Click
TabOrder = 2
end
object Label1: TLabel
Left = 16
Height = 18
Top = 16
Width = 35
Caption = 'Car : '
ParentColor = False
end
object Button1: TButton
Left = 246
Height = 25
Top = 9
Width = 75
Caption = 'Set'
OnClick = Button1Click
TabOrder = 3
end
object ListBox1: TListBox
Left = 72
Height = 97
Top = 48
Width = 168
ItemHeight = 0
ScrollWidth = 164
TabOrder = 4
TopIndex = -1
end
object Label2: TLabel
Left = 16
Height = 18
Top = 48
Width = 50
Caption = 'Trailer : '
ParentColor = False
end
object Button5: TButton
Left = 246
Height = 25
Top = 47
Width = 75
Caption = '/\'
OnClick = Button5Click
TabOrder = 5
end
object Button6: TButton
Left = 246
Height = 25
Top = 71
Width = 75
Caption = 'Add'
OnClick = Button6Click
TabOrder = 6
end
object Button7: TButton
Left = 246
Height = 25
Top = 95
Width = 75
Caption = 'Del'
OnClick = Button7Click
TabOrder = 7
end
object Button8: TButton
Left = 246
Height = 25
Top = 119
Width = 75
Caption = '\/'
OnClick = Button8Click
TabOrder = 8
end
object Label3: TLabel
Left = 16
Height = 18
Top = 160
Width = 36
Caption = 'Map :'
ParentColor = False
end
object Label4: TLabel
Left = 78
Height = 18
Top = 13
Width = 43
Caption = 'Label4'
ParentColor = False
end
object Label5: TLabel
Left = 78
Height = 18
Top = 160
Width = 43
Caption = 'Label5'
ParentColor = False
end
object Button9: TButton
Left = 246
Height = 25
Top = 153
Width = 75
Caption = 'Set'
OnClick = Button9Click
TabOrder = 9
end
object OpenDialog1: TOpenDialog
DefaultExt = '.qst'
Filter = 'Quest|*.qst|All|*.*'
left = 40
top = 200
end
object SaveDialog1: TSaveDialog
DefaultExt = '.qst'
Filter = 'Quest|*.qst|All|*.*'
left = 232
top = 192
end
object OpenDialog2: TOpenDialog
DefaultExt = '.car'
Filter = 'Car|*.car|All|*.*'
left = 234
top = 19
end
object OpenDialog3: TOpenDialog
DefaultExt = '.trl'
Filter = 'Trailer|*.trl|All|*.*'
left = 234
top = 80
end
object OpenDialog4: TOpenDialog
DefaultExt = '.map'
Filter = 'Map|*.map|All|*.*'
left = 234
top = 160
end
end