-
Notifications
You must be signed in to change notification settings - Fork 5
/
HGI.Main.fmx
3180 lines (3049 loc) · 174 KB
/
HGI.Main.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 FormMain: TFormMain
Left = 0
Top = 0
Caption = 'GetIt'
ClientHeight = 684
ClientWidth = 1095
Fill.Color = xFF080B11
Fill.Kind = Solid
Position = ScreenCenter
StyleBook = StyleBook
Constraints.MinHeight = 400.000000000000000000
Constraints.MinWidth = 800.000000000000000000
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
OnCreate = FormCreate
OnDestroy = FormDestroy
DesignerMasterStyle = 0
object LayoutHead: TLayout
Align = Top
Size.Width = 1095.000000000000000000
Size.Height = 49.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
OnResized = LayoutHeadResized
object Rectangle1: TRectangle
Align = Contents
Fill.Color = xFF151B28
Size.Width = 1095.000000000000000000
Size.Height = 49.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
object EditSearch: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
StyleLookup = 'Editstyle_search'
TabOrder = 0
Position.X = 322.000000000000000000
Position.Y = 9.000000000000000000
ClipChildren = True
Size.Width = 450.000000000000000000
Size.Height = 30.000000000000000000
Size.PlatformDefault = False
TextPrompt = ' Search'
OnChangeTracking = EditSearchChangeTracking
object ClearEditButtonSearch: TClearEditButton
CanFocus = False
Cursor = crArrow
Margins.Left = -2.000000000000000000
Margins.Top = 2.000000000000000000
Margins.Right = 2.000000000000000000
Margins.Bottom = 2.000000000000000000
Position.X = -2.000000000000000000
Position.Y = 2.000000000000000000
Size.Width = 22.000000000000000000
Size.Height = 22.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Visible = False
end
end
end
object LayoutActions: TLayout
Align = Right
Position.X = 807.000000000000000000
Size.Width = 288.000000000000000000
Size.Height = 49.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
object ButtonPers: TButton
Align = Right
StyledSettings = [Family, Style, FontColor]
Margins.Top = 10.000000000000000000
Margins.Right = 10.000000000000000000
Margins.Bottom = 10.000000000000000000
Position.X = 154.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 85.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyledownload'
TabOrder = 3
Text = 'Delphi'
TextSettings.Font.Size = 13.000000000000000000
TextSettings.HorzAlign = Leading
OnClick = ButtonPersListClick
object ButtonPersList: TButton
Align = Right
StyledSettings = [Family, Style, FontColor]
HitTest = False
Position.X = 57.000000000000000000
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyledrop'
TabOrder = 1
Text = 'DOWNLOAD'
TextSettings.Font.Size = 13.000000000000000000
OnClick = ButtonPersListClick
end
end
object ButtonServer: TButton
Align = Right
StyledSettings = [Family, Style, FontColor]
Margins.Top = 10.000000000000000000
Margins.Right = 10.000000000000000000
Margins.Bottom = 10.000000000000000000
Position.X = 4.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 140.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyledownload'
TabOrder = 1
Text = 'RAD Studio 11'
TextSettings.Font.Size = 13.000000000000000000
TextSettings.HorzAlign = Leading
OnClick = ButtonServerListClick
object ButtonServerList: TButton
Align = Right
StyledSettings = [Family, Style, FontColor]
HitTest = False
Position.X = 112.000000000000000000
Size.Width = 28.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyledrop'
TabOrder = 1
Text = 'DOWNLOAD'
TextSettings.Font.Size = 13.000000000000000000
OnClick = ButtonServerListClick
end
end
object ButtonOptions: TButton
Align = Right
StyledSettings = [Family, Style, FontColor]
Margins.Top = 10.000000000000000000
Margins.Right = 10.000000000000000000
Margins.Bottom = 10.000000000000000000
Position.X = 249.000000000000000000
Position.Y = 10.000000000000000000
Size.Width = 29.000000000000000000
Size.Height = 29.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyledownload'
TabOrder = 2
TextSettings.Font.Size = 13.000000000000000000
OnClick = ButtonOptionsClick
object Path2: TPath
Align = Center
Data.Path = {
3000000000000000000090410000C0410100000000009C420000C04102000000
9EA0A2420000C041020000000000A8427A82AA41020000000000A84200009041
020000000000A8420DFB6A41020000009FA0A242000040410200000000009C42
00004041010000000000904100004041020000000DFB6A410000404102000000
000040410DFB6A4102000000000040410000904102000000000040417A82AA41
020000000CFB6A410000C04102000000FFFF8F410000C0410300000000009041
0000C0410000000000009C420000284201000000000090410000284202000000
0DFB6A41000028420200000000004041C3BE3242020000000000404100004042
02000000000040413D414D42020000000CFB6A410000584202000000FFFF8F41
000058420100000000009C4200005842020000009EA0A2420000584202000000
0000A8423D414D42020000000000A84200004042020000000000A842C3BE3242
020000009FA0A242000028420200000000009C42000028420300000000009C42
000028420000000000009C420000904201000000000090410000904202000000
0DFB6A41000090420200000000004041625F9542020000000000404100009C42
02000000000040419EA0A242020000000CFB6A410000A84202000000FFFF8F41
0000A8420100000000009C420000A842020000009EA0A2420000A84202000000
0000A8429EA0A242020000000000A84200009C42020000000000A842625F9542
020000009FA0A242000090420200000000009C42000090420300000000009C42
00009042}
Fill.Color = claWhite
HitTest = False
Size.Width = 16.000000000000000000
Size.Height = 16.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
end
object LayoutMenu: TLayout
Align = Left
Position.Y = 49.000000000000000000
Size.Width = 265.000000000000000000
Size.Height = 635.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
object Rectangle2: TRectangle
Align = Contents
Fill.Color = xFF0D121B
Padding.Left = 20.000000000000000000
Size.Width = 265.000000000000000000
Size.Height = 635.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
object Layout3: TLayout
Align = MostTop
Position.X = 20.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 89.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object LabelCaption: TLabel
Align = Client
StyledSettings = []
Size.Width = 193.000000000000000000
Size.Height = 89.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 30.000000000000000000
TextSettings.Font.StyleExt = {00050000000000000004000000}
TextSettings.FontColor = claWhite
Text = 'GetIt'
TabOrder = 0
end
object Path1: TPath
Align = Left
Data.Path = {
610000000000000033339341CDCC8C400200000033339341CDCC8C4002000000
666692419A99894002000000666692419A9989400200000000008C4101006040
02000000666682410100404002000000323373410100404001000000CDCC0C41
01004040020000006666F64000004040020000003333D3400000604002000000
6666B6409A998940020000006666B6409A998940020000003333B340CDCC8C40
020000003333B340CDCC8C40010000009A9979409A99D9400200000033335340
6666F640020000000000404033330B41020000000000404033331B4101000000
000040400000884102000000000040409A999941020000009A9999400000A841
020000000000E0400000A84101000000000088410000A841020000009A999941
0000A841020000000000A8419A999941020000000000A8410000884101000000
0000A84133331B41020000000000A84133330B41020000009A99A5416666F640
02000000CDCCA0419999D9400100000033339341CDCC8C400300000033339341
CDCC8C40000000000000B04000000041010000003333E3406666B64002000000
3333F3406666A64002000000333303410000A04002000000CDCC0C410000A040
010000009A9971410000A0400200000034337B410000A0400200000067668241
6666A64002000000676686416666B64001000000000094410000004102000000
0000944100000041020000000000944100000041020000000000944100000041
01000000CDCC6441000000410100000033331B4100000041010000000000B040
00000041020000000000B04000000041020000000000B0400000004102000000
0000B04000000041030000000000B0400000004100000000CDCC544100002041
01000000CDCC54410000484101000000676646419A99414102000000CDCC4441
00004041020000009A9941410000404102000000000040410000404102000000
66663E41000040410200000033333B4100004041020000009A9939419A994141
0100000034332B41000048410100000034332B410000204101000000CDCC5441
0000204103000000CDCC54410000204100000000000098410000884102000000
00009841CDCC904102000000CDCC904100009841020000000000884100009841
010000000000E0400000984102000000CDCCBC4000009841020000000000A040
CDCC9041020000000000A04000008841010000000000A0400000204101000000
33330B41000020410100000033330B41000060410200000033330B41CDCC6441
0200000066660E4133336B410200000033331341CDCC6C410200000000001841
0000704102000000CDCC1C4100007041020000009999214167666E4101000000
FFFF3F419A9961410100000065665E4167666E41020000000000604100007041
02000000333363410000704102000000CDCC6441000070410200000000006841
000070410200000033336B4166666E4102000000CDCC6C41CDCC6C4102000000
9A9971419A99694102000000CDCC7441CDCC644102000000CDCC744100006041
01000000CDCC7441000020410100000000009841000020410100000000009841
00008841030000000000984100008841}
Fill.Color = xFF0D968D
Margins.Left = 10.000000000000000000
Margins.Right = 10.000000000000000000
Position.X = 10.000000000000000000
Size.Width = 32.000000000000000000
Size.Height = 89.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
object VertScrollBoxCats: TVertScrollBox
Align = Client
Padding.Bottom = 20.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 546.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
ShowScrollBars = False
Viewport.Width = 245.000000000000000000
Viewport.Height = 546.000000000000000000
object RadioButtonAll: TRadioButton
Align = Top
GroupName = 'category'
Hint = 'All package categories'
Margins.Bottom = 10.000000000000000000
Position.Y = 116.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 4
Text = 'All'
OnChange = RadioButtonAllChange
end
object RadioButtonComponents: TRadioButton
Tag = 2
Align = Top
GroupName = 'category'
Hint =
'Sets of components for installation in the development environme' +
'nt'
Margins.Bottom = 10.000000000000000000
Position.Y = 301.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 10
Text = 'Components'
OnChange = RadioButtonAllChange
end
object RadioButtonIDPlugins: TRadioButton
Tag = 37
Align = Top
GroupName = 'category'
Hint = 'Plugins and add-ons for IDE'
Margins.Bottom = 10.000000000000000000
Position.Y = 591.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 21
Text = 'IDE Plugins'
OnChange = RadioButtonAllChange
end
object RadioButtonPatchesFixes: TRadioButton
Tag = 999
Align = Top
GroupName = 'category'
Hint = 'List of updates, patches and fixes for the environment and tools'
Margins.Bottom = 10.000000000000000000
Position.Y = 533.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 20
Text = 'Patches and Hotfixes'
OnChange = RadioButtonAllChange
end
object RadioButtonIT: TRadioButton
Tag = 36
Align = Top
GroupName = 'category'
Hint = 'Industry Templates'
Margins.Bottom = 10.000000000000000000
Position.Y = 707.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 12
Text = 'Industry Templates'
OnChange = RadioButtonAllChange
end
object RadioButtonLibs: TRadioButton
Tag = 1
Align = Top
GroupName = 'category'
Hint =
'A rich set of libraries for working with the network, open API s' +
'ervices, converters, encryption tools, etc.'
Margins.Bottom = 10.000000000000000000
Position.Y = 243.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 0
Text = 'Libraries'
OnChange = RadioButtonAllChange
end
object RadioButtonSampleProjects: TRadioButton
Tag = 99
Align = Top
GroupName = 'category'
Hint = 'Examples and templates for applications and projects'
Margins.Bottom = 10.000000000000000000
Position.Y = 649.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 9
Text = 'Sample Projects'
OnChange = RadioButtonAllChange
end
object RadioButtonStyles: TRadioButton
Tag = 38
Align = Top
GroupName = 'category'
Hint = 'Style sets for VCL and FMX applications'
Margins.Bottom = 10.000000000000000000
Position.Y = 475.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 7
Text = 'Styles'
OnChange = RadioButtonAllChange
end
object RadioButtonTools: TRadioButton
Tag = 46
Align = Top
GroupName = 'category'
Hint = 'Tools to simplify development'
Margins.Bottom = 10.000000000000000000
Position.Y = 417.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 6
Text = 'Tools'
OnChange = RadioButtonAllChange
end
object RadioButtonTrial: TRadioButton
Tag = 33
Align = Top
GroupName = 'category'
Hint = 'Trial Packages'
Margins.Bottom = 10.000000000000000000
Position.Y = 359.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 5
Text = 'Trial'
OnChange = RadioButtonAllChange
end
object RadioButtonPython: TRadioButton
Tag = 47
Align = Top
GroupName = 'category'
Hint = 'Python'
Margins.Bottom = 10.000000000000000000
Position.Y = 1008.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 11
Text = 'Python'
OnChange = RadioButtonAllChange
end
object RadioButtonNew: TRadioButton
Tag = 98
Align = Top
GroupName = 'category'
Hint = 'New in GetIt'
IsChecked = True
Margins.Bottom = 10.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 2
Text = 'New'
OnChange = RadioButtonNewChange
end
object Line1: TLine
Align = Top
LineType = Top
Margins.Bottom = 10.000000000000000000
Position.Y = 232.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 1.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFF1C2536
end
object RadioButtonPromoted: TRadioButton
Tag = 998
Align = Top
GroupName = 'category'
Hint = 'Promoted in GetIt'
Margins.Bottom = 10.000000000000000000
Position.Y = 58.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 1
Text = 'Promoted'
OnChange = RadioButtonAllChange
end
object RadioButtonInstalled: TRadioButton
Tag = -1000
Align = Top
GroupName = 'category'
Hint = 'Installed packages'
Margins.Bottom = 10.000000000000000000
Position.Y = 174.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 3
Text = 'Installed'
OnChange = RadioButtonAllChange
end
object RadioButtonPlatforms: TRadioButton
Tag = 15
Align = Top
GroupName = 'category'
Hint = 'Installation Manager Packages'
Margins.Bottom = 10.000000000000000000
Position.Y = 1077.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 19
Text = 'Platforms'
OnChange = RadioButtonAllChange
end
object Line2: TLine
Align = Top
LineType = Top
Margins.Bottom = 10.000000000000000000
Position.Y = 1066.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 1.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFF1C2536
end
object RadioButtonTeeChart: TRadioButton
Tag = 21
Align = Top
GroupName = 'category'
Hint = 'Libraries of TeeChart Standard'
Margins.Bottom = 10.000000000000000000
Position.Y = 834.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 18
Text = 'TeeChart Standard'
OnChange = RadioButtonAllChange
end
object RadioButtonFonts: TRadioButton
Tag = 14
Align = Top
GroupName = 'category'
Hint = 'List of fonts'
Margins.Bottom = 10.000000000000000000
Position.Y = 1251.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 14
Text = 'Fonts'
OnChange = RadioButtonAllChange
end
object RadioButtonHelp: TRadioButton
Tag = 14
Align = Top
GroupName = 'category'
Hint = 'List of help documents'
Margins.Bottom = 10.000000000000000000
Position.Y = 1193.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 13
Text = 'Help'
OnChange = RadioButtonAllChange
end
object RadioButtonDUnit: TRadioButton
Tag = 21
Align = Top
GroupName = 'category'
Hint = 'DUnit Unit Testing Frameworks'
Margins.Bottom = 10.000000000000000000
Position.Y = 892.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 17
Text = 'DUnit Test'
OnChange = RadioButtonAllChange
end
object RadioButtonSamples: TRadioButton
Tag = 99
Align = Top
GroupName = 'category'
Hint = 'Sets of examples included in the instalations'
Margins.Bottom = 10.000000000000000000
Position.Y = 1135.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 8
Text = 'Samples'
OnChange = RadioButtonAllChange
end
object Line3: TLine
Align = Top
LineType = Top
Margins.Bottom = 10.000000000000000000
Position.Y = 823.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 1.000000000000000000
Size.PlatformDefault = False
Stroke.Color = xFF1C2536
end
object RadioButtonInterbase: TRadioButton
Tag = 21
Align = Top
GroupName = 'category'
Hint = 'InterBase Express (IBX) Components'
Margins.Bottom = 10.000000000000000000
Position.Y = 950.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 16
Text = 'Interbase'
OnChange = RadioButtonAllChange
end
object RadioButtonIoT: TRadioButton
Tag = 21
Align = Top
GroupName = 'category'
Margins.Bottom = 10.000000000000000000
Position.Y = 765.000000000000000000
Size.Width = 245.000000000000000000
Size.Height = 48.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'menuitembuttonstyle'
TabOrder = 15
Text = 'IoT'
OnChange = RadioButtonAllChange
end
end
end
end
object LayoutClient: TLayout
Align = Client
Size.Width = 830.000000000000000000
Size.Height = 635.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
object VertScrollBoxContent: TVertScrollBox
Align = Client
Padding.Left = 30.000000000000000000
Padding.Right = 30.000000000000000000
Padding.Bottom = 30.000000000000000000
Size.Width = 830.000000000000000000
Size.Height = 635.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
Viewport.Width = 821.000000000000000000
Viewport.Height = 635.000000000000000000
object LayoutDesc: TLayout
Align = MostTop
Position.X = 30.000000000000000000
Size.Width = 761.000000000000000000
Size.Height = 132.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
object Layout1: TLayout
Align = MostLeft
Size.Width = 58.000000000000000000
Size.Height = 132.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
object Circle1: TCircle
Align = Client
Fill.Color = xFF0F111A
Size.Width = 58.000000000000000000
Size.Height = 132.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
object PathCurrentCat: TPath
Align = Center
Data.Path = {
1500000000000000000000000000104101000000000000000000804101000000
0000E0400000804101000000000080410000E040010000000000104100000000
0100000000000000000010410300000000000000000010410000000000004040
000060410200000008AC1C40000060410200000000000040FED4584102000000
00000040000050410200000000000040022B47410200000008AC1C4000004041
02000000000040400000404102000000F8536340000040410200000000008040
022B47410200000000008040000050410200000000008040FED4584102000000
F853634000006041020000000000404000006041030000000000404000006041}
Fill.Color = xFF0D968D
Size.Width = 18.000000000000000000
Size.Height = 18.000000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
WrapMode = Fit
end
end
end
object LabelCurrentCatTitle: TLabel
Align = Top
StyledSettings = [Style]
Margins.Left = 20.000000000000000000
Position.X = 78.000000000000000000
Size.Width = 683.000000000000000000
Size.Height = 65.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 25.000000000000000000
TextSettings.FontColor = claWhite
TextSettings.VertAlign = Trailing
TextSettings.WordWrap = False
Text = 'Libraries'
TabOrder = 3
end
object LabelCurrentCatDesc: TLabel
Align = Client
StyledSettings = [Style]
Margins.Left = 20.000000000000000000
Margins.Top = 10.000000000000000000
Size.Width = 539.000000000000000000
Size.Height = 57.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 14.000000000000000000
TextSettings.FontColor = xFF969BB2
TextSettings.VertAlign = Leading
TextSettings.WordWrap = False
Text = 'Libraries'
TabOrder = 2
end
object Layout2: TLayout
Align = Right
Hint = 'iOS'
Position.X = 617.000000000000000000
Position.Y = 65.000000000000000000
Size.Width = 144.000000000000000000
Size.Height = 67.000000000000000000
Size.PlatformDefault = False
TabOrder = 4
object Layout4: TLayout
Align = Bottom
Position.Y = 32.000000000000000000
Size.Width = 144.000000000000000000
Size.Height = 35.000000000000000000
Size.PlatformDefault = False
TabOrder = 0
end
end
end
object FlowLayoutItems: TFlowLayout
Align = MostTop
ClipChildren = True
Margins.Right = -20.000000000000000000
Position.X = 30.000000000000000000
Position.Y = 132.000000000000000000
Size.Width = 781.000000000000000000
Size.Height = 689.000000000000000000
Size.PlatformDefault = False
TabOrder = 1
Justify = Left
JustifyLastLine = Left
FlowDirection = LeftToRight
HorizontalGap = 20.000000000000000000
VerticalGap = 20.000000000000000000
OnResize = FlowLayoutItemsResized
OnResized = FlowLayoutItemsResized
inline FramePackageItem3: TFramePackageItem
Size.Width = 320.000000000000000000
Size.Height = 220.000000000000000000
Size.PlatformDefault = False
inherited RectangleBG: TRectangle
inherited LayoutOS: TLayout
inherited PathWindows: TPath
Position.X = 20.000000000000000000
end
inherited PathAndroid: TPath
Position.X = 69.000000000000000000
end
inherited PathLinux: TPath
Position.X = 91.000000000000000000
end
inherited LabelLicense: TLabel
TextSettings.Font.Size = 13.000000000000000000
end
inherited Line1: TLine
Position.X = 43.000000000000000000
end
end
end
inherited PopupMenuOpt: TPopupMenu
inherited MenuItemShowCommand: TMenuItem
OnClick = nil
end
end
end
inline FramePackageItem4: TFramePackageItem
Position.X = 340.000000000000000000
Size.Width = 320.000000000000000000
Size.Height = 220.000000000000000000
Size.PlatformDefault = False
inherited RectangleBG: TRectangle
inherited LayoutOS: TLayout
inherited PathWindows: TPath
Position.X = 20.000000000000000000
end
inherited PathAndroid: TPath
Position.X = 69.000000000000000000
end
inherited PathLinux: TPath
Position.X = 91.000000000000000000
end
inherited LabelLicense: TLabel
TextSettings.Font.Size = 13.000000000000000000
end
inherited Line1: TLine
Position.X = 43.000000000000000000
end
end
end
inherited PopupMenuOpt: TPopupMenu
inherited MenuItemShowCommand: TMenuItem
OnClick = nil
end
end
end
inline FramePackageItem5: TFramePackageItem
Position.Y = 240.000000000000000000
Size.Width = 320.000000000000000000
Size.Height = 220.000000000000000000
Size.PlatformDefault = False
inherited RectangleBG: TRectangle
inherited LayoutOS: TLayout
inherited PathWindows: TPath
Position.X = 20.000000000000000000
end
inherited PathAndroid: TPath
Position.X = 69.000000000000000000
end
inherited PathLinux: TPath
Position.X = 91.000000000000000000
end
inherited LabelLicense: TLabel
TextSettings.Font.Size = 13.000000000000000000
end
inherited Line1: TLine
Position.X = 43.000000000000000000
end
end
end
inherited PopupMenuOpt: TPopupMenu
inherited MenuItemShowCommand: TMenuItem
OnClick = nil
end
end
end
inline FramePackageItem6: TFramePackageItem
Position.X = 340.000000000000000000
Position.Y = 240.000000000000000000
Size.Width = 320.000000000000000000
Size.Height = 220.000000000000000000
Size.PlatformDefault = False
inherited RectangleBG: TRectangle
inherited LayoutOS: TLayout
inherited PathWindows: TPath
Position.X = 20.000000000000000000
end
inherited PathAndroid: TPath
Position.X = 69.000000000000000000
end
inherited PathLinux: TPath
Position.X = 91.000000000000000000
end
inherited LabelLicense: TLabel
TextSettings.Font.Size = 13.000000000000000000
end
inherited Line1: TLine
Position.X = 43.000000000000000000
end
end
end
inherited PopupMenuOpt: TPopupMenu
inherited MenuItemShowCommand: TMenuItem
OnClick = nil
end
end
end
end
object LayoutInfo: TLayout
Align = Top
Margins.Top = 30.000000000000000000
Position.X = 30.000000000000000000
Position.Y = 931.000000000000000000
Size.Width = 761.000000000000000000
Size.Height = 50.000000000000000000
Size.PlatformDefault = False
TabOrder = 3
object LabelInfo: TLabel
Align = Center
StyledSettings = [Style]
Size.Width = 156.000000000000000000
Size.Height = 17.000000000000000000
Size.PlatformDefault = False
TextSettings.Font.Family = 'Roboto'
TextSettings.Font.Size = 16.000000000000000000
TextSettings.FontColor = xC8FFFFFF
TextSettings.HorzAlign = Center
Text = #1047#1072#1075#1088#1091#1079#1082#1072'...'
TabOrder = 0
end
end
object LayoutMore: TLayout
Align = MostTop
Margins.Top = 30.000000000000000000
Position.X = 30.000000000000000000
Position.Y = 851.000000000000000000
Size.Width = 761.000000000000000000
Size.Height = 50.000000000000000000
Size.PlatformDefault = False
TabOrder = 2
object ButtonMore: TButton
Align = Center
Size.Width = 130.000000000000000000
Size.Height = 30.000000000000000000
Size.PlatformDefault = False
StyleLookup = 'buttonstyledownload'
TabOrder = 0
Text = 'Load more ...'
OnClick = ButtonMoreClick
end
end
end
end
object StyleBook: TStyleBook
Styles = <
item
ResourcesBin = {
464D585F5354594C4520322E35010610456469747374796C655F736561726368
0354080619456469747374796C654C6162656C5374796C655365617263680314
010613627574746F6E7374796C65646F776E6C6F616403280306136D656E7569
74656D627574746F6E7374796C65031310060F636C6561726564697462757474
6F6E03D6090611616E69696E64696361746F727374796C6503BC020615736372
6F6C6C626172626F74746F6D627574746F6E03700206147363726F6C6C626172
68747261636B7374796C6503260106137363726F6C6C6261726C656674627574
746F6E037A0206147363726F6C6C6261727269676874627574746F6E036F0206
0E7363726F6C6C6261727374796C6503D90206127363726F6C6C626172746F70
627574746F6E03790206147363726F6C6C62617276747261636B7374796C6503
3A01060E7363726F6C6C626F787374796C650392070619736D616C6C7363726F
6C6C62617268747261636B7374796C6503AD010613736D616C6C7363726F6C6C
6261727374796C650349020619736D616C6C7363726F6C6C6261727674726163
6B7374796C6503AD01060A7468756D627374796C65034E01060A747261636B73
74796C65030602060F627574746F6E7374796C6564726F70033704060D6D656E
756974656D7374796C6503C00F06146D656E756974656D7374796C655F627574
746F6E03DA0906126D656E75736570617261746F727374796C65039200060D6D
656E75766965777374796C65039602060C706F706F7665727374796C65033E02
06176D656E756974656D627574746F6E7374796C655F746F7003251006136D65
6E756974656D7374796C655F6F726465720312100610726164696F627574746F
6E7374796C65034A05005450463007544C61796F757400095374796C654E616D
650610456469747374796C655F73656172636805416C69676E070643656E7465
720A53697A652E57696474680500000000000000B207400B53697A652E486569
6768740500000000000000F003401453697A652E506C6174666F726D44656661
756C74080756697369626C6508085461624F7264657202040B46697865644865
69676874021E000A5452656374616E676C6500095374796C654E616D65060262
6705416C69676E0708436F6E74656E74730A46696C6C2E436F6C6F7207097846
463144323533350748697454657374080A53697A652E57696474680500000000
000000B207400B53697A652E4865696768740500000000000000F00340145369
7A652E506C6174666F726D44656661756C74080C5374726F6B652E436F6C6F72
0709784646314432353335075852616469757305000000000000008001400759
5261646975730500000000000000800140000F54436F6C6F72416E696D617469
6F6E00095374796C654E616D650614436F6C6F72416E696D6174696F6E315374
796C65084475726174696F6E050000000000CDCCCCFC3F0C50726F7065727479
4E616D65060C5374726F6B652E436F6C6F720A537461727456616C7565070978
46463144323533350953746F7056616C75650709784646333734313536075472
6967676572060E4973466F63757365643D747275650E54726967676572496E76
65727365060F4973466F63757365643D66616C736500000007544C61796F7574
00095374796C654E616D650607636F6E74656E7405416C69676E0706436C6965
6E74064C6F636B6564090C4D617267696E732E4C6566740500000000000000E8
03400B4D617267696E732E546F700500000000000000C000400D4D617267696E
732E52696768740500000000000000C000400E4D617267696E732E426F74746F
6D0500000000000000C000400A53697A652E576964746805000000000000C093
07400B53697A652E4865696768740500000000000000C003401453697A652E50
6C6174666F726D44656661756C7408000007544C61796F757400095374796C65
4E616D650607627574746F6E7305416C69676E07055269676874064C6F636B65
64090B4D617267696E732E546F7005000000000000008000400D4D617267696E
732E526967687405000000000000008000400E4D617267696E732E426F74746F
6D05000000000000008000400A506F736974696F6E2E580500000000000000B1
07400A506F736974696F6E2E5905000000000000008000400A53697A652E5769
64746805000000000000000000000B53697A652E486569676874050000000000
0000D003401453697A652E506C6174666F726D44656661756C740800000C5442
727573684F626A65637400095374796C654E616D65060A666F726567726F756E
640B42727573682E436F6C6F72070978453646464646464600000C5442727573
684F626A65637400095374796C654E616D65060973656C656374696F6E0B4272
7573682E436F6C6F72070978374631443235333500000B54466F6E744F626A65
637400095374796C654E616D650604666F6E740B466F6E742E46616D696C7906
06526F626F746F09466F6E742E53697A650500000000000000E0024000000654
4C6162656C00095374796C654E616D65060670726F6D7074064C6F636B656409
074F706163697479050000000000000080FE3F0B5374796C654C6F6F6B757006
19456469747374796C654C6162656C5374796C65536561726368075669736962
6C6508000007544C61796F757400095374796C654E616D65060C4C61796F7574
315374796C6505416C69676E07044C6566740C4D617267696E732E4C65667405
00000000000000C001400A506F736974696F6E2E580500000000000000C00140