-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUnit1.dfm
1512 lines (1512 loc) · 39 KB
/
Unit1.dfm
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 = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
BorderWidth = 1
Caption = 'nooLite ONE'
ClientHeight = 738
ClientWidth = 1150
Color = 16250871
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnClose = FormClose
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object AdvSmoothStatusIndicator1: TAdvSmoothStatusIndicator
Left = 949
Top = 13
Width = 20
Height = 20
Caption = ' '
Version = '1.0.1.0'
Appearance.Fill.Color = 9276896
Appearance.Fill.ColorTo = clSilver
Appearance.Fill.ColorMirror = clNone
Appearance.Fill.ColorMirrorTo = clNone
Appearance.Fill.GradientType = gtSolid
Appearance.Fill.GradientMirrorType = gtSolid
Appearance.Fill.BorderColor = clGray
Appearance.Fill.Rounding = 10
Appearance.Fill.ShadowOffset = 0
Appearance.Fill.Glow = gmNone
Appearance.Font.Charset = DEFAULT_CHARSET
Appearance.Font.Color = clWhite
Appearance.Font.Height = -11
Appearance.Font.Name = 'Tahoma'
Appearance.Font.Style = []
Appearance.Glow = False
end
object Label19: TLabel
Left = 880
Top = 8
Width = 63
Height = 25
Alignment = taRightJustify
Caption = '-------'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label1: TLabel
Left = 428
Top = 448
Width = 140
Height = 19
Caption = #1050#1086#1084#1072#1085#1076#1072' nooLite'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label2: TLabel
Left = 145
Top = 448
Width = 125
Height = 19
Caption = #1056#1077#1078#1080#1084' '#1088#1072#1073#1086#1090#1099
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label3: TLabel
Left = 145
Top = 503
Width = 200
Height = 19
Caption = #1059#1087#1088#1072#1074#1083#1103#1102#1097#1072#1103' '#1082#1086#1084#1072#1085#1076#1072
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label5: TLabel
Left = 430
Top = 501
Width = 116
Height = 19
Caption = #1040#1076#1088#1077#1089' '#1082#1072#1085#1072#1083#1072
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label4: TLabel
Left = 572
Top = 503
Width = 85
Height = 19
Caption = 'RES/TOGL'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label13: TLabel
Left = 8
Top = 8
Width = 95
Height = 25
Caption = #1050#1072#1085#1072#1083#1099':'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label15: TLabel
Left = 333
Top = 8
Width = 132
Height = 25
Caption = #1059#1089#1090#1088#1086#1081#1089#1090#1074#1072':'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object AdvCircularProgress1: TAdvCircularProgress
Left = 627
Top = 388
Width = 48
Height = 48
Margins.Left = 0
Margins.Top = 0
Margins.Right = 0
Margins.Bottom = 0
Enabled = False
Max = 10
Step = 1
Visible = False
Appearance.BackGroundColor = clNone
Appearance.BorderColor = clNone
Appearance.ActiveSegmentColor = 10012773
Appearance.InActiveSegmentColor = 16767892
Appearance.TransitionSegmentColor = 16767892
Appearance.ProgressSegmentColor = clNone
Interval = 100
end
object Shape1: TShape
Left = 8
Top = 439
Width = 963
Height = 3
Pen.Color = clGray
Pen.Width = 2
end
object Label6: TLabel
Left = 331
Top = 364
Width = 638
Height = 19
Alignment = taCenter
AutoSize = False
Caption = #1057#1086#1089#1090#1086#1103#1085#1080#1077
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label7: TLabel
Left = 733
Top = 503
Width = 22
Height = 19
Caption = 'D0'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label8: TLabel
Left = 794
Top = 503
Width = 22
Height = 19
Caption = 'D1'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label9: TLabel
Left = 855
Top = 503
Width = 22
Height = 19
Caption = 'D2'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label10: TLabel
Left = 916
Top = 503
Width = 22
Height = 19
Caption = 'D3'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label11: TLabel
Left = 671
Top = 503
Width = 34
Height = 19
Caption = 'FMT'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label12: TLabel
Left = 663
Top = 448
Width = 51
Height = 19
Caption = #1040#1076#1088#1077#1089
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label14: TLabel
Left = 741
Top = 448
Width = 111
Height = 18
Caption = #1050#1086#1083'. '#1087#1086#1074#1090#1086#1088#1086#1074
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object AdvGlassButton1: TAdvGlassButton
Left = 8
Top = 448
Width = 121
Height = 58
BackColor = 10012773
Caption = #1055#1077#1088#1077#1076#1072#1090#1100
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 10012773
GlowColor = 10012773
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 10012773
TabOrder = 0
Version = '1.3.0.0'
OnClick = AdvGlassButton1Click
end
object ComboBox1: TComboBox
Left = 430
Top = 473
Width = 227
Height = 24
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ItemIndex = 0
ParentFont = False
TabOrder = 1
Text = 'OFF=0'
Items.Strings = (
'OFF=0'
'Bright_Down=1'
'On=2'
'Bright_Up=3'
'Switch=4'
'Bright_Back=5'
'Set_Brightness=6'
'Load_Preset=7'
'Save_Preset=8'
'Unbind=9'
'Stop_Reg=10'
'-'#1088#1077#1079#1077#1088#1074'-'#1085#1077' '#1080#1089#1087'.-=11'
'-'#1088#1077#1079#1077#1088#1074'-'#1085#1077' '#1080#1089#1087'.-=12'
'-'#1088#1077#1079#1077#1088#1074'-'#1085#1077' '#1080#1089#1087'.-=13'
'-'#1088#1077#1079#1077#1088#1074'-'#1085#1077' '#1080#1089#1087'.-=14'
'Bind=15'
'Roll_Color=16'
'Switch_Color=17'
'Switch_Mode=18'
'Speed_Mode_Switch=19'
'Battery_Low=20'
'Send_Temp_Humi=21'
'Test_Result=22'
'Shadow_Load_Preset=23'
'Shadow_Set_Bright=24'
'Temporary_On=25'
'Modes=26'
'---'
'CMD_Read_State=128'
'CMD_Write_State=129'
'CMD_Send_State=130'
'CMD_Service=131'
'CMD_Clear_Mem=132')
end
object ComboBox2: TComboBox
Left = 145
Top = 473
Width = 144
Height = 24
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ItemIndex = 0
ParentFont = False
TabOrder = 2
Text = 'nooLite TX'
Items.Strings = (
'nooLite TX'
'nooLite RX'
'nooLite-F TX'
'nooLite-F RX'
#1057#1077#1088#1074#1080#1089#1085#1099#1081
'Bootloader')
end
object ComboBox3: TComboBox
Left = 145
Top = 528
Width = 269
Height = 24
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ItemIndex = 0
ParentFont = False
TabOrder = 3
Text = #1055#1077#1088#1077#1076#1072#1090#1100' '#1082#1086#1084#1072#1085#1076#1091
Items.Strings = (
#1055#1077#1088#1077#1076#1072#1090#1100' '#1082#1086#1084#1072#1085#1076#1091
#1055#1077#1088#1077#1076#1072#1090#1100' '#1064#1042' '#1082#1086#1084#1072#1085#1076#1091
#1057#1095#1080#1090#1072#1090#1100' '#1086#1090#1074#1077#1090
#1042#1082#1083#1102#1095#1080#1090#1100' '#1087#1088#1080#1074#1103#1079#1082#1091
#1042#1099#1082#1083#1102#1095#1080#1090#1100' '#1087#1088#1080#1074#1103#1079#1082#1091
#1054#1095#1080#1089#1090#1080#1090#1100' '#1103#1095#1077#1081#1082#1091' ('#1082#1072#1085#1072#1083')'
#1054#1095#1080#1089#1090#1080#1090#1100' '#1087#1072#1084#1103#1090#1100' ('#1074#1089#1077' '#1082#1072#1085#1072#1083#1099')'
#1054#1090#1074#1103#1079#1072#1090#1100' '#1072#1076#1088#1077#1089' '#1086#1090' '#1082#1072#1085#1072#1083#1072
#1055#1077#1088#1077#1076#1072#1090#1100' '#1087#1086' '#1072#1076#1088#1077#1089#1091' F ('#1089' '#1082#1072#1085#1072#1083#1086#1084')'
#1055#1077#1088#1077#1076#1072#1090#1100' '#1087#1086' '#1072#1076#1088#1077#1089#1091' F ('#1073#1077#1079' '#1082#1072#1085#1072#1083#1072')'
'B_CMD_BOOT'
'B_CMD_GETID'
'B_CMD_ERASE'
'B_CMD_WRITE'
'B_CMD_RESET_OK'
'B_CMD_EXIT_BOOT'
'-'
#1053#1072#1089#1090#1088#1086#1081#1082#1072' ('#1079#1072#1087#1080#1089#1100')'
#1053#1072#1089#1090#1088#1086#1081#1082#1072' ('#1095#1090#1077#1085#1080#1077')')
end
object SpinEdit1: TSpinEdit
Left = 430
Top = 526
Width = 119
Height = 26
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
MaxValue = 255
MinValue = 0
ParentFont = False
TabOrder = 4
Value = 0
end
object memo1: TRichEdit
Left = 7
Top = 560
Width = 963
Height = 177
Font.Charset = RUSSIAN_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
HideScrollBars = False
ParentFont = False
ScrollBars = ssVertical
TabOrder = 5
end
object SpinEdit7: TSpinEdit
Left = 572
Top = 528
Width = 85
Height = 26
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
MaxValue = 255
MinValue = 0
ParentFont = False
TabOrder = 6
Value = 0
end
object AdvGlassButton3: TAdvGlassButton
Left = 308
Top = 449
Width = 50
Height = 23
BackColor = 6940136
Caption = 'TX'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 6940136
GlowColor = 6940136
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 6940136
TabOrder = 7
Version = '1.3.0.0'
OnClick = AdvGlassButton3Click
end
object AdvGlassButton4: TAdvGlassButton
Left = 364
Top = 448
Width = 50
Height = 23
BackColor = 10012773
Caption = 'RX'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 10012773
GlowColor = 10012773
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 10012773
TabOrder = 8
Version = '1.3.0.0'
OnClick = AdvGlassButton4Click
end
object AdvGlassButton5: TAdvGlassButton
Left = 308
Top = 474
Width = 50
Height = 23
BackColor = 9276896
Caption = 'F_TX'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 9276896
GlowColor = 9276896
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 9276896
TabOrder = 9
Version = '1.3.0.0'
OnClick = AdvGlassButton5Click
end
object AdvGlassButton6: TAdvGlassButton
Left = 364
Top = 474
Width = 50
Height = 23
BackColor = 16767892
Caption = 'F_RX'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 16767892
GlowColor = 16767892
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 16767892
TabOrder = 10
Version = '1.3.0.0'
OnClick = AdvGlassButton6Click
end
object AdvGlassButton8: TAdvGlassButton
Left = 213
Top = 166
Width = 114
Height = 50
BackColor = 10012773
Caption = #1042#1082#1083#1102#1095#1080#1090#1100
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 10012773
GlowColor = 10012773
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 10012773
TabOrder = 11
Version = '1.3.0.0'
OnClick = AdvGlassButton8Click
end
object AdvGlassButton9: TAdvGlassButton
Left = 213
Top = 222
Width = 114
Height = 50
BackColor = 9276896
Caption = #1042#1099#1082#1083#1102#1095#1080#1090#1100
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 9276896
GlowColor = 9276896
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 9276896
TabOrder = 12
Version = '1.3.0.0'
OnClick = AdvGlassButton9Click
end
object ListBox1: TListBox
Left = 8
Top = 39
Width = 196
Height = 345
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -19
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ItemHeight = 23
Items.Strings = (
#1050#1072#1085#1072#1083' 0'
#1050#1072#1085#1072#1083' 1'
#1050#1072#1085#1072#1083' 2'
#1050#1072#1085#1072#1083' 3'
#1050#1072#1085#1072#1083' 4'
#1050#1072#1085#1072#1083' 5'
#1050#1072#1085#1072#1083' 6'
#1050#1072#1085#1072#1083' 7'
#1050#1072#1085#1072#1083' 8'
#1050#1072#1085#1072#1083' 9'
#1050#1072#1085#1072#1083' 10'
#1050#1072#1085#1072#1083' 11'
#1050#1072#1085#1072#1083' 12'
#1050#1072#1085#1072#1083' 13'
#1050#1072#1085#1072#1083' 14'
#1050#1072#1085#1072#1083' 15'
#1050#1072#1085#1072#1083' 16'
#1050#1072#1085#1072#1083' 17'
#1050#1072#1085#1072#1083' 18'
#1050#1072#1085#1072#1083' 19'
#1050#1072#1085#1072#1083' 20'
#1050#1072#1085#1072#1083' 21'
#1050#1072#1085#1072#1083' 22'
#1050#1072#1085#1072#1083' 23'
#1050#1072#1085#1072#1083' 24'
#1050#1072#1085#1072#1083' 25'
#1050#1072#1085#1072#1083' 26'
#1050#1072#1085#1072#1083' 27'
#1050#1072#1085#1072#1083' 28'
#1050#1072#1085#1072#1083' 29'
#1050#1072#1085#1072#1083' 30'
#1050#1072#1085#1072#1083' 31'
#1050#1072#1085#1072#1083' 32'
#1050#1072#1085#1072#1083' 33'
#1050#1072#1085#1072#1083' 34'
#1050#1072#1085#1072#1083' 35'
#1050#1072#1085#1072#1083' 36'
#1050#1072#1085#1072#1083' 37'
#1050#1072#1085#1072#1083' 38'
#1050#1072#1085#1072#1083' 39'
#1050#1072#1085#1072#1083' 40'
#1050#1072#1085#1072#1083' 41'
#1050#1072#1085#1072#1083' 42'
#1050#1072#1085#1072#1083' 43'
#1050#1072#1085#1072#1083' 44'
#1050#1072#1085#1072#1083' 45'
#1050#1072#1085#1072#1083' 46'
#1050#1072#1085#1072#1083' 47'
#1050#1072#1085#1072#1083' 48'
#1050#1072#1085#1072#1083' 49'
#1050#1072#1085#1072#1083' 50'
#1050#1072#1085#1072#1083' 51'
#1050#1072#1085#1072#1083' 52'
#1050#1072#1085#1072#1083' 53'
#1050#1072#1085#1072#1083' 54'
#1050#1072#1085#1072#1083' 55'
#1050#1072#1085#1072#1083' 56'
#1050#1072#1085#1072#1083' 57'
#1050#1072#1085#1072#1083' 58'
#1050#1072#1085#1072#1083' 59'
#1050#1072#1085#1072#1083' 60'
#1050#1072#1085#1072#1083' 61'
#1050#1072#1085#1072#1083' 62'
#1050#1072#1085#1072#1083' 63')
ParentFont = False
TabOrder = 13
OnClick = ListBox1Click
end
object AdvGlassButton10: TAdvGlassButton
Left = 213
Top = 334
Width = 114
Height = 50
BackColor = 10012773
Caption = #1057#1086#1093#1088#1072#1085#1080#1090#1100' '#1089#1094#1077#1085#1072#1088#1080#1081
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 10012773
GlowColor = 10012773
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 10012773
TabOrder = 14
Version = '1.3.0.0'
OnClick = AdvGlassButton10Click
end
object AdvGlassButton11: TAdvGlassButton
Left = 213
Top = 278
Width = 114
Height = 50
BackColor = 6940136
Caption = #1042#1099#1079#1074#1072#1090#1100' '#1089#1094#1077#1085#1072#1088#1080#1081
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 6940136
GlowColor = 6940136
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 6940136
TabOrder = 15
Version = '1.3.0.0'
OnClick = AdvGlassButton11Click
end
object AdvGlassButton12: TAdvGlassButton
Left = 213
Top = 39
Width = 114
Height = 66
BackColor = 6940136
Caption = #1057#1095#1080#1090#1072#1090#1100' '#1089#1086#1089#1090#1086#1103#1085#1080#1077
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 6940136
GlowColor = 6940136
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 6940136
TabOrder = 16
Version = '1.3.0.0'
OnClick = AdvGlassButton12Click
end
object AdvStringGrid1: TAdvStringGrid
Left = 333
Top = 39
Width = 640
Height = 323
Cursor = crDefault
Ctl3D = True
DefaultColWidth = 127
DrawingStyle = gdsClassic
FixedCols = 0
RowCount = 2
GridLineWidth = 2
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRowSelect]
ParentCtl3D = False
PopupMenu = PopupMenu1
ScrollBars = ssBoth
TabOrder = 17
OnClick = AdvStringGrid1Click
OnDrawCell = AdvStringGrid1DrawCell
ActiveRowColor = clNone
GridLineColor = 14079702
HoverRowCells = [hcNormal, hcSelected]
ActiveCellFont.Charset = DEFAULT_CHARSET
ActiveCellFont.Color = clWindowText
ActiveCellFont.Height = -11
ActiveCellFont.Name = 'Tahoma'
ActiveCellFont.Style = [fsBold]
CellNode.ExpandOne = True
ControlLook.FixedGradientHoverFrom = 13619409
ControlLook.FixedGradientHoverTo = 12502728
ControlLook.FixedGradientHoverMirrorFrom = 12502728
ControlLook.FixedGradientHoverMirrorTo = 11254975
ControlLook.FixedGradientDownFrom = 8816520
ControlLook.FixedGradientDownTo = 7568510
ControlLook.FixedGradientDownMirrorFrom = 7568510
ControlLook.FixedGradientDownMirrorTo = 6452086
ControlLook.FixedGradientDownBorder = 14007466
ControlLook.DropDownHeader.Font.Charset = DEFAULT_CHARSET
ControlLook.DropDownHeader.Font.Color = clWindowText
ControlLook.DropDownHeader.Font.Height = -11
ControlLook.DropDownHeader.Font.Name = 'Tahoma'
ControlLook.DropDownHeader.Font.Style = []
ControlLook.DropDownHeader.Visible = True
ControlLook.DropDownHeader.Buttons = <>
ControlLook.DropDownFooter.Font.Charset = DEFAULT_CHARSET
ControlLook.DropDownFooter.Font.Color = clWindowText
ControlLook.DropDownFooter.Font.Height = -11
ControlLook.DropDownFooter.Font.Name = 'Tahoma'
ControlLook.DropDownFooter.Font.Style = []
ControlLook.DropDownFooter.Visible = True
ControlLook.DropDownFooter.Buttons = <>
Filter = <>
FilterDropDown.Font.Charset = DEFAULT_CHARSET
FilterDropDown.Font.Color = clWindowText
FilterDropDown.Font.Height = -11
FilterDropDown.Font.Name = 'Tahoma'
FilterDropDown.Font.Style = []
FilterDropDownClear = '(All)'
FixedColWidth = 158
FixedRowHeight = 22
FixedFont.Charset = DEFAULT_CHARSET
FixedFont.Color = clWindowText
FixedFont.Height = -11
FixedFont.Name = 'Tahoma'
FixedFont.Style = [fsBold]
FloatFormat = '%.2f'
IntelliZoom = False
Look = glSoft
PrintSettings.DateFormat = 'dd/mm/yyyy'
PrintSettings.Font.Charset = DEFAULT_CHARSET
PrintSettings.Font.Color = clWindowText
PrintSettings.Font.Height = -11
PrintSettings.Font.Name = 'Tahoma'
PrintSettings.Font.Style = []
PrintSettings.FixedFont.Charset = DEFAULT_CHARSET
PrintSettings.FixedFont.Color = clWindowText
PrintSettings.FixedFont.Height = -11
PrintSettings.FixedFont.Name = 'Tahoma'
PrintSettings.FixedFont.Style = []
PrintSettings.HeaderFont.Charset = DEFAULT_CHARSET
PrintSettings.HeaderFont.Color = clWindowText
PrintSettings.HeaderFont.Height = -11
PrintSettings.HeaderFont.Name = 'Tahoma'
PrintSettings.HeaderFont.Style = []
PrintSettings.FooterFont.Charset = DEFAULT_CHARSET
PrintSettings.FooterFont.Color = clWindowText
PrintSettings.FooterFont.Height = -11
PrintSettings.FooterFont.Name = 'Tahoma'
PrintSettings.FooterFont.Style = []
PrintSettings.PageNumSep = '/'
SearchFooter.Color = clBtnFace
SearchFooter.FindNextCaption = 'Find &next'
SearchFooter.FindPrevCaption = 'Find &previous'
SearchFooter.Font.Charset = DEFAULT_CHARSET
SearchFooter.Font.Color = clWindowText
SearchFooter.Font.Height = -11
SearchFooter.Font.Name = 'Tahoma'
SearchFooter.Font.Style = []
SearchFooter.HighLightCaption = 'Highlight'
SearchFooter.HintClose = 'Close'
SearchFooter.HintFindNext = 'Find next occurrence'
SearchFooter.HintFindPrev = 'Find previous occurrence'
SearchFooter.HintHighlight = 'Highlight occurrences'
SearchFooter.MatchCaseCaption = 'Match case'
SelectionColor = 10354687
ShowSelection = False
ShowDesignHelper = False
SortSettings.HeaderColorTo = 16579058
SortSettings.HeaderMirrorColor = 16380385
SortSettings.HeaderMirrorColorTo = 16182488
Version = '6.2.1.1'
ColWidths = (
158
127
155
69
126)
end
object GroupBox1: TGroupBox
Left = 213
Top = 101
Width = 114
Height = 59
TabOrder = 18
Visible = False
object RadioButton1: TRadioButton
Left = 3
Top = 3
Width = 96
Height = 17
Caption = #1054#1089#1085#1086#1074#1085#1086#1077
Checked = True
TabOrder = 0
TabStop = True
Visible = False
end
object RadioButton2: TRadioButton
Left = 3
Top = 21
Width = 114
Height = 17
Caption = #1044#1086#1087#1086#1083#1085#1080#1090#1077#1083#1100#1085#1086#1077
TabOrder = 1
Visible = False
end
object RadioButton3: TRadioButton
Left = 3
Top = 39
Width = 114
Height = 17
Caption = #1056#1077#1089#1091#1088#1089#1099' '#1087#1088#1080#1074#1103#1079#1082#1080
TabOrder = 2
Visible = False
end
end
object AdvGlassButton7: TAdvGlassButton
Left = 8
Top = 393
Width = 196
Height = 40
BackColor = 6940136
Caption = #1055#1088#1080#1074#1103#1079#1082#1072' nooLite-F'
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 6940136
GlowColor = 6940136
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 6940136
TabOrder = 19
Version = '1.3.0.0'
OnClick = AdvGlassButton7Click
end
object AdvGlassButton13: TAdvGlassButton
Left = 213
Top = 393
Width = 114
Height = 40
BackColor = 6940136
Caption = #1054#1095#1080#1089#1090#1080#1090#1100' '#1082#1072#1085#1072#1083
Enabled = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ForeColor = 6940136
GlowColor = 6940136
InnerBorderColor = clBlack
OuterBorderColor = 16250871
ParentFont = False
ShineColor = 6940136
TabOrder = 20
Version = '1.3.0.0'
OnClick = AdvGlassButton13Click
end
object CheckBox8: TCheckBox
Left = 333
Top = 390
Width = 216
Height = 17
Caption = #1054#1076#1085#1086#1074#1088#1077#1084#1077#1085#1085#1086#1077' '#1080#1089#1087#1086#1083#1085#1077#1085#1080#1077
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 21
end
object SpinEdit2: TSpinEdit
Left = 733
Top = 528
Width = 55
Height = 26
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
MaxValue = 255
MinValue = 0
ParentFont = False
TabOrder = 22
Value = 0
end
object SpinEdit3: TSpinEdit
Left = 794
Top = 528
Width = 55
Height = 26
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = [fsBold]
MaxValue = 255
MinValue = 0
ParentFont = False
TabOrder = 23
Value = 0
end
object SpinEdit4: TSpinEdit
Left = 855
Top = 528
Width = 55
Height = 26
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Tahoma'