source: tags/1.0.0/Forms/UFormOptions.lfm

Last change on this file was 96, checked in by chronos, 6 years ago
  • Added: Theming support.
  • Modified: Items in Options dialog divided to two pages.
File size: 5.8 KB
Line 
1object FormOptions: TFormOptions
2 Left = 401
3 Height = 356
4 Top = 236
5 Width = 607
6 Caption = 'Options'
7 ClientHeight = 356
8 ClientWidth = 607
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 LCLVersion = '1.8.2.0'
14 object ButtonOk: TButton
15 Left = 526
16 Height = 25
17 Top = 324
18 Width = 75
19 Anchors = [akRight, akBottom]
20 Caption = 'Ok'
21 ModalResult = 1
22 TabOrder = 0
23 end
24 object ButtonCancel: TButton
25 Left = 430
26 Height = 25
27 Top = 324
28 Width = 75
29 Anchors = [akRight, akBottom]
30 Caption = 'Cancel'
31 ModalResult = 2
32 TabOrder = 1
33 end
34 object PageControl1: TPageControl
35 Left = 8
36 Height = 310
37 Top = 8
38 Width = 593
39 ActivePage = TabSheetBuild
40 Anchors = [akTop, akLeft, akRight, akBottom]
41 TabIndex = 1
42 TabOrder = 2
43 object TabSheetGeneral: TTabSheet
44 Caption = 'General'
45 ClientHeight = 277
46 ClientWidth = 585
47 object Panel1: TPanel
48 Left = 0
49 Height = 277
50 Top = 0
51 Width = 585
52 Align = alClient
53 BevelOuter = bvNone
54 ClientHeight = 277
55 ClientWidth = 585
56 TabOrder = 0
57 object Label3: TLabel
58 Left = 8
59 Height = 20
60 Top = 48
61 Width = 127
62 Caption = 'Interface language:'
63 ParentColor = False
64 end
65 object ComboBoxLanguage: TComboBox
66 Left = 256
67 Height = 28
68 Top = 48
69 Width = 188
70 ItemHeight = 20
71 Style = csDropDownList
72 TabOrder = 0
73 end
74 object CheckBox1: TCheckBox
75 Left = 8
76 Height = 27
77 Top = 85
78 Width = 1051
79 Anchors = [akTop, akLeft, akRight]
80 AutoSize = False
81 Caption = 'Reopend last opened project'
82 TabOrder = 1
83 end
84 object CheckBoxDPIAuto: TCheckBox
85 Left = 8
86 Height = 27
87 Top = 125
88 Width = 1043
89 Anchors = [akTop, akLeft, akRight]
90 AutoSize = False
91 Caption = 'Automatic DPI'
92 OnChange = CheckBoxDPIAutoChange
93 TabOrder = 2
94 end
95 object LabelDPI: TLabel
96 Left = 30
97 Height = 20
98 Top = 160
99 Width = 26
100 Caption = 'DPI:'
101 ParentColor = False
102 end
103 object SpinEditDPIX: TSpinEdit
104 Left = 112
105 Height = 28
106 Top = 158
107 Width = 80
108 MaxValue = 1000
109 MinValue = 1
110 TabOrder = 3
111 Value = 1
112 end
113 object SpinEditDPIY: TSpinEdit
114 Left = 216
115 Height = 28
116 Top = 160
117 Width = 80
118 MaxValue = 1000
119 MinValue = 1
120 TabOrder = 4
121 Value = 1
122 end
123 object LabelX: TLabel
124 Left = 200
125 Height = 20
126 Top = 160
127 Width = 7
128 Caption = 'x'
129 ParentColor = False
130 end
131 object LabelTheme: TLabel
132 Left = 8
133 Height = 20
134 Top = 16
135 Width = 48
136 Caption = 'Theme:'
137 ParentColor = False
138 end
139 object ComboBoxTheme: TComboBox
140 Left = 256
141 Height = 28
142 Top = 8
143 Width = 188
144 ItemHeight = 20
145 Style = csDropDownList
146 TabOrder = 5
147 end
148 end
149 end
150 object TabSheetBuild: TTabSheet
151 Caption = 'Build'
152 ClientHeight = 277
153 ClientWidth = 585
154 object Panel2: TPanel
155 Left = 0
156 Height = 277
157 Top = 0
158 Width = 585
159 Align = alClient
160 BevelOuter = bvNone
161 ClientHeight = 277
162 ClientWidth = 585
163 TabOrder = 0
164 object Label4: TLabel
165 Left = 8
166 Height = 20
167 Top = 104
168 Width = 159
169 Caption = 'Compiler optimizations:'
170 ParentColor = False
171 end
172 object ComboBoxOptimization: TComboBox
173 Left = 248
174 Height = 28
175 Top = 104
176 Width = 188
177 ItemHeight = 20
178 Items.Strings = (
179 'None'
180 'Normal'
181 )
182 OnSelect = CheckBoxDPIAutoChange
183 Style = csDropDownList
184 TabOrder = 0
185 end
186 object CheckBoxOptimizeAddSub: TCheckBox
187 Left = 31
188 Height = 24
189 Top = 136
190 Width = 189
191 Caption = 'Addition and subtraction'
192 TabOrder = 1
193 end
194 object CheckBoxOptimizeMerge: TCheckBox
195 Left = 31
196 Height = 24
197 Top = 160
198 Width = 181
199 Caption = 'Merge same operations'
200 TabOrder = 2
201 end
202 object CheckBoxOptimizeCopyMultiply: TCheckBox
203 Left = 31
204 Height = 24
205 Top = 208
206 Width = 116
207 Caption = 'Copy multiply'
208 TabOrder = 3
209 end
210 object CheckBoxOptimizeRelativeIndexes: TCheckBox
211 Left = 31
212 Height = 24
213 Top = 184
214 Width = 131
215 Caption = 'Relative indexes'
216 TabOrder = 4
217 end
218 object Label2: TLabel
219 Left = 8
220 Height = 20
221 Top = 40
222 Width = 57
223 Caption = 'Cell size:'
224 ParentColor = False
225 end
226 object Label1: TLabel
227 Left = 8
228 Height = 20
229 Top = 8
230 Width = 87
231 Caption = 'Memory size:'
232 ParentColor = False
233 end
234 object SpinEditMemorySize: TSpinEdit
235 Left = 165
236 Height = 28
237 Top = 6
238 Width = 130
239 MaxValue = 2000000000
240 TabOrder = 5
241 end
242 object SpinEditCellSize: TSpinEdit
243 Left = 165
244 Height = 28
245 Top = 40
246 Width = 130
247 MaxValue = 2000000000
248 TabOrder = 6
249 end
250 end
251 end
252 end
253end
Note: See TracBrowser for help on using the repository browser.