source: trunk/Forms/FormOptions.lfm

Last change on this file was 153, checked in by chronos, 11 months ago
  • Added: Full screen switching support.
  • Added: Help form.
  • Modified: Updated Common package.
  • Fixed: Execution of compiled Java and C# programs.
  • Fixed: Removed interlanced empty lines in Console form on Unix.
File size: 7.1 KB
Line 
1object FormOptions: TFormOptions
2 Left = 916
3 Height = 427
4 Top = 506
5 Width = 728
6 Caption = 'Options'
7 ClientHeight = 427
8 ClientWidth = 728
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 LCLVersion = '3.4.0.0'
12 object ButtonOk: TButton
13 Left = 631
14 Height = 30
15 Top = 389
16 Width = 90
17 Anchors = [akRight, akBottom]
18 Caption = 'Ok'
19 ModalResult = 1
20 ParentFont = False
21 TabOrder = 0
22 end
23 object ButtonCancel: TButton
24 Left = 516
25 Height = 30
26 Top = 389
27 Width = 90
28 Anchors = [akRight, akBottom]
29 Caption = 'Cancel'
30 ModalResult = 2
31 ParentFont = False
32 TabOrder = 1
33 end
34 object PageControl1: TPageControl
35 Left = 10
36 Height = 371
37 Top = 10
38 Width = 711
39 ActivePage = TabSheetBuild
40 Anchors = [akTop, akLeft, akRight, akBottom]
41 ParentFont = False
42 TabIndex = 1
43 TabOrder = 2
44 object TabSheetGeneral: TTabSheet
45 Caption = 'General'
46 ClientHeight = 331
47 ClientWidth = 701
48 ParentFont = False
49 object Panel1: TPanel
50 Left = 0
51 Height = 331
52 Top = 0
53 Width = 701
54 Align = alClient
55 BevelOuter = bvNone
56 ClientHeight = 331
57 ClientWidth = 701
58 ParentFont = False
59 TabOrder = 0
60 object Label3: TLabel
61 Left = 10
62 Height = 26
63 Top = 58
64 Width = 164
65 Caption = 'Interface language:'
66 ParentColor = False
67 ParentFont = False
68 end
69 object ComboBoxLanguage: TComboBox
70 Left = 307
71 Height = 42
72 Top = 58
73 Width = 226
74 ItemHeight = 0
75 ParentFont = False
76 Style = csDropDownList
77 TabOrder = 0
78 end
79 object CheckBoxReopenLastFile: TCheckBox
80 Left = 10
81 Height = 32
82 Top = 102
83 Width = 1260
84 Anchors = [akTop, akLeft, akRight]
85 AutoSize = False
86 Caption = 'Reopend last opened project'
87 ParentFont = False
88 TabOrder = 1
89 end
90 object CheckBoxDPIAuto: TCheckBox
91 Left = 10
92 Height = 32
93 Top = 150
94 Width = 1250
95 Anchors = [akTop, akLeft, akRight]
96 AutoSize = False
97 Caption = 'Automatic DPI'
98 ParentFont = False
99 TabOrder = 2
100 OnChange = CheckBoxDPIAutoChange
101 end
102 object LabelDPI: TLabel
103 Left = 36
104 Height = 26
105 Top = 192
106 Width = 35
107 Caption = 'DPI:'
108 ParentColor = False
109 ParentFont = False
110 end
111 object SpinEditDPIX: TSpinEdit
112 Left = 134
113 Height = 43
114 Top = 190
115 Width = 96
116 MaxValue = 1000
117 MinValue = 1
118 ParentFont = False
119 TabOrder = 3
120 Value = 1
121 end
122 object SpinEditDPIY: TSpinEdit
123 Left = 259
124 Height = 43
125 Top = 192
126 Width = 96
127 MaxValue = 1000
128 MinValue = 1
129 ParentFont = False
130 TabOrder = 4
131 Value = 1
132 end
133 object LabelX: TLabel
134 Left = 240
135 Height = 26
136 Top = 192
137 Width = 10
138 Caption = 'x'
139 ParentColor = False
140 ParentFont = False
141 end
142 object LabelTheme: TLabel
143 Left = 10
144 Height = 26
145 Top = 19
146 Width = 63
147 Caption = 'Theme:'
148 ParentColor = False
149 ParentFont = False
150 end
151 object ComboBoxTheme: TComboBox
152 Left = 307
153 Height = 42
154 Top = 10
155 Width = 226
156 ItemHeight = 0
157 ParentFont = False
158 Style = csDropDownList
159 TabOrder = 5
160 end
161 end
162 end
163 object TabSheetBuild: TTabSheet
164 Caption = 'Build'
165 ClientHeight = 331
166 ClientWidth = 701
167 ParentFont = False
168 object Panel2: TPanel
169 Left = 0
170 Height = 331
171 Top = 0
172 Width = 701
173 Align = alClient
174 BevelOuter = bvNone
175 ClientHeight = 331
176 ClientWidth = 701
177 ParentFont = False
178 TabOrder = 0
179 object Label4: TLabel
180 Left = 10
181 Height = 26
182 Top = 125
183 Width = 202
184 Caption = 'Compiler optimizations:'
185 ParentColor = False
186 ParentFont = False
187 end
188 object ComboBoxOptimization: TComboBox
189 Left = 298
190 Height = 38
191 Top = 120
192 Width = 226
193 ItemHeight = 0
194 Items.Strings = (
195 'None'
196 'Normal'
197 )
198 ParentFont = False
199 Style = csDropDownList
200 TabOrder = 0
201 OnSelect = CheckBoxDPIAutoChange
202 end
203 object CheckBoxOptimizeAddSub: TCheckBox
204 Left = 37
205 Height = 30
206 Top = 163
207 Width = 236
208 Caption = 'Addition and subtraction'
209 ParentFont = False
210 TabOrder = 1
211 end
212 object CheckBoxOptimizeMerge: TCheckBox
213 Left = 37
214 Height = 30
215 Top = 224
216 Width = 227
217 Caption = 'Merge same operations'
218 ParentFont = False
219 TabOrder = 2
220 end
221 object CheckBoxOptimizeCopyMultiply: TCheckBox
222 Left = 37
223 Height = 30
224 Top = 282
225 Width = 142
226 Caption = 'Copy multiply'
227 ParentFont = False
228 TabOrder = 3
229 OnChange = CheckBoxOptimizeCopyMultiplyChange
230 end
231 object CheckBoxOptimizeRelativeIndexes: TCheckBox
232 Left = 37
233 Height = 30
234 Top = 253
235 Width = 162
236 Caption = 'Relative indexes'
237 ParentFont = False
238 TabOrder = 4
239 OnChange = CheckBoxOptimizeRelativeIndexesChange
240 end
241 object Label2: TLabel
242 Left = 10
243 Height = 26
244 Top = 64
245 Width = 73
246 Caption = 'Cell size:'
247 ParentColor = False
248 ParentFont = False
249 end
250 object Label1: TLabel
251 Left = 10
252 Height = 26
253 Top = 16
254 Width = 112
255 Caption = 'Memory size:'
256 ParentColor = False
257 ParentFont = False
258 end
259 object SpinEditMemorySize: TSpinEdit
260 Left = 198
261 Height = 43
262 Top = 7
263 Width = 156
264 MaxValue = 2000000000
265 ParentFont = False
266 TabOrder = 5
267 end
268 object SpinEditCellSize: TSpinEdit
269 Left = 198
270 Height = 43
271 Top = 56
272 Width = 156
273 MaxValue = 2000000000
274 ParentFont = False
275 TabOrder = 6
276 end
277 object CheckBoxOptimizeSetZero: TCheckBox
278 Left = 37
279 Height = 30
280 Top = 192
281 Width = 93
282 Caption = 'Set zero'
283 ParentFont = False
284 TabOrder = 7
285 end
286 object CheckBoxDebugEnabled: TCheckBox
287 Left = 392
288 Height = 30
289 Top = 12
290 Width = 120
291 Caption = 'Debugging'
292 ParentFont = False
293 TabOrder = 8
294 end
295 end
296 end
297 end
298end
Note: See TracBrowser for help on using the repository browser.