-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathuMain.fmx
1424 lines (1423 loc) · 73.1 KB
/
uMain.fmx
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 Form4: TForm4
Left = 0
Top = 0
Caption = 'Form4'
ClientHeight = 801
ClientWidth = 559
Position = DesktopCenter
StyleBook = StyleBook1
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
DesignerMasterStyle = 0
object StyleBook1: TStyleBook
Styles = <
item
end
item
Platform = 'Windows 10 Desktop'
ResourcesBin = {
464D585F5354594C4520322E3501061250726F6772657373426172315374796C
653103500F061250726F6772657373426172325374796C653103470F00545046
3007544C61796F757400095374796C654E616D65061250726F67726573734261
72315374796C653105416C69676E070643656E7465720A53697A652E57696474
680500000000000000C805400B53697A652E4865696768740500000000000000
A003401453697A652E506C6174666F726D44656661756C74080756697369626C
6508085461624F726465720200000C545374796C654F626A6563740009537479
6C654E616D65060668747261636B05416C69676E0708436F6E74656E74730C53
6F757263654C6F6F6B7570061B57696E646F7773203130204465736B746F7073
74796C652E706E670A53697A652E57696474680500000000000000C805400B53
697A652E4865696768740500000000000000A003401453697A652E506C617466
6F726D44656661756C74080A536F757263654C696E6B0E010E436170496E7365
74732E4C6566740500000000000000C001400D436170496E736574732E546F70
0500000000000000C001400F436170496E736574732E52696768740500000000
000000C0014010436170496E736574732E426F74746F6D0500000000000000C0
01400F536F75726365526563742E4C65667405000000000000009506400E536F
75726365526563742E546F7005000000000000009E074010536F757263655265
63742E52696768740500000000000000D2064011536F75726365526563742E42
6F74746F6D0500000000000000AC074000010E436170496E736574732E4C6566
7405000000000000009002400D436170496E736574732E546F70050000000000
00009002400F436170496E736574732E52696768740500000000000000900240
10436170496E736574732E426F74746F6D050000000000000090024005536361
6C650500000000000000C0FF3F0F536F75726365526563742E4C656674050000
0000000000DF06400E536F75726365526563742E546F700500000000000000ED
074010536F75726365526563742E526967687405000000000000809D07401153
6F75726365526563742E426F74746F6D050000000000000081084000010E4361
70496E736574732E4C6566740500000000000000C002400D436170496E736574
732E546F700500000000000000C002400F436170496E736574732E5269676874
0500000000000000C0024010436170496E736574732E426F74746F6D05000000
00000000C00240055363616C6505000000000000008000400F536F7572636552
6563742E4C65667405000000000000009507400E536F75726365526563742E54
6F7005000000000000009E084010536F75726365526563742E52696768740500
000000000000D2074011536F75726365526563742E426F74746F6D0500000000
000000AC08400000064F706171756509000C545374796C654F626A6563740009
5374796C654E616D65060A68696E64696361746F7205416C69676E07044C6566
74064C6F636B6564090C4D617267696E732E4C656674050000000000000080FF
3F0B4D617267696E732E546F70050000000000000080FF3F0D4D617267696E73
2E5269676874050000000000000080FF3F0E4D617267696E732E426F74746F6D
050000000000000080FF3F0C536F757263654C6F6F6B7570061B57696E646F77
73203130204465736B746F707374796C652E706E670A506F736974696F6E2E58
050000000000000080FF3F0A506F736974696F6E2E59050000000000000080FF
3F0A53697A652E57696474680500000000000000C804400B53697A652E486569
67687405000000000000009003401453697A652E506C6174666F726D44656661
756C74080A536F757263654C696E6B0E010E436170496E736574732E4C656674
0500000000000000E001400D436170496E736574732E546F7005000000000000
00A001400F436170496E736574732E52696768740500000000000000E0014010
436170496E736574732E426F74746F6D0500000000000000A001400F536F7572
6365526563742E4C65667405000000000000009506400E536F75726365526563
742E546F7005000000000000808D074010536F75726365526563742E52696768
740500000000000000D3064011536F75726365526563742E426F74746F6D0500
0000000000809A074000010E436170496E736574732E4C656674050000000000
0000A002400D436170496E736574732E546F7005000000000000008002400F43
6170496E736574732E52696768740500000000000000A0024010436170496E73
6574732E426F74746F6D0500000000000000800240055363616C650500000000
000000C0FF3F0F536F75726365526563742E4C6566740500000000000000DF06
400E536F75726365526563742E546F700500000000000000D4074010536F7572
6365526563742E526967687405000000000000009E074011536F757263655265
63742E426F74746F6D0500000000000080E7074000010E436170496E73657473
2E4C6566740500000000000000E002400D436170496E736574732E546F700500
000000000000A002400F436170496E736574732E526967687405000000000000
00E0024010436170496E736574732E426F74746F6D0500000000000000A00240
055363616C6505000000000000008000400F536F75726365526563742E4C6566
7405000000000000009507400E536F75726365526563742E546F700500000000
0000808D084010536F75726365526563742E52696768740500000000000000D3
074011536F75726365526563742E426F74746F6D05000000000000809A084000
00064F7061717565090000000C545374796C654F626A65637400095374796C65
4E616D65060676747261636B05416C69676E0708436F6E74656E74730C536F75
7263654C6F6F6B7570061B57696E646F7773203130204465736B746F70737479
6C652E706E670A53697A652E57696474680500000000000000C805400B53697A
652E4865696768740500000000000000A003401453697A652E506C6174666F72
6D44656661756C74080A536F757263654C696E6B0E010E436170496E73657473
2E4C6566740500000000000000E001400D436170496E736574732E546F700500
000000000000E001400F436170496E736574732E526967687405000000000000
00E0014010436170496E736574732E426F74746F6D0500000000000000E00140
0F536F75726365526563742E4C6566740500000000000000D906400E536F7572
6365526563742E546F7005000000000000808D074010536F7572636552656374
2E52696768740500000000000000F5064011536F75726365526563742E426F74
746F6D0500000000000000AC074000010E436170496E736574732E4C65667405
00000000000000A002400D436170496E736574732E546F700500000000000000
A002400F436170496E736574732E52696768740500000000000000A002401043
6170496E736574732E426F74746F6D0500000000000000A00240055363616C65
0500000000000000C0FF3F0F536F75726365526563742E4C6566740500000000
000080A207400E536F75726365526563742E546F700500000000000000D40740
10536F75726365526563742E52696768740500000000000080B7074011536F75
726365526563742E426F74746F6D050000000000000081084000010E43617049
6E736574732E4C6566740500000000000000E002400D436170496E736574732E
546F700500000000000000E002400F436170496E736574732E52696768740500
000000000000E0024010436170496E736574732E426F74746F6D050000000000
0000E00240055363616C6505000000000000008000400F536F75726365526563
742E4C6566740500000000000000D907400E536F75726365526563742E546F70
05000000000000808D084010536F75726365526563742E526967687405000000
00000000F5074011536F75726365526563742E426F74746F6D05000000000000
00AC08400000064F706171756509000C545374796C654F626A65637400095374
796C654E616D65060A76696E64696361746F7205416C69676E0706426F74746F
6D064C6F636B6564090C4D617267696E732E4C656674050000000000000080FF
3F0B4D617267696E732E546F70050000000000000080FF3F0D4D617267696E73
2E5269676874050000000000000080FF3F0E4D617267696E732E426F74746F6D
050000000000000080FF3F0C536F757263654C6F6F6B7570061B57696E646F77
73203130204465736B746F707374796C652E706E670A506F736974696F6E2E58
050000000000000080FF3F0A506F736974696F6E2E590500000000000000F803
C00A53697A652E57696474680500000000000000C405400B53697A652E486569
6768740500000000000000C804401453697A652E506C6174666F726D44656661
756C74080A536F757263654C696E6B0E010E436170496E736574732E4C656674
0500000000000000A001400D436170496E736574732E546F7005000000000000
00E001400F436170496E736574732E52696768740500000000000000A0014010
436170496E736574732E426F74746F6D0500000000000000E001400F536F7572
6365526563742E4C6566740500000000000000FC06400E536F75726365526563
742E546F7005000000000000008D074010536F75726365526563742E52696768
7405000000000000008B074011536F75726365526563742E426F74746F6D0500
000000000000AC074000010E436170496E736574732E4C656674050000000000
00008002400D436170496E736574732E546F700500000000000000A002400F43
6170496E736574732E5269676874050000000000000080024010436170496E73
6574732E426F74746F6D0500000000000000A00240055363616C650500000000
000000C0FF3F0F536F75726365526563742E4C6566740500000000000000BD07
400E536F75726365526563742E546F700500000000000080D3074010536F7572
6365526563742E52696768740500000000000080D0074011536F757263655265
63742E426F74746F6D050000000000000081084000010E436170496E73657473
2E4C6566740500000000000000A002400D436170496E736574732E546F700500
000000000000E002400F436170496E736574732E526967687405000000000000
00A0024010436170496E736574732E426F74746F6D0500000000000000E00240
055363616C6505000000000000008000400F536F75726365526563742E4C6566
740500000000000000FC07400E536F75726365526563742E546F700500000000
0000008D084010536F75726365526563742E526967687405000000000000008B
084011536F75726365526563742E426F74746F6D0500000000000000AC084000
00064F706171756509000000005450463007544C61796F757400095374796C65
4E616D65061250726F6772657373426172325374796C653105416C69676E0706
43656E7465720A53697A652E57696474680500000000000000C805400B53697A
652E4865696768740500000000000000A003401453697A652E506C6174666F72
6D44656661756C7408085461624F726465720201000C545374796C654F626A65
637400095374796C654E616D65060668747261636B05416C69676E0708436F6E
74656E74730C536F757263654C6F6F6B7570061B57696E646F77732031302044
65736B746F707374796C652E706E670A53697A652E5769647468050000000000
0000C805400B53697A652E4865696768740500000000000000A003401453697A
652E506C6174666F726D44656661756C74080A536F757263654C696E6B0E010E
436170496E736574732E4C6566740500000000000000C001400D436170496E73
6574732E546F700500000000000000C001400F436170496E736574732E526967
68740500000000000000C0014010436170496E736574732E426F74746F6D0500
000000000000C001400F536F75726365526563742E4C65667405000000000000
009506400E536F75726365526563742E546F7005000000000000009E07401053
6F75726365526563742E52696768740500000000000000D2064011536F757263
65526563742E426F74746F6D0500000000000000AC074000010E436170496E73
6574732E4C65667405000000000000009002400D436170496E736574732E546F
7005000000000000009002400F436170496E736574732E526967687405000000
0000000090024010436170496E736574732E426F74746F6D0500000000000000
900240055363616C650500000000000000C0FF3F0F536F75726365526563742E
4C6566740500000000000000DF06400E536F75726365526563742E546F700500
000000000000ED074010536F75726365526563742E5269676874050000000000
00809D074011536F75726365526563742E426F74746F6D050000000000000081
084000010E436170496E736574732E4C6566740500000000000000C002400D43
6170496E736574732E546F700500000000000000C002400F436170496E736574
732E52696768740500000000000000C0024010436170496E736574732E426F74
746F6D0500000000000000C00240055363616C6505000000000000008000400F
536F75726365526563742E4C65667405000000000000009507400E536F757263
65526563742E546F7005000000000000009E084010536F75726365526563742E
52696768740500000000000000D2074011536F75726365526563742E426F7474
6F6D0500000000000000AC08400000064F706171756509000C545374796C654F
626A65637400095374796C654E616D65060A68696E64696361746F7205416C69
676E07044C656674064C6F636B6564090C4D617267696E732E4C656674050000
000000000080FF3F0B4D617267696E732E546F70050000000000000080FF3F0D
4D617267696E732E5269676874050000000000000080FF3F0E4D617267696E73
2E426F74746F6D050000000000000080FF3F0C536F757263654C6F6F6B757006
1B57696E646F7773203130204465736B746F707374796C652E706E670A506F73
6974696F6E2E58050000000000000080FF3F0A506F736974696F6E2E59050000
000000000080FF3F0A53697A652E57696474680500000000000000C804400B53
697A652E48656967687405000000000000009003401453697A652E506C617466
6F726D44656661756C74080A536F757263654C696E6B0E010E436170496E7365
74732E4C6566740500000000000000E001400D436170496E736574732E546F70
0500000000000000A001400F436170496E736574732E52696768740500000000
000000E0014010436170496E736574732E426F74746F6D0500000000000000A0
01400F536F75726365526563742E4C65667405000000000000009506400E536F
75726365526563742E546F7005000000000000808D074010536F757263655265
63742E52696768740500000000000000D3064011536F75726365526563742E42
6F74746F6D05000000000000809A074000010E436170496E736574732E4C6566
740500000000000000A002400D436170496E736574732E546F70050000000000
00008002400F436170496E736574732E52696768740500000000000000A00240
10436170496E736574732E426F74746F6D050000000000000080024005536361
6C650500000000000000C0FF3F0F536F75726365526563742E4C656674050000
0000000000DF06400E536F75726365526563742E546F700500000000000000D4
074010536F75726365526563742E526967687405000000000000009E07401153
6F75726365526563742E426F74746F6D0500000000000080E7074000010E4361
70496E736574732E4C6566740500000000000000E002400D436170496E736574
732E546F700500000000000000A002400F436170496E736574732E5269676874
0500000000000000E0024010436170496E736574732E426F74746F6D05000000
00000000A00240055363616C6505000000000000008000400F536F7572636552
6563742E4C65667405000000000000009507400E536F75726365526563742E54
6F7005000000000000808D084010536F75726365526563742E52696768740500
000000000000D3074011536F75726365526563742E426F74746F6D0500000000
0000809A08400000064F7061717565090000000C545374796C654F626A656374
00095374796C654E616D65060676747261636B05416C69676E0708436F6E7465
6E74730C536F757263654C6F6F6B7570061B57696E646F777320313020446573
6B746F707374796C652E706E670A53697A652E57696474680500000000000000
C805400B53697A652E4865696768740500000000000000A003401453697A652E
506C6174666F726D44656661756C74080A536F757263654C696E6B0E010E4361
70496E736574732E4C6566740500000000000000E001400D436170496E736574
732E546F700500000000000000E001400F436170496E736574732E5269676874
0500000000000000E0014010436170496E736574732E426F74746F6D05000000
00000000E001400F536F75726365526563742E4C6566740500000000000000D9
06400E536F75726365526563742E546F7005000000000000808D074010536F75
726365526563742E52696768740500000000000000F5064011536F7572636552
6563742E426F74746F6D0500000000000000AC074000010E436170496E736574
732E4C6566740500000000000000A002400D436170496E736574732E546F7005
00000000000000A002400F436170496E736574732E5269676874050000000000
0000A0024010436170496E736574732E426F74746F6D0500000000000000A002
40055363616C650500000000000000C0FF3F0F536F75726365526563742E4C65
66740500000000000080A207400E536F75726365526563742E546F7005000000
00000000D4074010536F75726365526563742E52696768740500000000000080
B7074011536F75726365526563742E426F74746F6D0500000000000000810840
00010E436170496E736574732E4C6566740500000000000000E002400D436170
496E736574732E546F700500000000000000E002400F436170496E736574732E
52696768740500000000000000E0024010436170496E736574732E426F74746F
6D0500000000000000E00240055363616C6505000000000000008000400F536F
75726365526563742E4C6566740500000000000000D907400E536F7572636552
6563742E546F7005000000000000808D084010536F75726365526563742E5269
6768740500000000000000F5074011536F75726365526563742E426F74746F6D
0500000000000000AC08400000064F706171756509000C545374796C654F626A
65637400095374796C654E616D65060A76696E64696361746F7205416C69676E
0706426F74746F6D064C6F636B6564090C4D617267696E732E4C656674050000
000000000080FF3F0B4D617267696E732E546F70050000000000000080FF3F0D
4D617267696E732E5269676874050000000000000080FF3F0E4D617267696E73
2E426F74746F6D050000000000000080FF3F0C536F757263654C6F6F6B757006
1B57696E646F7773203130204465736B746F707374796C652E706E670A506F73
6974696F6E2E58050000000000000080FF3F0A506F736974696F6E2E59050000
0000000000F803C00A53697A652E57696474680500000000000000C405400B53
697A652E4865696768740500000000000000C804401453697A652E506C617466
6F726D44656661756C74080A536F757263654C696E6B0E010E436170496E7365
74732E4C6566740500000000000000A001400D436170496E736574732E546F70
0500000000000000E001400F436170496E736574732E52696768740500000000
000000A0014010436170496E736574732E426F74746F6D0500000000000000E0
01400F536F75726365526563742E4C6566740500000000000000F706400E536F
75726365526563742E546F700500000000000000BF064010536F757263655265
63742E52696768740500000000000000FF064011536F75726365526563742E42
6F74746F6D0500000000000000D2064000010E436170496E736574732E4C6566
7405000000000000008002400D436170496E736574732E546F70050000000000
0000A002400F436170496E736574732E52696768740500000000000000800240
10436170496E736574732E426F74746F6D0500000000000000A0024005536361
6C650500000000000000C0FF3F0F536F75726365526563742E4C656674050000
0000000000B907400E536F75726365526563742E546F7005000000000000008F
074010536F75726365526563742E52696768740500000000000000BF07401153
6F75726365526563742E426F74746F6D05000000000000809D074000010E4361
70496E736574732E4C6566740500000000000000A002400D436170496E736574
732E546F700500000000000000E002400F436170496E736574732E5269676874
0500000000000000A0024010436170496E736574732E426F74746F6D05000000
00000000E00240055363616C6505000000000000008000400F536F7572636552
6563742E4C6566740500000000000000F707400E536F75726365526563742E54
6F700500000000000000BF074010536F75726365526563742E52696768740500
000000000000FF074011536F75726365526563742E426F74746F6D0500000000
000000D207400000064F70617175650900000000}
end>
end
object TabControl1: TTabControl
Align = Client
Size.Width = 559.000000000000000000
Size.Height = 680.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'tabcontrolstyle'
TabIndex = 1
TabOrder = 1
TabPosition = Bottom
Sizes = (
559s
654s
559s
654s
559s
654s
559s
654s)
object TabItem1: TTabItem
CustomIcon = <
item
end>
IsSelected = False
Size.Width = 61.000000000000000000
Size.Height = 26.000000000000000000
Size.PlatformDefault = False
StyleLookup = ''
TabOrder = 0
Text = 'Circular'
ExplicitSize.cx = 61.000000000000000000
ExplicitSize.cy = 26.000000000000000000
object CircleChart1: TRectangle
Tag = 85
Fill.Color = claWhite
Position.X = 8.000000000000000000
Position.Y = 14.000000000000000000
Size.Width = 153.000000000000000000
Size.Height = 145.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object CircleChart3: TRectangle
Tag = 45
Fill.Color = claWhite
Position.X = 8.000000000000000000
Position.Y = 314.000000000000000000
Size.Width = 153.000000000000000000
Size.Height = 145.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object CircleChart4: TRectangle
Tag = 85
Fill.Color = claWhite
Position.X = 8.000000000000000000
Position.Y = 464.000000000000000000
Size.Width = 153.000000000000000000
Size.Height = 145.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object CircleChart2: TRectangle
Tag = 85
Fill.Color = claWhite
Position.X = 8.000000000000000000
Position.Y = 164.000000000000000000
Size.Width = 153.000000000000000000
Size.Height = 145.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Label2: TLabel
Position.X = 184.000000000000000000
Position.Y = 41.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'T'#237'tulo Gr'#225'fico'
TabOrder = 3
end
object TituloGC1: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'transparentedit'
TabOrder = 9
Text = 'Delphi Creative 1'
Position.X = 184.000000000000000000
Position.Y = 66.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
object CorGC1: TComboColorBox
Color = claRoyalblue
Position.X = 428.000000000000000000
Position.Y = 66.000000000000000000
Size.Width = 93.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'comboboxstyle'
TabOrder = 10
end
object ValorGC1: TTrackBar
CanParentFocus = True
Orientation = Horizontal
Position.X = 184.000000000000000000
Position.Y = 100.000000000000000000
Size.Width = 337.000000000000000000
Size.Height = 19.000000000000000000
Size.PlatformDefault = False
TabOrder = 15
Value = 75.000000000000000000
end
object Line1: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 81.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Line2: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 154.000000000000000000
Size.Width = 361.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Line3: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 304.000000000000000000
Size.Width = 361.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object CorGC4: TComboColorBox
Color = claOrchid
Position.X = 428.000000000000000000
Position.Y = 554.000000000000000000
Size.Width = 93.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'comboboxstyle'
TabOrder = 19
end
object CorGC3: TComboColorBox
Color = claGold
Position.X = 428.000000000000000000
Position.Y = 377.000000000000000000
Size.Width = 93.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'comboboxstyle'
TabOrder = 20
end
object CorGC2: TComboColorBox
Color = claRed
Position.X = 428.000000000000000000
Position.Y = 213.000000000000000000
Size.Width = 93.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'comboboxstyle'
TabOrder = 21
end
object TituloGC4: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'transparentedit'
TabOrder = 22
Text = 'Delphi Creative 4'
Position.X = 184.000000000000000000
Position.Y = 554.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
object TituloGC3: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'transparentedit'
TabOrder = 23
Text = 'Delphi Creative 3'
Position.X = 184.000000000000000000
Position.Y = 377.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
object TituloGC2: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'transparentedit'
TabOrder = 24
Text = 'Delphi Creative 2'
Position.X = 184.000000000000000000
Position.Y = 213.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
object Label3: TLabel
Position.X = 184.000000000000000000
Position.Y = 529.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'T'#237'tulo Gr'#225'fico'
TabOrder = 25
end
object Label7: TLabel
Position.X = 184.000000000000000000
Position.Y = 352.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'T'#237'tulo Gr'#225'fico'
TabOrder = 26
end
object Label8: TLabel
Position.X = 184.000000000000000000
Position.Y = 188.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'T'#237'tulo Gr'#225'fico'
TabOrder = 27
end
object Line5: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 569.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Line6: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 392.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Line7: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 228.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object ValorGC4: TTrackBar
CanParentFocus = True
Orientation = Horizontal
Position.X = 184.000000000000000000
Position.Y = 588.000000000000000000
Size.Width = 337.000000000000000000
Size.Height = 19.000000000000000000
Size.PlatformDefault = False
TabOrder = 31
Value = 45.000000000000000000
end
object ValorGC3: TTrackBar
CanParentFocus = True
Orientation = Horizontal
Position.X = 184.000000000000000000
Position.Y = 411.000000000000000000
Size.Width = 337.000000000000000000
Size.Height = 19.000000000000000000
Size.PlatformDefault = False
TabOrder = 32
Value = 90.000000000000000000
end
object ValorGC2: TTrackBar
CanParentFocus = True
Orientation = Horizontal
Position.X = 184.000000000000000000
Position.Y = 247.000000000000000000
Size.Width = 337.000000000000000000
Size.Height = 19.000000000000000000
Size.PlatformDefault = False
TabOrder = 33
Value = 20.000000000000000000
end
object Line4: TLine
LineType = Bottom
Position.X = 184.000000000000000000
Position.Y = 453.000000000000000000
Size.Width = 361.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
end
object Verttical: TTabItem
CustomIcon = <
item
end>
IsSelected = True
Size.Width = 53.000000000000000000
Size.Height = 26.000000000000000000
Size.PlatformDefault = False
StyleLookup = ''
TabOrder = 0
Text = 'Barras'
ExplicitSize.cx = 63.000000000000000000
ExplicitSize.cy = 26.000000000000000000
object BarHorzChart: TRectangle
Fill.Color = claWhite
Position.X = 6.000000000000000000
Position.Y = 64.000000000000000000
Size.Width = 549.000000000000000000
Size.Height = 252.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object CorGH: TComboColorBox
Color = claChocolate
Position.X = 224.000000000000000000
Position.Y = 468.000000000000000000
Size.Width = 68.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 11
end
object ValoresGV: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Lines.Strings = (
'{2018:8:Jan;20:Fev;10:Mar;50:Abr;80:Mai;30:Jun;10:Jul;60:Ago;18:' +
'Set;40:Out;50:Nov;30:Dez}')
TextSettings.WordWrap = True
Position.X = 8.000000000000000000
Position.Y = 340.000000000000000000
Size.Width = 545.000000000000000000
Size.Height = 73.000000000000000000
Size.PlatformDefault = False
TabOrder = 13
Viewport.Width = 541.000000000000000000
Viewport.Height = 69.000000000000000000
end
object BarVertChart: TRectangle
Fill.Color = claWhite
Position.X = 296.000000000000000000
Position.Y = 440.000000000000000000
Size.Width = 257.000000000000000000
Size.Height = 206.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Label9: TLabel
Position.X = 8.000000000000000000
Position.Y = 320.000000000000000000
Size.Width = 185.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Gr'#225'fico Vertical - valores'
TabOrder = 8
end
object Label10: TLabel
Position.X = 8.000000000000000000
Position.Y = 9.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'T'#237'tulo Gr'#225'fico'
TabOrder = 3
end
object TituloGV: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'transparentedit'
TabOrder = 9
Text = 'Delphi Creative - Gr'#225'fico Vertical'
Position.X = 8.000000000000000000
Position.Y = 34.000000000000000000
Size.Width = 545.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
object Line8: TLine
LineType = Bottom
Position.X = 8.000000000000000000
Position.Y = 49.000000000000000000
Size.Width = 545.000000000000000000
Size.Height = 9.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object ValoresGH: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Lines.Strings = (
'8:Janeiro;'
'20:Fevereiro;'
'10:Mar'#231'o;'
'50:Abril;'
'80:Maio;'
'30:Junho;'
'10:Julho;'
'60:Agosto;'
'18:Setembro')
TextSettings.WordWrap = True
Position.X = 8.000000000000000000
Position.Y = 512.000000000000000000
Size.Width = 281.000000000000000000
Size.Height = 135.000000000000000000
Size.PlatformDefault = False
TabOrder = 12
Viewport.Width = 261.000000000000000000
Viewport.Height = 131.000000000000000000
end
object Label1: TLabel
Position.X = 8.000000000000000000
Position.Y = 441.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'T'#237'tulo Gr'#225'fico'
TabOrder = 2
end
object TituloGH: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'transparentedit'
TabOrder = 6
Text = 'Delphi Creative - Gr'#225'fico Horizontal'
Position.X = 8.000000000000000000
Position.Y = 466.000000000000000000
Size.Width = 209.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
end
object Line9: TLine
LineType = Bottom
Position.X = 8.000000000000000000
Position.Y = 481.000000000000000000
Size.Width = 209.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
object Label11: TLabel
Position.X = 8.000000000000000000
Position.Y = 494.000000000000000000
Size.Width = 185.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Gr'#225'fico Horizontal - valores'
TabOrder = 7
end
object Line10: TLine
LineType = Bottom
Position.X = -32.000000000000000000
Position.Y = 425.000000000000000000
Size.Width = 593.000000000000000000
Size.Height = 8.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFFD0D0D0
end
end
object TabItem2: TTabItem
CustomIcon = <
item
end>
IsSelected = False
Size.Width = 77.000000000000000000
Size.Height = 26.000000000000000000
Size.PlatformDefault = False
StyleLookup = ''
TabOrder = 0
Text = 'Calend'#225'rio'
ExplicitSize.cx = 77.000000000000000000
ExplicitSize.cy = 26.000000000000000000
object Calendario2: TRectangle
Fill.Color = claWhite
Position.X = 13.000000000000000000
Position.Y = 296.000000000000000000
Size.Width = 260.000000000000000000
Size.Height = 373.000000000000000000
Size.PlatformDefault = False
Stroke.Color = claCadetblue
end
object Calendario1: TRectangle
Fill.Color = claWhite
Margins.Bottom = 5.000000000000000000
Position.X = 16.000000000000000000
Position.Y = 40.000000000000000000
Size.Width = 257.000000000000000000
Size.Height = 193.000000000000000000
Size.PlatformDefault = False
Stroke.Color = claGray
end
object DataCC: TDateEdit
Date = 43433.000000000000000000
Position.X = 409.000000000000000000
Position.Y = 26.000000000000000000
Size.Width = 113.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'dateeditstyle'
TabOrder = 14
end
object CorCC1: TComboColorBox
Color = claGreen
Position.X = 300.000000000000000000
Position.Y = 76.000000000000000000
Size.Width = 101.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 13
end
object Label6: TLabel
Position.X = 300.000000000000000000
Position.Y = 56.000000000000000000
Size.Width = 96.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Cor Simples'
TabOrder = 5
end
object ValoresCC: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Position.X = 296.000000000000000000
Position.Y = 112.000000000000000000
Size.Width = 225.000000000000000000
Size.Height = 121.000000000000000000
Size.PlatformDefault = False
TabOrder = 15
Viewport.Width = 221.000000000000000000
Viewport.Height = 117.000000000000000000
end
object Label4: TLabel
Position.X = 296.000000000000000000
Position.Y = 25.000000000000000000
Size.Width = 97.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'Calend'#225'rio'
TabOrder = 10
end
object CorCC2: TComboColorBox
Color = claIndigo
Position.X = 412.000000000000000000
Position.Y = 76.000000000000000000
Size.Width = 101.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 11
end
object Label12: TLabel
Position.X = 413.000000000000000000
Position.Y = 56.000000000000000000
Size.Width = 96.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'Cor Evento'
TabOrder = 0
end
object Label13: TLabel
Position.X = 16.000000000000000000
Position.Y = 12.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'Calend'#225'rio Simples'
TabOrder = 6
end
object Label14: TLabel
Position.X = 16.000000000000000000
Position.Y = 268.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'Calend'#225'rio com eventos'
TabOrder = 4
end
end
object TabItem3: TTabItem
CustomIcon = <
item
end>
IsSelected = False
Size.Width = 65.000000000000000000
Size.Height = 26.000000000000000000
Size.PlatformDefault = False
StyleLookup = ''
TabOrder = 0
Text = 'Timeline'
ExplicitSize.cx = 65.000000000000000000
ExplicitSize.cy = 26.000000000000000000
object TimeLine2: TRectangle
Fill.Color = claWhite
Position.X = 296.000000000000000000
Position.Y = 272.000000000000000000
Size.Width = 249.000000000000000000
Size.Height = 393.000000000000000000
Size.PlatformDefault = False
Stroke.Color = claAqua
end
object Timeline1: TRectangle
Fill.Color = claWhite
Position.X = 23.000000000000000000
Position.Y = 272.000000000000000000
Size.Width = 258.000000000000000000
Size.Height = 393.000000000000000000
Size.PlatformDefault = False
Stroke.Color = claAqua
end
object Label15: TLabel
Position.X = 24.000000000000000000
Position.Y = 20.000000000000000000
Size.Width = 217.000000000000000000
Size.Height = 24.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'Calend'#225'rio Simples'
TabOrder = 15
end
object Calendario3: TRectangle
Fill.Color = claWhite
Margins.Bottom = 5.000000000000000000
Position.X = 24.000000000000000000
Position.Y = 48.000000000000000000
Size.Width = 257.000000000000000000
Size.Height = 193.000000000000000000
Size.PlatformDefault = False
Stroke.Color = claGray
end
object ValoresCC2: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Position.X = 304.000000000000000000
Position.Y = 120.000000000000000000
Size.Width = 241.000000000000000000
Size.Height = 121.000000000000000000
Size.PlatformDefault = False
TabOrder = 22
Viewport.Width = 237.000000000000000000
Viewport.Height = 117.000000000000000000
end
object ComboColorBox2: TComboColorBox
Color = claPeru
Position.X = 308.000000000000000000
Position.Y = 84.000000000000000000
Size.Width = 101.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 19
end
object Label16: TLabel
Position.X = 308.000000000000000000
Position.Y = 64.000000000000000000
Size.Width = 96.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'TimeLine 1'
TabOrder = 9
end
object Label17: TLabel
Position.X = 421.000000000000000000
Position.Y = 64.000000000000000000
Size.Width = 96.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
Text = 'TimeLine 2'
TabOrder = 0
end
object DataCC2: TDateEdit
Date = 43433.000000000000000000
Position.X = 417.000000000000000000
Position.Y = 34.000000000000000000
Size.Width = 113.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'dateeditstyle'
TabOrder = 12
end
object Label18: TLabel
Position.X = 304.000000000000000000
Position.Y = 33.000000000000000000
Size.Width = 97.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'listboxheaderlabel'
Text = 'Calend'#225'rio'
TabOrder = 10
end
object ComboColorBox1: TComboColorBox
Color = claCornflowerblue
Position.X = 421.000000000000000000
Position.Y = 84.000000000000000000
Size.Width = 100.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
end
end
end
object Rectangle2: TRectangle
Align = Top
Fill.Color = claWhite
Size.Width = 559.000000000000000000
Size.Height = 121.000000000000000000
Size.PlatformDefault = False
Stroke.Thickness = 0.000000000000000000
object Rectangle1: TRectangle
Align = Left
Fill.Bitmap.Bitmap.PNG = {
89504E470D0A1A0A0000000D49484452000000E1000000E108060000003EB3D2
7A000000017352474200AECE1CE90000000467414D410000B18F0BFC61050000
303449444154785EED9D099C54D59DEFFF3474D3B2084850710745648C3B4644
653326086A444DA2519F9F719E9A9889E1C531E6659BAC4E889AB8CC24312671
749C98A746498C51635ED0871A4144891B9B68440444ED569AA6E96AAADFF9FD
CFFDDF7BEAD676ABEA6E5575BE7EAEB53555F79EF3FFDEFF59EE32A05F41168B
A56A32990CB5B6B63AAF2AA7C579B458724060614913695B1FA1160181CD8496
92D4BA970F8BB4AC4714D84C682909023FE90CD4C802029B092D811011E396A1