source: cprs/branches/tmg-cprs/CPRS-Chart/fGraphSettings.dfm@ 1806

Last change on this file since 1806 was 453, checked in by Kevin Toppenberg, 16 years ago

Initial upload of TMG-CPRS 1.0.26.69

File size: 10.4 KB
Line 
1object frmGraphSettings: TfrmGraphSettings
2 Left = 109
3 Top = 60
4 BorderIcons = [biSystemMenu, biHelp]
5 BorderStyle = bsDialog
6 Caption = 'Graph Settings'
7 ClientHeight = 304
8 ClientWidth = 438
9 Color = clBtnFace
10 Font.Charset = DEFAULT_CHARSET
11 Font.Color = clWindowText
12 Font.Height = -11
13 Font.Name = 'MS Sans Serif'
14 Font.Style = []
15 OldCreateOrder = False
16 Position = poMainFormCenter
17 OnClose = FormClose
18 OnCreate = FormCreate
19 OnShow = FormShow
20 DesignSize = (
21 438
22 304)
23 PixelsPerInch = 96
24 TextHeight = 13
25 object lblMinGraphHeight: TLabel
26 Left = 311
27 Top = 60
28 Width = 110
29 Height = 13
30 Caption = 'Minimum Graph Height:'
31 ParentShowHint = False
32 ShowHint = False
33 end
34 object lblMaxGraphs: TLabel
35 Left = 311
36 Top = 4
37 Width = 108
38 Height = 13
39 Caption = 'Max Graphs in Display:'
40 ParentShowHint = False
41 ShowHint = False
42 end
43 object lblOptions: TLabel
44 Left = 179
45 Top = 4
46 Width = 39
47 Height = 13
48 Caption = 'Options:'
49 ParentShowHint = False
50 ShowHint = False
51 end
52 object bvlBase: TBevel
53 Left = 13
54 Top = 271
55 Width = 412
56 Height = 2
57 end
58 object lblSources: TLabel
59 Left = 16
60 Top = 4
61 Width = 91
62 Height = 13
63 Caption = 'Sources Displayed:'
64 ParentShowHint = False
65 ShowHint = False
66 end
67 object lblConversions: TLabel
68 Left = 311
69 Top = 162
70 Width = 46
71 Height = 13
72 Caption = 'Functions'
73 ParentShowHint = False
74 ShowHint = False
75 end
76 object lblMaxSelect: TLabel
77 Left = 311
78 Top = 115
79 Width = 96
80 Height = 13
81 Caption = 'Max Items to Select:'
82 ParentShowHint = False
83 ShowHint = False
84 WordWrap = True
85 end
86 object lblShow: TLabel
87 Left = 196
88 Top = 217
89 Width = 72
90 Height = 13
91 Alignment = taRightJustify
92 Caption = 'Show Defaults:'
93 ParentShowHint = False
94 ShowHint = False
95 end
96 object lblSave: TLabel
97 Left = 189
98 Top = 249
99 Width = 79
100 Height = 13
101 Alignment = taRightJustify
102 Caption = 'Save as Default:'
103 ParentShowHint = False
104 ShowHint = False
105 end
106 object bvlDefaults: TBevel
107 Left = 176
108 Top = 205
109 Width = 248
110 Height = 2
111 end
112 object lblOptionsInfo: TLabel
113 Left = 13
114 Top = 281
115 Width = 275
116 Height = 13
117 Caption = 'Settings saved as your defaults are applied to new graphs.'
118 ParentShowHint = False
119 ShowHint = False
120 WordWrap = True
121 end
122 object lblMaxGraphsRef: TLabel
123 Left = 374
124 Top = 20
125 Width = 57
126 Height = 17
127 AutoSize = False
128 ParentShowHint = False
129 ShowHint = False
130 end
131 object lblMinGraphHeightRef: TLabel
132 Left = 374
133 Top = 80
134 Width = 57
135 Height = 17
136 AutoSize = False
137 ParentShowHint = False
138 ShowHint = False
139 end
140 object lblMaxSelectRef: TLabel
141 Left = 374
142 Top = 133
143 Width = 57
144 Height = 17
145 AutoSize = False
146 ParentShowHint = False
147 ShowHint = False
148 end
149 object bvlMid: TBevel
150 Left = 176
151 Top = 239
152 Width = 248
153 Height = 2
154 end
155 object lstATypes: TListBox
156 Left = 253
157 Top = 3
158 Width = 45
159 Height = 16
160 Anchors = [akLeft, akTop, akRight]
161 ItemHeight = 13
162 TabOrder = 17
163 Visible = False
164 end
165 object lstSourcesCopy: TListBox
166 Left = 123
167 Top = 4
168 Width = 45
169 Height = 16
170 ItemHeight = 13
171 Sorted = True
172 TabOrder = 16
173 Visible = False
174 end
175 object chklstOptions: TCheckListBox
176 Left = 179
177 Top = 20
178 Width = 120
179 Height = 179
180 OnClickCheck = chklstOptionsClickCheck
181 ItemHeight = 13
182 ParentShowHint = False
183 ShowHint = False
184 Sorted = True
185 TabOrder = 1
186 end
187 object txtMinGraphHeight: TEdit
188 Left = 311
189 Top = 78
190 Width = 41
191 Height = 21
192 ParentShowHint = False
193 ShowHint = False
194 TabOrder = 4
195 Text = '90'
196 OnChange = txtMinGraphHeightChange
197 OnExit = txtMinGraphHeightExit
198 OnKeyPress = txtMinGraphHeightKeyPress
199 end
200 object txtMaxGraphs: TEdit
201 Left = 311
202 Top = 20
203 Width = 41
204 Height = 21
205 ParentShowHint = False
206 ShowHint = False
207 TabOrder = 2
208 Text = '5'
209 OnChange = txtMaxGraphsChange
210 OnExit = txtMaxGraphsExit
211 OnKeyPress = txtMaxGraphsKeyPress
212 end
213 object spnMinGraphHeight: TUpDown
214 Left = 352
215 Top = 78
216 Width = 15
217 Height = 21
218 Associate = txtMinGraphHeight
219 Min = 10
220 Max = 1000
221 ParentShowHint = False
222 Position = 90
223 ShowHint = False
224 TabOrder = 5
225 OnClick = spnMinGraphHeightClick
226 end
227 object spnMaxGraphs: TUpDown
228 Left = 352
229 Top = 20
230 Width = 15
231 Height = 21
232 Associate = txtMaxGraphs
233 Min = 1
234 Max = 20
235 ParentShowHint = False
236 Position = 5
237 ShowHint = False
238 TabOrder = 3
239 OnClick = spnMaxGraphsClick
240 end
241 object btnClose: TButton
242 Left = 350
243 Top = 279
244 Width = 75
245 Height = 21
246 Cancel = True
247 Caption = 'Close'
248 ParentShowHint = False
249 ShowHint = False
250 TabOrder = 15
251 OnClick = btnCloseClick
252 end
253 object lstSources: TCheckListBox
254 Left = 16
255 Top = 20
256 Width = 153
257 Height = 216
258 ItemHeight = 13
259 ParentShowHint = False
260 ShowHint = False
261 Sorted = True
262 TabOrder = 0
263 end
264 object btnAll: TButton
265 Left = 18
266 Top = 245
267 Width = 65
268 Height = 21
269 Caption = 'All'
270 ParentShowHint = False
271 ShowHint = False
272 TabOrder = 9
273 OnClick = btnAllClick
274 end
275 object brnClear: TButton
276 Left = 103
277 Top = 245
278 Width = 65
279 Height = 21
280 Cancel = True
281 Caption = 'Clear'
282 ParentShowHint = False
283 ShowHint = False
284 TabOrder = 10
285 OnClick = btnAllClick
286 end
287 object btnPersonal: TButton
288 Left = 277
289 Top = 213
290 Width = 65
291 Height = 21
292 Cancel = True
293 Caption = 'Personal'
294 TabOrder = 11
295 OnClick = btnPublicClick
296 end
297 object cboConversions: TORComboBox
298 Left = 311
299 Top = 178
300 Width = 116
301 Height = 21
302 Style = orcsDropDown
303 AutoSelect = True
304 Color = clWindow
305 DropDownCount = 8
306 Items.Strings = (
307 '<none>'
308 'Standard Deviations'
309 'Inverse Values')
310 ItemHeight = 13
311 ItemTipColor = clWindow
312 ItemTipEnable = True
313 ListItemsOnly = False
314 LongList = False
315 LookupPiece = 0
316 MaxLength = 0
317 ParentShowHint = False
318 ShowHint = False
319 Sorted = False
320 SynonymChars = '<>'
321 TabOrder = 8
322 CharsNeedMatch = 1
323 end
324 object txtMaxSelect: TEdit
325 Left = 311
326 Top = 131
327 Width = 41
328 Height = 21
329 ParentShowHint = False
330 ShowHint = False
331 TabOrder = 6
332 Text = '100'
333 OnChange = txtMaxSelectChange
334 OnExit = txtMaxSelectExit
335 OnKeyPress = txtMaxSelectKeyPress
336 end
337 object spnMaxSelect: TUpDown
338 Left = 352
339 Top = 131
340 Width = 15
341 Height = 21
342 Associate = txtMaxSelect
343 Min = 1
344 Max = 1000
345 ParentShowHint = False
346 Position = 100
347 ShowHint = False
348 TabOrder = 7
349 OnClick = spnMaxSelectClick
350 end
351 object btnPublic: TButton
352 Left = 360
353 Top = 213
354 Width = 65
355 Height = 21
356 Cancel = True
357 Caption = 'Public'
358 ParentShowHint = False
359 ShowHint = False
360 TabOrder = 12
361 OnClick = btnPublicClick
362 end
363 object btnPersonalSave: TButton
364 Left = 277
365 Top = 245
366 Width = 65
367 Height = 21
368 Cancel = True
369 Caption = 'Personal'
370 ParentShowHint = False
371 ShowHint = False
372 TabOrder = 13
373 OnClick = SaveClick
374 end
375 object btnPublicSave: TButton
376 Left = 360
377 Top = 245
378 Width = 65
379 Height = 21
380 Cancel = True
381 Caption = 'Public'
382 ParentShowHint = False
383 ShowHint = False
384 TabOrder = 14
385 OnClick = SaveClick
386 end
387 object lstOptions: TListBox
388 Left = 368
389 Top = 160
390 Width = 57
391 Height = 17
392 ItemHeight = 13
393 Items.Strings = (
394 '3D^A'
395 'Clear Background^B'
396 'Dates^C'
397 'Fixed Date Range^M'
398 'Gradient^D'
399 'Hints^E'
400 'Legend^F'
401 'Lines^G'
402 'Sort by Type^H'
403 'Stay on Top^I'
404 'Values^J'
405 'Zoom, Horizontal^K'
406 'Zoom, Vertical^L')
407 Sorted = True
408 TabOrder = 18
409 Visible = False
410 end
411 object DKLanguageController1: TDKLanguageController
412 Left = 208
413 Top = 152
414 LangData = {
415 100066726D477261706853657474696E67730101000000010000000700436170
416 74696F6E012200000011006C626C4D696E477261706848656967687401010000
417 0002000000070043617074696F6E000C006C626C4D6178477261706873010100
418 000003000000070043617074696F6E000A006C626C4F7074696F6E7301010000
419 0004000000070043617074696F6E00070062766C4261736500000A006C626C53
420 6F7572636573010100000005000000070043617074696F6E000E006C626C436F
421 6E76657273696F6E73010100000006000000070043617074696F6E000C006C62
422 6C4D617853656C656374010100000007000000070043617074696F6E0007006C
423 626C53686F77010100000008000000070043617074696F6E0007006C626C5361
424 7665010100000009000000070043617074696F6E000B0062766C44656661756C
425 747300000E006C626C4F7074696F6E73496E666F01010000000A000000070043
426 617074696F6E000F006C626C4D6178477261706873526566000014006C626C4D
427 696E477261706848656967687452656600000F006C626C4D617853656C656374
428 5265660000060062766C4D6964000009006C737441547970657300000E006C73
429 74536F7572636573436F707900000D0063686B6C73744F7074696F6E73000011
430 007478744D696E477261706848656967687400000C007478744D617847726170
431 68730000110073706E4D696E477261706848656967687400000C0073706E4D61
432 784772617068730000080062746E436C6F736501010000000B00000007004361
433 7074696F6E000A006C7374536F75726365730000060062746E416C6C01010000
434 000C000000070043617074696F6E00080062726E436C65617201010000000D00
435 0000070043617074696F6E000B0062746E506572736F6E616C01010000000E00
436 0000070043617074696F6E000E0063626F436F6E76657273696F6E7301010000
437 000F00000005004974656D73000C007478744D617853656C65637400000C0073
438 706E4D617853656C6563740000090062746E5075626C69630101000000100000
439 00070043617074696F6E000F0062746E506572736F6E616C5361766501010000
440 0011000000070043617074696F6E000D0062746E5075626C6963536176650101
441 00000012000000070043617074696F6E000A006C73744F7074696F6E73010100
442 00001300000005004974656D7300}
443 end
444end
Note: See TracBrowser for help on using the repository browser.