This repository has been archived by the owner on Mar 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnit1.lfm
3885 lines (3885 loc) · 139 KB
/
Unit1.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
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
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
object Form1: TForm1
Left = 25
Height = 675
Top = 25
Width = 900
HorzScrollBar.Increment = 86
HorzScrollBar.Page = 866
HorzScrollBar.Smooth = True
HorzScrollBar.Tracking = True
VertScrollBar.Increment = 67
VertScrollBar.Page = 675
VertScrollBar.Smooth = True
VertScrollBar.Tracking = True
ActiveControl = PageControl1
AutoScroll = True
Caption = 'Little Argyll GUI'
ClientHeight = 675
ClientWidth = 883
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnShow = FormShow
Position = poDefaultPosOnly
LCLVersion = '1.2.6.0'
object StaticText0: TStaticText
Left = 700
Height = 17
Top = 200
Width = 65
TabOrder = 3
end
object PageControl1: TPageControl
Left = 8
Height = 1020
Top = 72
Width = 858
ActivePage = TabSheet5
BorderSpacing.Bottom = 8
TabIndex = 4
TabOrder = 2
OnChange = PageControl1Change
object TabSheet1: TTabSheet
Caption = 'Monitor calibration'
ClientHeight = 992
ClientWidth = 850
ImageIndex = 2
object Label51: TLabel
AnchorSideRight.Control = Image12
Left = 12
Height = 15
Top = 44
Width = 69
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Color profile:'
ParentColor = False
end
object Image12: TImage
Cursor = crHandPoint
Left = 87
Height = 24
Top = 39
Width = 24
AutoSize = True
OnClick = Image12Click
Picture.Data = {
1754506F727461626C654E6574776F726B477261706869635602000089504E47
0D0A1A0A0000000D4948445200000018000000180806000000E0773DF8000002
1D49444154785EB5D63B68144118C0F1FFB733B933D11CF1D10589425A2576C6
4A83A4D646C14723283E10C12AD8481A390505113D906895C258884D0A8349B4
521B4502A2A2E194A049204ACEC4CB3D763ED7018B7335DC86DC0F966F9B9D3F
D3CCACA82A8D24A3A3E33A3232C16AEAEDDD464FCF6E01B0D1E21C3C718C95D8
F1EC21AFBAF7C5E6D0EDBB44017C00E0C5BB05923AF9ED31FD4706B838486C0E
0163634F348A880F4CE41749EA0CDDDC1C8C66213E5B19E60F1F68FD34CC4AF4
01D162B109D406B2D9B3ACA6BEBE1B35012F9FFFC0FF5CB85F200E2E1DC8F0B7
C9C9A9D80EEA72FD7417004E954AE8B006CEE7267C643901753281F071CEF17E
36E4F554857569CBAE9D1D7E77AB12B001B458A12515D0D662793EB9C4FEED19
84E5596A51797098B81C82604D00A238A790361863D08401AFF3DC536A5C7D83
0304C508A46C80A82222A8260F78E5E91C61753D22ADC056046832014EF191C0
41B305554D1E08CBF37C7FFB99D2CC386B3BF7D26FAF30730B4F00E31F281E7F
849683E481A9991F6CD993050D511CCDEDCD98009C1A4050842FF772A4820CD6
B8E4818ECDED94A60700051C8BC5807215168A214BD14BB154661370EADA4BD2
4D2679405D1504D0105C854CBA02A9121B9BE6706101ADCEF315C81E6D03481E
087FCEE22A169C43D5E0A74BA16106DC1AD46D009F606581FC9D43A080F06F0A
0875B1B143AAEB3275F3DFD411F0C76B83D8E82E90DFD71B0DD2F0DF965F623B
E29ADC48A1880000000049454E44AE426082
}
end
object Edit30: TEdit
Left = 117
Height = 23
Top = 40
Width = 400
TabOrder = 0
end
object Label52: TLabel
Left = 12
Height = 15
Top = 16
Width = 214
Caption = 'Set/clear the monitor profile (dispwin)'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Button13: TButton
Left = 534
Height = 25
Top = 39
Width = 75
Caption = 'Set'
OnClick = Button13Click
TabOrder = 1
end
object Button14: TButton
Left = 616
Height = 25
Top = 39
Width = 75
Caption = 'Clear -c'
OnClick = Button14Click
TabOrder = 2
end
object Button15: TButton
Left = 8
Height = 25
Top = 102
Width = 75
Caption = 'Run'
OnClick = Button15Click
TabOrder = 3
end
object Edit31: TEdit
Left = 8
Height = 23
Top = 72
Width = 830
ParentFont = False
TabOrder = 4
end
object Label53: TLabel
Left = 12
Height = 15
Top = 160
Width = 223
Caption = 'Calibration/single-step profiling (dispcal)'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label54: TLabel
AnchorSideRight.Control = ComboBox8
Left = 16
Height = 15
Top = 188
Width = 77
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'White point -t:'
ParentColor = False
end
object ComboBox8: TComboBox
Left = 99
Height = 23
Top = 184
Width = 100
AutoSelect = False
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'5000'
'5500'
'6500'
'Native'
'Custom:'
)
OnChange = ComboBox8Change
TabOrder = 5
Text = '5500'
end
object Edit60: TEdit
Left = 334
Height = 23
Top = 184
Width = 80
TabOrder = 6
end
object Label55: TLabel
AnchorSideRight.Control = Edit60
Left = 215
Height = 15
Top = 188
Width = 113
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Custom temperature:'
ParentColor = False
end
object Label56: TLabel
AnchorSideRight.Control = ComboBox9
Left = 20
Height = 15
Top = 216
Width = 73
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Brightness -b:'
ParentColor = False
end
object ComboBox9: TComboBox
Left = 99
Height = 23
Top = 212
Width = 100
AutoSelect = False
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'80'
'100'
'120'
'Custom:'
)
OnChange = ComboBox9Change
TabOrder = 7
Text = '100'
end
object Label57: TLabel
AnchorSideRight.Control = Edit61
Left = 225
Height = 15
Top = 216
Width = 103
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Custom brightness:'
ParentColor = False
end
object Edit61: TEdit
Left = 334
Height = 23
Top = 212
Width = 80
TabOrder = 8
end
object Label58: TLabel
AnchorSideRight.Control = ComboBox10
Left = 33
Height = 15
Top = 241
Width = 60
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Gamma -g:'
ParentColor = False
end
object ComboBox10: TComboBox
Left = 99
Height = 23
Top = 238
Width = 100
AutoSelect = False
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'1.8'
'2.2'
'2.4'
'sRGB'
'Custom:'
)
OnChange = ComboBox10Change
TabOrder = 9
Text = '2.2'
end
object Label59: TLabel
AnchorSideRight.Control = Edit62
Left = 239
Height = 15
Top = 241
Width = 89
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Custom gamma:'
ParentColor = False
end
object Edit62: TEdit
Left = 334
Height = 23
Top = 238
Width = 80
TabOrder = 10
end
object Label60: TLabel
AnchorSideRight.Control = ComboBox11
Left = 37
Height = 15
Top = 270
Width = 56
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Quality -q:'
ParentColor = False
end
object ComboBox11: TComboBox
Left = 99
Height = 23
Top = 266
Width = 100
AutoSelect = False
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'Low'
'Medium'
'High'
)
TabOrder = 11
Text = 'Medium'
end
object Label61: TLabel
AnchorSideRight.Control = ComboBox12
Left = 12
Height = 15
Top = 298
Width = 81
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Display type -y:'
ParentColor = False
ParentShowHint = False
end
object ComboBox12: TComboBox
Left = 99
Height = 23
Top = 294
Width = 100
AutoSelect = False
DropDownCount = 15
ItemHeight = 15
Items.Strings = (
''
'b'
'B'
'c'
'e'
'f'
'F'
'g'
'l'
'L'
'n'
'p'
'r'
'R'
'x'
)
ParentShowHint = False
TabOrder = 12
end
object Label63: TLabel
AnchorSideRight.Control = Image13
Left = 12
Height = 15
Top = 354
Width = 96
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Override name -o:'
ParentColor = False
end
object Image13: TImage
Cursor = crHandPoint
Left = 114
Height = 24
Top = 348
Width = 24
AutoSize = True
OnClick = Image13Click
Picture.Data = {
1754506F727461626C654E6574776F726B47726170686963A402000089504E47
0D0A1A0A0000000D4948445200000018000000180806000000E0773DF8000002
6B49444154785EB5964B48156F18879F998E78414183AE680511B5510A2138C5
1F8F2EDCB489362214444404918B68618BFA1348482854D2C62288DC088205B9
118FB548BA2D927413899DC86E145AC7CB39672EDFDBCC371087230D8C781EE6
E30703F33EDF3BEF30338688504C8C64F2898C8E4EB19EB4B6D6D3D292300062
7EF1B633A7580B079E3FE44DFCE8AA1CECBFE70BD0028097EF9688CAD9F931AE
1EBFCBFF03ACCA41607CFCA9F85D68C1546A99A89C23CEED012FD3ABB38A1102
400BAA3E8EB0163A41172B4C4DBEA0BBFB3CEB4967675FBE2020959AD1F9E243
29DF16B24CCEFC62E6F3124A14AE1210D8601A98DE125154969770A97D1FBBAA
17C96776768E7C4C0A487D5FA6A5B1960B6DF58CF52648F634337ABD99C7D79A
48F63633D693E0515782FE8B71869E7D61FA6B1905840AF4CE11187E954644E8
E87B8D520246B07BCB1132B6C2768563FFEDE0E6F0FB6882B91F196C2528A548
AFB89886A18B95979A64728AF945979CADB4F467DAE6F762369A40DF73114420
E708974FEEA72466E21DAC780247F9C541106CC7D5F308234601AE12940B88D0
757F12D3400B0C206BB9087FE170C33610892640822E9472D9B4653B06020220
54B80A1141F94B296CDB81881D6872565008043000D19D89168B968B974B2B96
974E5441500C812BED7584716B683AF20CF453E30643E4C6C469FE4547FC0E96
E3449F010628257E70A8F60461B8B6022276B075631919CBA571773907773611
46D6B2A9AE2C8D26686AD8CCC4E427DECE2ED0FD201B0C5B14E22F153C3588E8
F3551531F6D4D5840B0A5F520D35C13AB2D7042A0823EFDA50817EBD168B98F7
2D30FCCF1B45A2E8BF2D7F0019D65994EE62F95F0000000049454E44AE426082
}
end
object Edit32: TEdit
Left = 144
Height = 23
Top = 348
Width = 400
TabOrder = 13
end
object Label64: TLabel
AnchorSideRight.Control = Edit33
Left = 11
Height = 15
Top = 382
Width = 127
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Override description -O:'
ParentColor = False
end
object Edit33: TEdit
Left = 144
Height = 23
Top = 378
Width = 400
TabOrder = 14
end
object CheckBox1: TCheckBox
Left = 219
Height = 19
Top = 267
Width = 73
Caption = 'Update -u'
TabOrder = 15
end
object Label65: TLabel
AnchorSideRight.Control = Image14
Left = 11
Height = 15
Top = 412
Width = 97
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Colorimiter file -X:'
ParentColor = False
end
object Image14: TImage
Cursor = crHandPoint
Left = 114
Height = 24
Top = 406
Width = 24
AutoSize = True
OnClick = Image14Click
Picture.Data = {
1754506F727461626C654E6574776F726B477261706869635602000089504E47
0D0A1A0A0000000D4948445200000018000000180806000000E0773DF8000002
1D49444154785EB5D63B68144118C0F1FFB733B933D11CF1D10589425A2576C6
4A83A4D646C14723283E10C12AD8481A390505113D906895C258884D0A8349B4
521B4502A2A2E194A049204ACEC4CB3D763ED7018B7335DC86DC0F966F9B9D3F
D3CCACA82A8D24A3A3E33A3232C16AEAEDDD464FCF6E01B0D1E21C3C718C95D8
F1EC21AFBAF7C5E6D0EDBB44017C00E0C5BB05923AF9ED31FD4706B838486C0E
0163634F348A880F4CE41749EA0CDDDC1C8C66213E5B19E60F1F68FD34CC4AF4
01D162B109D406B2D9B3ACA6BEBE1B35012F9FFFC0FF5CB85F200E2E1DC8F0B7
C9C9A9D80EEA72FD7417004E954AE8B006CEE7267C643901753281F071CEF17E
36E4F554857569CBAE9D1D7E77AB12B001B458A12515D0D662793EB9C4FEED19
84E5596A51797098B81C82604D00A238A790361863D08401AFF3DC536A5C7D83
0304C508A46C80A82222A8260F78E5E91C61753D22ADC056046832014EF191C0
41B305554D1E08CBF37C7FFB99D2CC386B3BF7D26FAF30730B4F00E31F281E7F
849683E481A9991F6CD993050D511CCDEDCD98009C1A4050842FF772A4820CD6
B8E4818ECDED94A60700051C8BC5807215168A214BD14BB154661370EADA4BD2
4D2679405D1504D0105C854CBA02A9121B9BE6706101ADCEF315C81E6D03481E
087FCEE22A169C43D5E0A74BA16106DC1AD46D009F606581FC9D43A080F06F0A
0875B1B143AAEB3275F3DFD411F0C76B83D8E82E90DFD71B0DD2F0DF965F623B
E29ADC48A1880000000049454E44AE426082
}
end
object Edit34: TEdit
Left = 144
Height = 23
Top = 408
Width = 400
TabOrder = 16
end
object Edit24: TEdit
Left = 8
Height = 23
Top = 440
Width = 830
TabOrder = 17
end
object Button16: TButton
Left = 8
Height = 25
Top = 470
Width = 75
Caption = 'Generate'
OnClick = Button16Click
TabOrder = 18
end
object Button17: TButton
Left = 90
Height = 25
Top = 470
Width = 75
Caption = 'Run'
OnClick = Button17Click
TabOrder = 19
end
object Button18: TButton
Left = 452
Height = 25
Top = 184
Width = 210
Caption = 'Report on calibrated display -r'
OnClick = Button18Click
TabOrder = 20
end
object Button19: TButton
Left = 452
Height = 25
Top = 212
Width = 210
Caption = 'Report on uncalibrated display -R'
OnClick = Button19Click
TabOrder = 21
end
object CheckBox7: TCheckBox
Left = 304
Height = 19
Top = 267
Width = 186
Caption = 'High resolution (if available) -H'
TabOrder = 22
end
object CheckBox8: TCheckBox
Left = 12
Height = 19
Top = 324
Width = 115
Caption = 'Create a profile -o'
Checked = True
OnChange = CheckBox8Change
State = cbChecked
TabOrder = 23
end
object Label89: TLabel
AnchorSideRight.Control = Edit39
Left = 12
Height = 15
Top = 520
Width = 171
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Remember the monitor settings:'
ParentColor = False
end
object Edit39: TEdit
Left = 189
Height = 23
Top = 516
Width = 356
TabOrder = 24
end
object Image21: TImage
Cursor = crHandPoint
Left = 96
Height = 16
Top = 106
Width = 16
AutoSize = True
OnClick = Image21Click
Picture.Data = {
1754506F727461626C654E6574776F726B477261706869633A02000089504E47
0D0A1A0A0000000D49484452000000100000001008060000001FF3FF61000002
0149444154785E7DD03F6853511886F1E73BE7244D1BDA44412D8A8360DB499C
8A0E55D1A5833AE95210EC288A8E824E2A5A07771107A1E0A47337915205B158
107112E9D256A4855863FEDDDC73CFE70DDEA1D05C1F78D777F8C9F49D0FAF46
860B478DA1AA680282A812796DD65BDD17DD5AEDF9BB67173BE424971F2D7F7E
7D77B2BCD9085680A04A9C049C85F98FDBAC2C6FBCFDB9BE716BE9E9F9167D72
4664A8D652FB7D4B3146897DA0DEF69C191F646AA24AB968CE2DBC69DC06EED1
27A32056A0E4A068A5374A45C3E6769B893D307BA2C2E1D1A12BE4E40044A060
4115B477E00C8BDFFE1C89BCC7FBC0B1F103DC9CFFD294A052EFF8F5B5B5CECB
D4E6496AD3760A0882352653514250A238E6DAD9836C3502FF6C4687329BB1D4
E67E6A3379FAFAC28C538500D94DC00A149D2149945F2DE53F3617529BC74E55
11C0193062080A564081CC064410DD6953E0F8FE0A8B4B03370C6A4882A75F99
0D4EC06536AB35E1FD6AC4EFB6527006276A6DE41B40959DE5D930601123586B
51C0C5DDA85930C3E54A2946158C0822408E8D68EF48101154C1F9447F5C9DFB
B4AFEBA980B6410065B862993D7568978D094011061DA82A6E61EEE4347DBAF4
70254E6D1C38FA15D443100C39895AD7B3C9ABE726C18823A756BB534B6DF6EE
B20104B06684A0BE9B7B1075C3D79907CB636046419B990D19AB044D1A957261
F02FB76E00861030655A0000000049454E44AE426082
}
end
object Image22: TImage
Cursor = crHandPoint
Left = 178
Height = 16
Top = 474
Width = 16
AutoSize = True
OnClick = Image22Click
Picture.Data = {
1754506F727461626C654E6574776F726B477261706869633A02000089504E47
0D0A1A0A0000000D49484452000000100000001008060000001FF3FF61000002
0149444154785E7DD03F6853511886F1E73BE7244D1BDA44412D8A8360DB499C
8A0E55D1A5833AE95210EC288A8E824E2A5A07771107A1E0A47337915205B158
107112E9D256A4855863FEDDDC73CFE70DDEA1D05C1F78D777F8C9F49D0FAF46
860B478DA1AA680282A812796DD65BDD17DD5AEDF9BB67173BE424971F2D7F7E
7D77B2BCD9085680A04A9C049C85F98FDBAC2C6FBCFDB9BE716BE9E9F9167D72
4664A8D652FB7D4B3146897DA0DEF69C191F646AA24AB968CE2DBC69DC06EED1
27A32056A0E4A068A5374A45C3E6769B893D307BA2C2E1D1A12BE4E40044A060
4115B477E00C8BDFFE1C89BCC7FBC0B1F103DC9CFFD294A052EFF8F5B5B5CECB
D4E6496AD3760A0882352653514250A238E6DAD9836C3502FF6C4687329BB1D4
E67E6A3379FAFAC28C538500D94DC00A149D2149945F2DE53F3617529BC74E55
11C0193062080A564081CC064410DD6953E0F8FE0A8B4B03370C6A4882A75F99
0D4EC06536AB35E1FD6AC4EFB6527006276A6DE41B40959DE5D930601123586B
51C0C5DDA85930C3E54A2946158C0822408E8D68EF48101154C1F9447F5C9DFB
B4AFEBA980B6410065B862993D7568978D094011061DA82A6E61EEE4347DBAF4
70254E6D1C38FA15D443100C39895AD7B3C9ABE726C18823A756BB534B6DF6EE
B20104B06684A0BE9B7B1075C3D79907CB636046419B990D19AB044D1A957261
F02FB76E00861030655A0000000049454E44AE426082
}
end
object Image33: TImage
Left = 698
Height = 16
Hint = 'These buttons run their respective commands directly.'
Top = 43
Width = 16
AutoSize = True
ParentShowHint = False
Picture.Data = {
1754506F727461626C654E6574776F726B47726170686963ED02000089504E47
0D0A1A0A0000000D49484452000000100000001008060000001FF3FF61000002
B449444154785EA5535D485469187EE6349261A566E48C1396A608456450BB16
25DE44454B10035DD8547411C1524B1779175141B5BB2C0576E552903F4CEDDA
0F528AA4A542564A98D3AC6E9AE154CE5FFE36BFE77CE77CDFDB39431E322F7D
E0F9DEF7BB78DEF7795F782D448485C08A1FD03DC2D609A24A21E8881E6D4208
7041213DD6E9D1BDAF34F33DBEC31C079D4349A72EBCBE26C76AB71007E71C06
244902E3C0E05822C885387570DBAA7BB31A6936691F883B15A6D516AE94ECB1
781CBD439378D0E3C7DD1763E8FC2F842F910436E6A7DB1332ABBDD9FED139A7
408B27522833B5BA38D79A119C8AA3A92F8C285350599E0F57453E562C5B8C47
9E203E84A2F8A96879465C66D5D79A860BCD1DC80A7395E42DC99B892A68ED0F
4391551CFAA5088005067697E6C2EB9B44D760187B363BB0B92033AFCB1B7201
B898729090D5C36912C1333A83A4CCA00A8EA92843873784DE77E3A932E51B56
62261647DFE804B2965A114FB2C3E608FA5C0E0B08BEF10834CEC13486DFEFF5
43B2086C5A9B8D4842C5C7CF31704DC0179C865592104B2A0E738444520111A0
E9649A9E0B4AFD77ACB7613AA6E0AFC6D790990602A05904C84286039805F48F
9F715EE4C84A47249A80109A4E81337F77C300573580040804BB2D074945359A
FACD02BA9DFAC078FC4269413646C6A6C00C0180CBC7CA20885055D3F5AD9BC0
D6925C0C7F9836C6AE3777A03B68687A3E1AB04AC0DE2DAB9166B540D354DCE9
788B7F3B876040122A76FF5C8CB445126EB50E04F4C537C00011A578F48F27CE
4357DA62CF0682D4F1C64F97DC3D74E26A2B1DFFB385CED776D3E3573E7ADAFF
892A4E37C676FEF68F7356673C260F9C6B76EE3FFB3050DFF63FF50E87C9E39B
48F1E5DB10DD68F6D2F693B70365BFBA4DB1C179D7B8ABEAFE3A2E8C63124738
173621085C889020AAD373F7AB1AD7FC635A08BE02CC09B289F75EDD1A000000
0049454E44AE426082
}
ShowHint = True
end
object Image34: TImage
Left = 206
Height = 16
Hint = 'Specific to most colorimeters; see “Operation of particular instruments” (instruments.html).'
Top = 297
Width = 16
AutoSize = True
ParentShowHint = False
Picture.Data = {
1754506F727461626C654E6574776F726B47726170686963ED02000089504E47
0D0A1A0A0000000D49484452000000100000001008060000001FF3FF61000002
B449444154785EA5535D485469187EE6349261A566E48C1396A608456450BB16
25DE44454B10035DD8547411C1524B1779175141B5BB2C0576E552903F4CEDDA
0F528AA4A542564A98D3AC6E9AE154CE5FFE36BFE77CE77CDFDB39431E322F7D
E0F9DEF7BB78DEF7795F782D448485C08A1FD03DC2D609A24A21E8881E6D4208
7041213DD6E9D1BDAF34F33DBEC31C079D4349A72EBCBE26C76AB71007E71C06
244902E3C0E05822C885387570DBAA7BB31A6936691F883B15A6D516AE94ECB1
781CBD439378D0E3C7DD1763E8FC2F842F910436E6A7DB1332ABBDD9FED139A7
408B27522833B5BA38D79A119C8AA3A92F8C285350599E0F57453E562C5B8C47
9E203E84A2F8A96879465C66D5D79A860BCD1DC80A7395E42DC99B892A68ED0F
4391551CFAA5088005067697E6C2EB9B44D760187B363BB0B92033AFCB1B7201
B898729090D5C36912C1333A83A4CCA00A8EA92843873784DE77E3A932E51B56
62261647DFE804B2965A114FB2C3E608FA5C0E0B08BEF10834CEC13486DFEFF5
43B2086C5A9B8D4842C5C7CF31704DC0179C865592104B2A0E738444520111A0
E9649A9E0B4AFD77ACB7613AA6E0AFC6D790990602A05904C84286039805F48F
9F715EE4C84A47249A80109A4E81337F77C300573580040804BB2D074945359A
FACD02BA9DFAC078FC4269413646C6A6C00C0180CBC7CA20885055D3F5AD9BC0
D6925C0C7F9836C6AE3777A03B68687A3E1AB04AC0DE2DAB9166B540D354DCE9
788B7F3B876040122A76FF5C8CB445126EB50E04F4C537C00011A578F48F27CE
4357DA62CF0682D4F1C64F97DC3D74E26A2B1DFFB385CED776D3E3573E7ADAFF
892A4E37C676FEF68F7356673C260F9C6B76EE3FFB3050DFF63FF50E87C9E39B
48F1E5DB10DD68F6D2F693B70365BFBA4DB1C179D7B8ABEAFE3A2E8C63124738
173621085C889020AAD373F7AB1AD7FC635A08BE02CC09B289F75EDD1A000000
0049454E44AE426082
}
ShowHint = True
end
object Image36: TImage
Left = 550
Height = 16
Hint = 'Brightness, contrast, red, green, blue, etc. Save here for convenience only.'
Top = 519
Width = 16
AutoSize = True
ParentShowHint = False
Picture.Data = {
1754506F727461626C654E6574776F726B47726170686963ED02000089504E47
0D0A1A0A0000000D49484452000000100000001008060000001FF3FF61000002
B449444154785EA5535D485469187EE6349261A566E48C1396A608456450BB16
25DE44454B10035DD8547411C1524B1779175141B5BB2C0576E552903F4CEDDA
0F528AA4A542564A98D3AC6E9AE154CE5FFE36BFE77CE77CDFDB39431E322F7D
E0F9DEF7BB78DEF7795F782D448485C08A1FD03DC2D609A24A21E8881E6D4208
7041213DD6E9D1BDAF34F33DBEC31C079D4349A72EBCBE26C76AB71007E71C06
244902E3C0E05822C885387570DBAA7BB31A6936691F883B15A6D516AE94ECB1
781CBD439378D0E3C7DD1763E8FC2F842F910436E6A7DB1332ABBDD9FED139A7
408B27522833B5BA38D79A119C8AA3A92F8C285350599E0F57453E562C5B8C47
9E203E84A2F8A96879465C66D5D79A860BCD1DC80A7395E42DC99B892A68ED0F
4391551CFAA5088005067697E6C2EB9B44D760187B363BB0B92033AFCB1B7201
B898729090D5C36912C1333A83A4CCA00A8EA92843873784DE77E3A932E51B56
62261647DFE804B2965A114FB2C3E608FA5C0E0B08BEF10834CEC13486DFEFF5
43B2086C5A9B8D4842C5C7CF31704DC0179C865592104B2A0E738444520111A0
E9649A9E0B4AFD77ACB7613AA6E0AFC6D790990602A05904C84286039805F48F
9F715EE4C84A47249A80109A4E81337F77C300573580040804BB2D074945359A
FACD02BA9DFAC078FC4269413646C6A6C00C0180CBC7CA20885055D3F5AD9BC0
D6925C0C7F9836C6AE3777A03B68687A3E1AB04AC0DE2DAB9166B540D354DCE9
788B7F3B876040122A76FF5C8CB445126EB50E04F4C537C00011A578F48F27CE
4357DA62CF0682D4F1C64F97DC3D74E26A2B1DFFB385CED776D3E3573E7ADAFF
892A4E37C676FEF68F7356673C260F9C6B76EE3FFB3050DFF63FF50E87C9E39B
48F1E5DB10DD68F6D2F693B70365BFBA4DB1C179D7B8ABEAFE3A2E8C63124738
173621085C889020AAD373F7AB1AD7FC635A08BE02CC09B289F75EDD1A000000
0049454E44AE426082
}
ShowHint = True
end
object Label102: TLabel
AnchorSideLeft.Side = asrBottom
Cursor = crHandPoint
Left = 282
Height = 15
Top = 475
Width = 111
BorderSpacing.Left = 6
Caption = 'web browsing profile'
Font.Style = [fsUnderline]
ParentColor = False
ParentFont = False
OnClick = Label102Click
end
object Label103: TLabel
AnchorSideLeft.Side = asrBottom
Cursor = crHandPoint
Left = 403
Height = 15
Top = 475
Width = 136
BorderSpacing.Left = 6
Caption = 'print workflow calibration'
Font.Style = [fsUnderline]
ParentColor = False
ParentFont = False
OnClick = Label103Click
end
object Label38: TLabel
Left = 225
Height = 15
Top = 475
Width = 52
Caption = 'examples:'
ParentColor = False
end
object Label62: TLabel
Left = 397
Height = 15
Top = 475
Width = 3
Caption = '|'
ParentColor = False
end
end
object TabSheet2: TTabSheet
Caption = 'Monitor profiling'
ClientHeight = 992
ClientWidth = 850
object Label66: TLabel
Left = 12
Height = 15
Top = 16
Width = 173
Caption = 'Generate patch values (targen)'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label67: TLabel
AnchorSideRight.Control = Edit70
Left = 40
Height = 15
Top = 44
Width = 155
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Patches - white (default 4) -e:'
ParentColor = False
end
object Label68: TLabel
AnchorSideRight.Control = Edit71
Left = 92
Height = 15
Top = 68
Width = 103
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'black (default 4) -B:'
ParentColor = False
end
object Label69: TLabel
AnchorSideRight.Control = Edit72
Left = 16
Height = 15
Top = 92
Width = 179
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'single channel steps (default 0) -s:'
ParentColor = False
end
object Label70: TLabel
AnchorSideRight.Control = Edit73
Left = 45
Height = 15
Top = 116
Width = 150
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'gray axis steps (default 0) -g:'
ParentColor = False
end
object Label71: TLabel
AnchorSideRight.Control = Edit74
Left = 12
Height = 15
Top = 140
Width = 183
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'full spread, to total (default 836) -f:'
ParentColor = False
end
object Edit70: TEdit
Left = 201
Height = 23
Top = 40
Width = 49
TabOrder = 0
end
object Edit71: TEdit
Left = 201
Height = 23
Top = 64
Width = 49
TabOrder = 1
end
object Edit72: TEdit
Left = 201
Height = 23
Top = 88
Width = 49
TabOrder = 2
end
object Edit73: TEdit
Left = 201
Height = 23
Top = 112
Width = 49
TabOrder = 3
end
object Edit74: TEdit
Left = 201
Height = 23
Top = 136
Width = 49
TabOrder = 4
end
object Label72: TLabel
AnchorSideRight.Control = Image15
Left = 21
Height = 15
Top = 172
Width = 144
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Pre-conditioning profile -c:'
ParentColor = False
end
object Image15: TImage
Cursor = crHandPoint
Left = 171
Height = 24
Top = 168
Width = 24
AutoSize = True
OnClick = Image15Click
Picture.Data = {
1754506F727461626C654E6574776F726B477261706869635602000089504E47
0D0A1A0A0000000D4948445200000018000000180806000000E0773DF8000002
1D49444154785EB5D63B68144118C0F1FFB733B933D11CF1D10589425A2576C6
4A83A4D646C14723283E10C12AD8481A390505113D906895C258884D0A8349B4
521B4502A2A2E194A049204ACEC4CB3D763ED7018B7335DC86DC0F966F9B9D3F
D3CCACA82A8D24A3A3E33A3232C16AEAEDDD464FCF6E01B0D1E21C3C718C95D8
F1EC21AFBAF7C5E6D0EDBB44017C00E0C5BB05923AF9ED31FD4706B838486C0E
0163634F348A880F4CE41749EA0CDDDC1C8C66213E5B19E60F1F68FD34CC4AF4
01D162B109D406B2D9B3ACA6BEBE1B35012F9FFFC0FF5CB85F200E2E1DC8F0B7
C9C9A9D80EEA72FD7417004E954AE8B006CEE7267C643901753281F071CEF17E
36E4F554857569CBAE9D1D7E77AB12B001B458A12515D0D662793EB9C4FEED19
84E5596A51797098B81C82604D00A238A790361863D08401AFF3DC536A5C7D83
0304C508A46C80A82222A8260F78E5E91C61753D22ADC056046832014EF191C0
41B305554D1E08CBF37C7FFB99D2CC386B3BF7D26FAF30730B4F00E31F281E7F
849683E481A9991F6CD993050D511CCDEDCD98009C1A4050842FF772A4820CD6
B8E4818ECDED94A60700051C8BC5807215168A214BD14BB154661370EADA4BD2
4D2679405D1504D0105C854CBA02A9121B9BE6706101ADCEF315C81E6D03481E
087FCEE22A169C43D5E0A74BA16106DC1AD46D009F606581FC9D43A080F06F0A
0875B1B143AAEB3275F3DFD411F0C76B83D8E82E90DFD71B0DD2F0DF965F623B
E29ADC48A1880000000049454E44AE426082
}
end
object Edit25: TEdit
Left = 201
Height = 23
Top = 168
Width = 400
TabOrder = 5
end
object Edit26: TEdit
Left = 8
Height = 23
Top = 200
Width = 830
TabOrder = 6
end
object Button20: TButton
Left = 8
Height = 25
Top = 230
Width = 75
Caption = 'Generate'
OnClick = Button20Click
TabOrder = 7
end
object Button21: TButton
Left = 90
Height = 25
Top = 230
Width = 75
Caption = 'Run'
OnClick = Button21Click
TabOrder = 8
end
object Label73: TLabel
Left = 12
Height = 15
Top = 288
Width = 154
Caption = 'Read the patches (dispread)'
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
object Label74: TLabel
AnchorSideRight.Control = ComboBox13
Left = 12
Height = 15
Top = 316
Width = 81
Anchors = [akTop, akRight]
BorderSpacing.Right = 6
Caption = 'Display type -y:'
ParentColor = False
ParentShowHint = False
end
object ComboBox13: TComboBox
Left = 99
Height = 23
Top = 312
Width = 100
AutoSelect = False
DropDownCount = 15
ItemHeight = 15
Items.Strings = (
''
'b'
'B'
'c'
'e'
'f'
'F'
'g'
'l'
'L'