-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAir.style
5845 lines (5835 loc) · 177 KB
/
Air.style
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 TLayout
Align = Client
Height = 715.000000000000000000
Position.Y = 33.000000000000000000
Width = 1162.000000000000000000
object TSwitchObject
StyleName = 'switchstyle'
Fill.Color = xFF484848
FillOn.Color = xFF65C8E0
FillOn.Kind = Solid
Stroke.Color = xFF1C1C1C
Thumb.Color = xFF484848
ThumbOn.Kind = None
ThumbStroke.Color = xFF1C1C1C
Shape = Rectangle
HitTest = False
end
object TLayout
StyleName = 'calendarstyle'
DesignVisible = False
Height = 160.000000000000000000
Width = 180.000000000000000000
object TStyleTag
StyleName = 'FixedSize'
end
object TLayout
Align = MostTop
Locked = True
Height = 19.000000000000000000
Margins.Bottom = 2.000000000000000000
Width = 180.000000000000000000
object TButton
StyleName = 'prev'
Align = Left
CanFocus = False
DisableFocusEffect = False
Height = 19.000000000000000000
Locked = True
Margins.Right = 2.000000000000000000
RepeatClick = True
StyleLookup = 'transparentcirclebuttonstyle'
Width = 19.000000000000000000
object TPathLabel
Align = Center
Data.Path = {
04000000000000000000803F00000000010000000000803F0000803F01000000
000000000000003F010000000000803F00000000}
Locked = True
Height = 5.000000000000000000
Position.X = 7.000000000000000000
Position.Y = 7.000000000000000000
StyleLookup = 'calendarlabelstyle'
Width = 5.000000000000000000
end
end
object TButton
StyleName = 'today'
Align = Left
CanFocus = False
DisableFocusEffect = False
Height = 19.000000000000000000
Locked = True
Margins.Right = 2.000000000000000000
Position.X = 21.000000000000000000
RepeatClick = True
StyleLookup = 'transparentcirclebuttonstyle'
Width = 19.000000000000000000
object TPathLabel
Align = Center
Data.Path = {
040000000000000089C965431BE2BB43010000002B88E1421080834301000000
2B886143AEFA114301000000CF46AB43625F8143}
Locked = True
Height = 5.000000000000000000
Position.X = 7.000000000000000000
Position.Y = 7.000000000000000000
StyleLookup = 'calendarlabelstyle'
Width = 5.000000000000000000
end
end
object TButton
StyleName = 'next'
Align = Left
CanFocus = False
DisableFocusEffect = False
Height = 19.000000000000000000
Locked = True
Margins.Right = 2.000000000000000000
Position.X = 42.000000000000000000
RepeatClick = True
StyleLookup = 'transparentcirclebuttonstyle'
Width = 19.000000000000000000
object TPathLabel
Align = Center
Data.Path = {
0300000000000000000000000000000001000000000000000000803F01000000
0000803F0000003F}
Locked = True
Height = 5.000000000000000000
Position.X = 7.000000000000000000
Position.Y = 7.000000000000000000
StyleLookup = 'calendarlabelstyle'
Width = 5.000000000000000000
end
end
object TPopupBox
StyleName = 'months'
Align = Client
CanFocus = False
DisableFocusEffect = True
Font.Style = [fsBold]
Height = 19.000000000000000000
ItemIndex = -1
Locked = True
Margins.Left = 5.000000000000000000
Margins.Right = 5.000000000000000000
Position.X = 68.000000000000000000
StyleLookup = 'calendarlabelstyle'
TextAlign = Trailing
Width = 67.000000000000000000
end
object TPopupBox
StyleName = 'years'
Align = Right
CanFocus = False
DisableFocusEffect = True
Font.Style = [fsBold]
Height = 19.000000000000000000
ItemIndex = -1
Locked = True
Position.X = 140.000000000000000000
StyleLookup = 'calendarlabelstyle'
TextAlign = Leading
Width = 40.000000000000000000
end
end
object TGridLayout
StyleName = 'week'
Align = Top
Locked = True
Height = 19.000000000000000000
ItemHeight = 19.000000000000000000
ItemWidth = 64.000000000000000000
Orientation = Horizontal
Margins.Bottom = 2.000000000000000000
Position.Y = 21.000000000000000000
Width = 180.000000000000000000
end
object TGridLayout
StyleName = 'weeks'
Align = MostLeft
Locked = True
Height = 50.000000000000000000
ItemHeight = 19.000000000000000000
ItemWidth = 64.000000000000000000
Orientation = Horizontal
Margins.Top = 21.000000000000000000
Visible = False
Width = 23.000000000000000000
end
object TListBox
StyleName = 'days'
Touch.InteractiveGestures = [Pan]
Align = Client
Locked = True
Height = 114.000000000000000000
Position.Y = 42.000000000000000000
ShowScrollBars = False
StyleLookup = 'transparentlistboxstyle'
Width = 180.000000000000000000
AlternatingRowBackground = True
CanFocus = False
Columns = 7
ItemHeight = 19.000000000000000000
end
end
object TLayout
StyleName = 'calendarlabelstyle'
DesignVisible = False
Height = 20.000000000000000000
Position.X = 396.000000000000000000
Position.Y = 491.000000000000000000
Width = 49.000000000000000000
object TText
StyleName = 'text'
Align = Client
Color = xFFE0E0E0
Locked = True
Height = 20.000000000000000000
HitTest = False
Text = 'label'
Width = 49.000000000000000000
end
end
object TLayout
StyleName = 'imagecontrolstyle'
DesignVisible = False
Height = 26.000000000000000000
Position.X = 384.000000000000000000
Position.Y = 488.000000000000000000
Width = 73.000000000000000000
object TRectangle
StyleName = 'background'
Align = Contents
Fill.Color = xFF191919
Locked = True
Height = 26.000000000000000000
HitTest = False
Stroke.Color = xFF393939
Width = 73.000000000000000000
object TRectangle
Align = Client
Fill.Kind = None
Height = 24.000000000000000000
HitTest = False
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF181818
Width = 71.000000000000000000
end
object TImage
StyleName = 'image'
Align = Client
Locked = True
Height = 20.000000000000000000
HitTest = False
Margins.Left = 3.000000000000000000
Margins.Top = 3.000000000000000000
Margins.Right = 3.000000000000000000
Margins.Bottom = 3.000000000000000000
Position.X = 3.000000000000000000
Position.Y = 3.000000000000000000
Width = 67.000000000000000000
end
end
object TGlowEffect
Softness = 0.200000002980232200
GlowColor = xFF65C8E0
Opacity = 0.899999976158142100
Trigger = 'IsFocused=true'
Enabled = False
end
end
object TLayout
StyleName = 'framedscrollboxstyle'
DesignVisible = False
Height = 131.000000000000000000
Position.X = 363.000000000000000000
Position.Y = 436.000000000000000000
Width = 116.999992370605500000
object TRectangle
StyleName = 'background'
Align = Contents
Fill.Color = xFF484848
Locked = True
Height = 131.000000000000000000
HitTest = False
Padding.Left = 1.000000000000000000
Padding.Top = 1.000000000000000000
Padding.Right = 1.000000000000000000
Padding.Bottom = 1.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 116.999992370605500000
object TRectangle
Align = Client
Fill.Kind = None
Height = 129.000000000000000000
HitTest = False
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF595959
Width = 114.999992370605500000
end
object TLayout
Align = Client
Height = 129.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Width = 114.999992370605500000
object TLayout
StyleName = 'content'
Align = Client
Height = 112.000000000000000000
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Width = 97.999992370605470000
end
object TScrollBar
StyleName = 'vscrollbar'
Align = Right
Height = 114.000000000000000000
SmallChange = 0.000000000000000000
Orientation = Vertical
Position.X = 99.999992370605470000
Width = 15.000000000000000000
end
object TScrollBar
StyleName = 'hscrollbar'
Align = Bottom
Height = 15.000000000000000000
SmallChange = 0.000000000000000000
Orientation = Horizontal
Position.Y = 114.000000000000000000
Width = 114.999992370605500000
end
object TSmallScrollBar
StyleName = 'vsmallscrollbar'
Align = Right
Height = 8.000000000000000000
SmallChange = 0.000000000000000000
Orientation = Vertical
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 99.000000000000000000
Position.Y = 2.000000000000000000
Visible = False
Width = 8.000000000000000000
end
object TSmallScrollBar
StyleName = 'hsmallscrollbar'
Align = Bottom
Height = 8.000000000000000000
SmallChange = 0.000000000000000000
Orientation = Horizontal
Margins.Left = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 2.000000000000000000
Position.Y = 113.000000000000000000
Visible = False
Width = 150.000000000000000000
end
object TLayout
Align = Contents
Height = 129.000000000000000000
Width = 114.999992370605500000
object TLayout
Align = Bottom
Height = 20.000000000000000000
Position.Y = 109.000000000000000000
Width = 114.999992370605500000
object TSizeGrip
StyleName = 'sizegrip'
Align = Right
Locked = True
Height = 20.000000000000000000
Position.X = 94.999992370605470000
Width = 20.000000000000000000
end
end
end
end
end
end
object TRectangle
StyleName = 'backgroundstyle'
DesignVisible = False
Fill.Color = xFF343434
Height = 50.000000000000000000
HitTest = False
Position.X = 396.000000000000000000
Position.Y = 476.000000000000000000
Stroke.Kind = None
Width = 50.000000000000000000
end
object TRectangle
StyleName = 'multiviewstyle'
Fill.Color = xFF484848
Height = 50.000000000000000000
HitTest = False
Stroke.Kind = None
Width = 50.000000000000000000
object TBrushObject
StyleName = 'dropline'
Brush.Color = xFF1C1C1C
end
end
object TRectangle
StyleName = 'panelstyle'
DesignVisible = False
Fill.Color = xFF484848
Height = 50.000000000000000000
HitTest = False
Position.X = 396.000000000000000000
Position.Y = 476.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 50.000000000000000000
object TRectangle
Align = Client
Fill.Kind = None
Height = 48.000000000000000000
HitTest = False
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF595959
Width = 48.000000000000000000
end
end
object TCalloutRectangle
StyleName = 'calloutpanelstyle'
DesignVisible = False
Fill.Color = xFF484848
Height = 50.000000000000000000
HitTest = False
Position.X = 396.000000000000000000
Position.Y = 476.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 50.000000000000000000
CalloutWidth = 23.000000000000000000
CalloutLength = 11.000000000000000000
end
object TRectangle
StyleName = 'statusbarstyle'
ClipChildren = True
DesignVisible = False
Fill.Color = xFF484848
Height = 50.000000000000000000
Position.X = 396.000000000000000000
Position.Y = 476.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 50.000000000000000000
object TRectangle
Align = Client
Fill.Kind = None
Height = 48.000000000000000000
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF595959
Width = 48.000000000000000000
object TSizeGrip
StyleName = 'sizegrip'
Align = Right
Locked = True
Height = 44.000000000000000000
HitTest = False
Margins.Left = 2.000000000000000000
Margins.Top = 2.000000000000000000
Margins.Right = 2.000000000000000000
Margins.Bottom = 2.000000000000000000
Position.X = 26.000000000000000000
Position.Y = 2.000000000000000000
Width = 20.000000000000000000
end
end
end
object TRectangle
StyleName = 'toolbarstyle'
ClipChildren = True
DesignVisible = False
Fill.Color = xFF484848
Height = 50.000000000000000000
HitTest = False
Position.X = 396.000000000000000000
Position.Y = 476.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 50.000000000000000000
object TRectangle
Align = Client
Fill.Kind = None
Height = 48.000000000000000000
HitTest = False
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF595959
Width = 48.000000000000000000
end
end
object TLayout
StyleName = 'ExpanderButtonStyle'
DesignVisible = False
Height = 26.000000000000000000
Padding.Left = 2.000000000000000000
Padding.Top = 2.000000000000000000
Padding.Right = 2.000000000000000000
Padding.Bottom = 2.000000000000000000
Margins.Left = 4.000000000000000000
Margins.Top = 4.000000000000000000
Margins.Right = 4.000000000000000000
Margins.Bottom = 4.000000000000000000
Position.X = 384.000000000000000000
Position.Y = 488.000000000000000000
Width = 73.000000000000000000
object TEllipse
StyleName = 'background'
Align = Contents
Fill.Kind = Gradient
Fill.Gradient.Points = <
item
Color = xFF585858
Offset = 0.000000000000000000
end
item
Color = xFF515151
Offset = 0.474820137023925800
end
item
Color = xFF494949
Offset = 1.000000000000000000
end>
Locked = True
Height = 26.000000000000000000
HitTest = False
Stroke.Color = xFF6A6A6A
Width = 73.000000000000000000
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF585858
StopValue = xFF484848
Trigger = 'IsMouseOver=true;IsPressed=false'
end
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF484848
StopValue = xFF585858
Trigger = 'IsMouseOver=false;IsPressed=false'
end
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF484848
StopValue = xFF424242
Trigger = 'IsMouseOver=false;IsPressed=true'
end
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF424242
StopValue = xFF484848
Trigger = 'IsMouseOver=true;IsPressed=true'
end
object TEllipse
Align = Client
Fill.Kind = None
Height = 30.000000000000000000
HitTest = False
Margins.Left = -2.000000000000000000
Margins.Top = -2.000000000000000000
Margins.Right = -2.000000000000000000
Margins.Bottom = -2.000000000000000000
Position.X = -2.000000000000000000
Position.Y = -2.000000000000000000
Stroke.Color = xFF515151
Width = 77.000000000000000000
object TEllipse
Align = Client
Fill.Kind = None
Height = 28.000000000000000000
HitTest = False
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 75.000000000000000000
end
end
end
object TPath
Align = Contents
Data.Path = {
08000000000000001DFA7743664E0D4401000000B032464364C3034401000000
F668B94375C3A843010000004E92084464C303440100000019A4F74319940E44
01000000A4D0B9434E12D043010000001DFA7743664E0D440300000000000000
00000000}
Locked = True
Height = 14.000000000000000000
HitTest = False
Margins.Left = 4.000000000000000000
Margins.Top = 6.000000000000000000
Margins.Right = 4.000000000000000000
Margins.Bottom = 6.000000000000000000
Position.X = 4.000000000000000000
Position.Y = 6.000000000000000000
Stroke.Kind = None
Width = 65.000000000000000000
object TColorAnimation
Duration = 0.000099999997473788
PropertyName = 'Fill.Color'
StartValue = x00E0E0E0
StopValue = xFFE0E0E0
Trigger = 'IsExpanded=true'
end
object TColorAnimation
Duration = 0.000099999997473788
Inverse = True
PropertyName = 'Fill.Color'
StartValue = x00E0E0E0
StopValue = xFFE0E0E0
Trigger = 'IsExpanded=false'
end
end
object TPath
Align = Contents
Data.Path = {
0800000000000000C540F843D94EAB43010000004E920844DD64BE4301000000
FED4BA4319940E4401000000B0324643DD64BE4301000000B633794375C3A843
01000000506DBA4358D9F54301000000C540F843D94EAB430300000000000000
00000000}
Fill.Color = x00E0E0E0
Locked = True
Height = 14.000000000000000000
HitTest = False
Margins.Left = 4.000000000000000000
Margins.Top = 6.000000000000000000
Margins.Right = 4.000000000000000000
Margins.Bottom = 6.000000000000000000
Position.X = 4.000000000000000000
Position.Y = 6.000000000000000000
Stroke.Kind = None
Width = 65.000000000000000000
object TColorAnimation
Duration = 0.000099999997473788
PropertyName = 'Fill.Color'
StartValue = x00E0E0E0
StopValue = xFFE0E0E0
Trigger = 'IsExpanded=false'
end
object TColorAnimation
Duration = 0.000099999997473788
Inverse = True
PropertyName = 'Fill.Color'
StartValue = x00E0E0E0
StopValue = xFFE0E0E0
Trigger = 'IsExpanded=true'
end
end
end
object TLayout
StyleName = 'expanderstyle'
DesignVisible = False
Height = 121.000000000000000000
Position.X = 342.000000000000000000
Position.Y = 440.000000000000000000
Width = 159.000000000000000000
object TRectangle
Align = Contents
Fill.Color = xFF484848
Height = 121.000000000000000000
HitTest = False
Stroke.Color = xFF1C1C1C
Width = 159.000000000000000000
object TRectangle
Align = Client
Fill.Kind = None
Height = 119.000000000000000000
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF595959
Width = 157.000000000000000000
end
end
object TText
StyleName = 'text'
Align = Top
Color = xFFF1F1F1
Locked = True
Height = 25.000000000000000000
HitTest = False
Margins.Left = 25.000000000000000000
Position.X = 25.000000000000000000
Text = 'Expander'
Width = 134.000000000000000000
WordWrap = False
object TExpanderButton
StyleName = 'button'
Align = Left
DisableFocusEffect = False
Height = 25.000000000000000000
Locked = True
Margins.Left = -25.000000000000000000
Position.X = -25.000000000000000000
Width = 25.000000000000000000
end
object TCheckBox
StyleName = 'checkbox'
Align = Right
CanFocus = False
DisableFocusEffect = False
Locked = True
Height = 25.000000000000000000
Position.X = 109.000000000000000000
Width = 25.000000000000000000
end
end
end
object TLayout
StyleName = 'groupboxstyle'
DesignVisible = False
Height = 102.000000000000000000
Padding.Left = 2.000000000000000000
Padding.Top = 8.000000000000000000
Padding.Right = 2.000000000000000000
Padding.Bottom = 2.000000000000000000
Position.X = 354.000000000000000000
Position.Y = 450.000000000000000000
Width = 135.000000000000000000
object TRectangle
StyleName = 'background'
Align = Client
Fill.Kind = None
Locked = True
Height = 92.000000000000000000
HitTest = False
Position.X = 2.000000000000000000
Position.Y = 8.000000000000000000
Stroke.Color = xFF595959
Width = 131.000000000000000000
object TText
StyleName = 'text'
AutoSize = True
ClipParent = True
Color = xFFF8F8F8
Locked = True
Height = 19.000000000000000000
HitTest = False
Position.X = 15.000000000000000000
Position.Y = -8.000000000000000000
Text = 'Groupbox'
Width = 52.000000000000000000
WordWrap = False
end
end
end
object TLayout
StyleName = 'speedbuttonstyle'
DesignVisible = False
Height = 26.000000000000000000
Position.X = 384.000000000000000000
Position.Y = 488.000000000000000000
Width = 73.000000000000000000
object TRectangle
StyleName = 'background'
Align = Contents
Fill.Kind = Gradient
Fill.Gradient.Points = <
item
Color = xFF585858
Offset = 0.000000000000000000
end
item
Color = xFF515151
Offset = 0.474820137023925800
end
item
Color = xFF494949
Offset = 1.000000000000000000
end>
Locked = True
Height = 22.000000000000000000
HitTest = False
Margins.Left = 2.000000000000000000
Margins.Top = 2.000000000000000000
Margins.Right = 2.000000000000000000
Margins.Bottom = 2.000000000000000000
Position.X = 2.000000000000000000
Position.Y = 2.000000000000000000
Stroke.Color = xFF6A6A6A
Width = 69.000000000000000000
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF585858
StopValue = xFF484848
Trigger = 'IsMouseOver=true;IsPressed=false'
end
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF484848
StopValue = xFF585858
Trigger = 'IsMouseOver=false;IsPressed=false'
end
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF484848
StopValue = xFF424242
Trigger = 'IsMouseOver=false;IsPressed=true'
end
object TColorAnimation
Duration = 0.200000002980232200
PropertyName = 'Fill.Color'
StartValue = xFF424242
StopValue = xFF484848
Trigger = 'IsMouseOver=true;IsPressed=true'
end
object TRectangle
Align = Client
Fill.Kind = None
Height = 26.000000000000000000
HitTest = False
Margins.Left = -2.000000000000000000
Margins.Top = -2.000000000000000000
Margins.Right = -2.000000000000000000
Margins.Bottom = -2.000000000000000000
Position.X = -2.000000000000000000
Position.Y = -2.000000000000000000
Stroke.Color = xFF515151
Width = 73.000000000000000000
object TRectangle
Align = Client
Fill.Kind = None
Height = 24.000000000000000000
HitTest = False
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Stroke.Color = xFF1C1C1C
Width = 71.000000000000000000
end
end
end
object TGlyph
StyleName = 'glyphstyle'
Margins.Left = 5.000000000000000000
Margins.Top = 2.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 2.000000000000000000
Align = Left
Size.Width = 16.000000000000000000
Size.Height = 16.000000000000000000
Size.PlatformDefault = False
end
object TText
StyleName = 'text'
Align = Client
Color = claWhite
Locked = True
Height = 22.000000000000000000
HitTest = False
Margins.Left = 6.000000000000000000
Margins.Top = 2.000000000000000000
Margins.Right = 6.000000000000000000
Margins.Bottom = 2.000000000000000000
Position.X = 6.000000000000000000
Position.Y = 2.000000000000000000
Text = 'button'
Width = 61.000000000000000000
end
end
object TLayout
StyleName = 'splitterstyle'
DesignVisible = False
Height = 50.000000000000000000
Position.X = 396.000000000000000000
Position.Y = 476.000000000000000000
Width = 50.000000000000000000
object TEllipse
StyleName = 'grip'
Align = Fit
Fill.Color = xFF1C1C1C
Locked = True
Height = 50.000000000000000000
HitTest = False
Stroke.Kind = None
Width = 50.000000000000000000
end
end
object TLayout
StyleName = 'labelstyle'
DesignVisible = False
Height = 20.000000000000000000
Position.X = 396.000000000000000000
Position.Y = 491.000000000000000000
Width = 49.000000000000000000
object TText
StyleName = 'text'
Align = Client
Color = xFFFDFDFD
Locked = True
Height = 20.000000000000000000
HitTest = False
Text = 'label'
Width = 49.000000000000000000
end
end
object TLayout
StyleName = 'valuelabelstyle'
DesignVisible = False
Height = 24.000000000000000000
Position.X = 374.000000000000000000
Position.Y = 489.000000000000000000
Width = 95.000000000000000000
object TRectangle
Align = Contents
Fill.Color = xFF191919
Height = 24.000000000000000000
HitTest = False
Stroke.Color = xFF393939
Width = 95.000000000000000000
end
object TText
StyleName = 'text'
Align = Client
Color = xFFEAEAEA
Font.Size = 10.000000000000000000
Height = 22.000000000000000000
HitTest = False
Margins.Left = 1.000000000000000000
Margins.Top = 1.000000000000000000
Margins.Right = 1.000000000000000000
Margins.Bottom = 1.000000000000000000
Position.X = 1.000000000000000000
Position.Y = 1.000000000000000000
Text = 'Text'
Width = 93.000000000000000000
end
end
object TLayout
StyleName = 'tabitemstyle'
DesignVisible = False
Height = 20.000000000000000000
Position.X = 398.000000000000000000
Position.Y = 491.000000000000000000
Width = 46.000000000000000000
object TRectangle
StyleName = 'top'
Align = Contents
ClipChildren = True
Fill.Color = xFF484848
Locked = True
Height = 20.000000000000000000
HitTest = False
Sides = [Top, Left, Right]
Stroke.Color = xFF1C1C1C
Width = 46.000000000000000000
object TColorAnimation
Duration = 0.000099999997473788
PropertyName = 'Fill.Color'
StartValue = xFF484848
StopValue = xFF383838
Trigger = 'IsMouseOver=true;IsSelected=false'
end
object TColorAnimation
Duration = 0.000099999997473788
PropertyName = 'Fill.Color'
StartValue = xFF383838
StopValue = xFF484848
Trigger = 'IsMouseOver=false;IsSelected=false'
end
object TColorAnimation
Duration = 0.000000999999997475
PropertyName = 'Fill.Color'
StartValue = xFF383838
StopValue = xFF484848
Trigger = 'IsSelected=false'
end
object TColorAnimation
Duration = 0.000009999999747379
PropertyName = 'Fill.Color'
StartValue = xFF484848
StopValue = xFF585858
Trigger = 'IsSelected=true'
end
object TRectAnimation
Duration = 0.000009999999747379
PropertyName = 'Margins'
StartValue.Top = 1.000000000000000000
StartValue.Right = -1.000000000000000000
StopValue.Right = -1.000000000000000000
Trigger = 'IsSelected=true'
end
object TRectAnimation
Duration = 0.000009999999747379
Inverse = True
PropertyName = 'Margins'
StartValue.Top = 1.000000000000000000
StartValue.Right = -1.000000000000000000