Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UnitSett.dfm - github.com/sanekgusev/LinX-old.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3049a56aac53ea03c92ce8c029f2ed9f7a571a4 (plain)
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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
object FormSett: TFormSett
  Left = 0
  Top = 0
  BorderStyle = bsToolWindow
  Caption = 'Settings'
  ClientHeight = 275
  ClientWidth = 395
  Color = clBtnFace
  ParentFont = True
  KeyPreview = True
  OldCreateOrder = False
  Position = poMainFormCenter
  ShowHint = True
  OnCreate = FormCreate
  OnKeyDown = FormKeyDown
  OnKeyPress = FormKeyPress
  PixelsPerInch = 96
  TextHeight = 13
  object ButtonOK: TSpeedButton
    Left = 120
    Top = 245
    Width = 75
    Height = 25
    Hint = 'Enter'
    Caption = 'OK'
    OnClick = ButtonOKClick
  end
  object ButtonCancel: TSpeedButton
    Left = 200
    Top = 245
    Width = 75
    Height = 25
    Hint = 'Esc'
    Caption = 'Cancel'
    OnClick = ButtonCancelClick
  end
  object PanelLinpack: TPanel
    Left = 5
    Top = 5
    Width = 190
    Height = 165
    BevelKind = bkFlat
    BevelOuter = bvNone
    Caption = 'Linpack'
    FullRepaint = False
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clGrayText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
    TabOrder = 0
    VerticalAlignment = taAlignTop
    object Label1: TLabel
      Left = 5
      Top = 43
      Width = 94
      Height = 13
      Hint = 
        'Here you can change the number of threads Linpack creates. This ' +
        'is also the number of cores that will be used'
      Caption = 'Number of threads:'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object Label2: TLabel
      Left = 5
      Top = 93
      Width = 102
      Height = 13
      Hint = 
        'Arrays of data during execution of Linpack will be aligned to th' +
        'is value. 4 is optimal, 0 means no alignment'
      Caption = 'Data Alignment (KiB):'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object Label5: TLabel
      Left = 5
      Top = 21
      Width = 30
      Height = 13
      Hint = 
        '64-bit Linpack is more stressful than 32-bit one and has no memo' +
        'ry limitations. Consider using it when on a 64-bit OS'
      Caption = 'Mode:'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object Label6: TLabel
      Left = 5
      Top = 68
      Width = 64
      Height = 13
      Hint = 
        'Linpack'#39's priority level. Lowering this value will make the syst' +
        'em more '#8222'responsive'#8220' during testing. Values higher than Normal a' +
        're not recommended'
      Caption = 'Priority class:'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object Label3: TLabel
      Left = 5
      Top = 118
      Width = 137
      Height = 13
      Hint = 
        'This is the maximum Problem Size suitable for 32-bit Linpack (fo' +
        'und empirically). Change it only if you have problems starting L' +
        'inpack'
      Caption = 'Linpack32 max Problem Size:'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object Label4: TLabel
      Left = 5
      Top = 143
      Width = 103
      Height = 13
      Hint = 
        'This is how much physical memory will be left for OS'#39' needs when' +
        ' using all available memory. Don'#39't set this too low'
      Caption = 'Memory for OS (MiB):'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object CBPriority: TComboBox
      Left = 70
      Top = 65
      Width = 115
      Height = 21
      Style = csDropDownList
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ItemHeight = 13
      ItemIndex = 2
      ParentFont = False
      TabOrder = 4
      Text = 'Normal'
      Items.Strings = (
        'Idle'
        'Below normal'
        'Normal'
        'Above normal'
        'High'
        'Real-time')
    end
    object EditThreads: TEdit
      Left = 150
      Top = 40
      Width = 19
      Height = 21
      Alignment = taCenter
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      MaxLength = 3
      NumbersOnly = True
      ParentFont = False
      TabOrder = 2
      Text = '1'
    end
    object EditDA: TEdit
      Left = 150
      Top = 90
      Width = 19
      Height = 21
      Alignment = taCenter
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      MaxLength = 2
      NumbersOnly = True
      ParentFont = False
      TabOrder = 5
      Text = '4'
    end
    object RB32: TRadioButton
      Left = 70
      Top = 20
      Width = 50
      Height = 15
      Caption = '32-bit'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clGrayText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 0
    end
    object RB64: TRadioButton
      Left = 135
      Top = 20
      Width = 50
      Height = 15
      Caption = '64-bit'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clGrayText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 1
    end
    object UpDownThreads: TUpDown
      Left = 169
      Top = 40
      Width = 16
      Height = 21
      Associate = EditThreads
      Min = 1
      Max = 255
      Position = 1
      TabOrder = 3
    end
    object UpDownDA: TUpDown
      Left = 169
      Top = 90
      Width = 16
      Height = 21
      Associate = EditDA
      Max = 64
      Position = 4
      TabOrder = 6
    end
    object EditLin32Max: TEdit
      Left = 145
      Top = 115
      Width = 40
      Height = 21
      Alignment = taCenter
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      MaxLength = 5
      NumbersOnly = True
      ParentFont = False
      TabOrder = 7
    end
    object EditMemForOS: TEdit
      Left = 145
      Top = 140
      Width = 40
      Height = 21
      Alignment = taCenter
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      MaxLength = 3
      NumbersOnly = True
      ParentFont = False
      TabOrder = 8
    end
  end
  object PanelLinX: TPanel
    Left = 200
    Top = 5
    Width = 190
    Height = 165
    BevelKind = bkFlat
    BevelOuter = bvNone
    Caption = 'LinX'
    FullRepaint = False
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clGrayText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
    TabOrder = 1
    VerticalAlignment = taAlignTop
    object CheckBoxGlass: TCheckBox
      Left = 5
      Top = 120
      Width = 180
      Height = 15
      Hint = 
        'When checked, Aero glass will be extended to windows'#39' client are' +
        'a'
      Caption = 'Extend glass (Aero only)'
      Checked = True
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      State = cbChecked
      TabOrder = 5
    end
    object CheckBoxIcon: TCheckBox
      Left = 5
      Top = 80
      Width = 180
      Height = 15
      Hint = 
        'When checked, tray icon will be displayed and LinX will be minim' +
        'ized to tray'
      Caption = 'Tray icon'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 3
    end
    object CheckBoxSounds: TCheckBox
      Left = 5
      Top = 60
      Width = 180
      Height = 15
      Hint = 
        'When checked, LinX will play corresponding sounds upon error/suc' +
        'cessful pass'
      Caption = 'Sounds'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 2
    end
    object CheckBoxStop: TCheckBox
      Left = 5
      Top = 20
      Width = 180
      Height = 15
      Hint = 
        'When checked, testing will stop once an error is detected (recom' +
        'mended)'
      Caption = 'Stop on error'
      Checked = True
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      State = cbChecked
      TabOrder = 0
    end
    object CheckBoxLog: TCheckBox
      Left = 5
      Top = 40
      Width = 180
      Height = 15
      Hint = 
        'When checked, LinX will automatically save output log after ever' +
        'y single test'
      Caption = 'Auto-save log'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 1
    end
    object CheckBoxFilenames: TCheckBox
      Left = 5
      Top = 100
      Width = 180
      Height = 15
      Hint = 
        'When checked, all screenshots and logs will have date and time a' +
        'ppended to their filenames'
      Caption = 'Date/time in filenames'
      Checked = True
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      State = cbChecked
      TabOrder = 4
    end
    object CheckBoxShowHints: TCheckBox
      Left = 5
      Top = 140
      Width = 180
      Height = 15
      Hint = 'When checked, show pop-up hints, just like this one'
      Caption = 'Show hints'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 6
    end
  end
  object PanelExtApps: TPanel
    Left = 5
    Top = 175
    Width = 385
    Height = 65
    BevelKind = bkFlat
    BevelOuter = bvNone
    Caption = 'External Applications And Graphs'
    FullRepaint = False
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clGrayText
    Font.Height = -11
    Font.Name = 'Tahoma'
    Font.Style = []
    ParentFont = False
    TabOrder = 2
    VerticalAlignment = taAlignTop
    object LabelGraphs: TLabel
      Left = 5
      Top = 45
      Width = 38
      Height = 13
      Hint = 'Select, what graphs to create during testing'
      Caption = 'Graphs:'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
    end
    object CheckBoxTemp: TCheckBox
      Left = 200
      Top = 20
      Width = 140
      Height = 15
      Hint = 
        'When checked, testing will stop if CPU temp exceeds the specifie' +
        'd one'
      Caption = 'Maximum allowed T ('#176'C):'
      Enabled = False
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 3
    end
    object EditTemp: TEdit
      Left = 340
      Top = 18
      Width = 24
      Height = 21
      Alignment = taCenter
      Enabled = False
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      MaxLength = 3
      NumbersOnly = True
      ParentFont = False
      TabOrder = 4
      Text = '75'
    end
    object RBEverest: TRadioButton
      Left = 60
      Top = 20
      Width = 65
      Height = 15
      Caption = 'Everest'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 1
      OnClick = RBEverestClick
    end
    object RBNone: TRadioButton
      Left = 5
      Top = 20
      Width = 55
      Height = 15
      Caption = 'None'
      Checked = True
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 0
      TabStop = True
      OnClick = RBNoneClick
    end
    object RBSpeedfan: TRadioButton
      Left = 125
      Top = 20
      Width = 65
      Height = 15
      Caption = 'Speedfan'
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 2
      OnClick = RBEverestClick
    end
    object UpDownTemp: TUpDown
      Left = 364
      Top = 18
      Width = 16
      Height = 21
      Associate = EditTemp
      Enabled = False
      Max = 125
      Position = 75
      TabOrder = 5
    end
    object CheckBoxCPUTemp: TCheckBox
      Left = 60
      Top = 45
      Width = 85
      Height = 15
      Caption = 'CPU Temp'
      Enabled = False
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 6
    end
    object CheckBoxCPUFan: TCheckBox
      Left = 150
      Top = 45
      Width = 85
      Height = 15
      Caption = 'CPU Fan'
      Enabled = False
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 7
    end
    object CheckBoxCPUVcore: TCheckBox
      Left = 240
      Top = 45
      Width = 85
      Height = 15
      Caption = 'CPU Vcore'
      Enabled = False
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 8
    end
    object CheckBox12V: TCheckBox
      Left = 330
      Top = 45
      Width = 50
      Height = 15
      Caption = '+12 V'
      Enabled = False
      Font.Charset = DEFAULT_CHARSET
      Font.Color = clWindowText
      Font.Height = -11
      Font.Name = 'Tahoma'
      Font.Style = []
      ParentFont = False
      TabOrder = 9
    end
  end
end