forked from oliverhermanni/XC-Edit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.lfm
210 lines (210 loc) · 4.74 KB
/
options.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
object FormOptions: TFormOptions
Left = 398
Height = 421
Top = 366
Width = 581
BorderIcons = []
BorderStyle = bsDialog
Caption = 'Options'
ClientHeight = 421
ClientWidth = 581
FormStyle = fsStayOnTop
OnShow = FormShow
Position = poMainFormCenter
LCLVersion = '2.0.4.0'
object Panel1: TPanel
Left = 0
Height = 45
Top = 376
Width = 581
Align = alBottom
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 41
ClientWidth = 577
TabOrder = 0
object ButtonOk: TButton
Left = 488
Height = 25
Top = 8
Width = 75
Caption = '&OK'
OnClick = ButtonOkClick
TabOrder = 0
end
object ButtonCancel: TButton
Left = 9
Height = 25
Top = 8
Width = 75
Caption = '&Cancel'
OnClick = ButtonCancelClick
TabOrder = 1
end
end
object PageControl: TPageControl
Left = 226
Height = 376
Top = 0
Width = 355
ActivePage = TabSheet1
Align = alClient
TabIndex = 0
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'XC=BASIC'
ClientHeight = 348
ClientWidth = 347
object GroupBox1: TGroupBox
Left = 10
Height = 328
Top = 10
Width = 327
Align = alClient
BorderSpacing.Around = 10
Caption = 'XC=BASIC Settings'
ClientHeight = 308
ClientWidth = 323
TabOrder = 0
object fneMainCompiler: TFileNameEdit
Left = 8
Height = 23
Top = 24
Width = 312
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Images = FormMain.ImageList
ImageIndex = 2
MaxLength = 0
TabOrder = 0
end
object Label1: TLabel
Left = 8
Height = 15
Top = 8
Width = 77
Caption = 'Main compiler'
ParentColor = False
end
object Label2: TLabel
Left = 8
Height = 15
Top = 80
Width = 71
Caption = 'Test compiler'
ParentColor = False
end
object fneTestCompiler: TFileNameEdit
Left = 8
Height = 23
Top = 96
Width = 312
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Images = FormMain.ImageList
ImageIndex = 2
MaxLength = 0
TabOrder = 1
end
object Label3: TLabel
Left = 8
Height = 48
Top = 120
Width = 280
AutoSize = False
Caption = 'Here you can set a different version of XC=BASIC, if you need it for testing purposes (eg. the latest dev build).'
ParentColor = False
WordWrap = True
end
object Label4: TLabel
Left = 8
Height = 15
Top = 48
Width = 166
Caption = 'Location of the xcb batch script'
ParentColor = False
end
end
end
object TabSheet2: TTabSheet
Caption = 'Emulator'
ClientHeight = 348
ClientWidth = 347
object GroupBox2: TGroupBox
Left = 10
Height = 328
Top = 10
Width = 327
Align = alClient
BorderSpacing.Around = 10
Caption = 'Emulator settings'
ClientHeight = 308
ClientWidth = 323
TabOrder = 0
object fneEmulatorLocation: TFileNameEdit
Left = 8
Height = 23
Top = 24
Width = 312
FilterIndex = 0
HideDirectories = False
ButtonWidth = 23
NumGlyphs = 1
Images = FormMain.ImageList
ImageIndex = 2
MaxLength = 0
TabOrder = 0
end
object Label5: TLabel
Left = 8
Height = 15
Top = 8
Width = 98
Caption = 'Emulator and path'
ParentColor = False
end
object EditEmulatorParams: TEdit
Left = 8
Height = 23
Top = 88
Width = 312
TabOrder = 1
end
object Label6: TLabel
Left = 8
Height = 15
Top = 72
Width = 90
Caption = 'Emulator params'
ParentColor = False
end
end
end
end
object Panel2: TPanel
Left = 0
Height = 376
Top = 0
Width = 226
Align = alLeft
BorderWidth = 10
Caption = 'Panel2'
ClientHeight = 376
ClientWidth = 226
TabOrder = 2
object ListBoxTabs: TListBox
Left = 11
Height = 354
Top = 11
Width = 204
Align = alClient
ItemHeight = 0
OnClick = ListBoxTabsClick
TabOrder = 0
end
end
end