-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathuMain.fmx
More file actions
7393 lines (7343 loc) · 492 KB
/
uMain.fmx
File metadata and controls
7393 lines (7343 loc) · 492 KB
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 frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'Roselt Developer Tools'
ClientHeight = 800
ClientWidth = 1200
Position = ScreenCenter
StyleBook = dmStyles.StyleCopperDark
WindowState = wsMaximized
FormFactor.Width = 320
FormFactor.Height = 480
FormFactor.Devices = [Desktop]
ShowFullScreenIcon = True
OnCreate = FormCreate
OnResize = FormResize
DesignerMasterStyle = 0
object TopBar: TRectangle
Align = Top
Corners = []
Fill.Color = x4B000000
Sides = []
Size.Width = 1200.00000000000000000
Size.Height = 49.00000000000000000
Size.PlatformDefault = False
object lblNavTitle: TLabel
Align = Client
StyledSettings = [Family, FontColor]
Size.Width = 1200.00000000000000000
Size.Height = 49.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 28.00000000000000000
TextSettings.Font.StyleExt = {00070000000000000004000000}
TextSettings.HorzAlign = Center
TextSettings.Trimming = None
Text = 'Home'
TabOrder = 0
object btnHamburger: TButton
Align = Left
Cursor = crHandPoint
Size.Width = 48.00000000000000000
Size.Height = 49.00000000000000000
Size.PlatformDefault = False
StyleLookup = 'detailstoolbutton'
TabOrder = 1
Text = 'btnHamburger'
TextSettings.Trimming = None
OnClick = btnHamburgerClick
end
object btnToolHelp: TButton
Align = Right
Cursor = crHandPoint
Margins.Left = 6.00000000000000000
Margins.Top = 6.00000000000000000
Margins.Right = 6.00000000000000000
Margins.Bottom = 6.00000000000000000
Position.X = 1159.00000000000000000
Position.Y = 6.00000000000000000
Size.Width = 35.00000000000000000
Size.Height = 37.00000000000000000
Size.PlatformDefault = False
TabOrder = 0
TextSettings.Trimming = None
Visible = False
OnClick = btnToolHelpClick
object imgToolHelp: TSkSvg
Align = Client
Margins.Left = 6.00000000000000000
Margins.Top = 6.00000000000000000
Margins.Right = 6.00000000000000000
Margins.Bottom = 6.00000000000000000
Size.Width = 23.00000000000000000
Size.Height = 25.00000000000000000
Size.PlatformDefault = False
Svg.OverrideColor = claWhite
Svg.Source =
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" f' +
'ill="currentColor" class="bi bi-info-circle" viewBox="0 0 16 16"' +
'>'#13#10' <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 ' +
'8 0a8 8 0 0 0 0 16z"/>'#13#10' <path d="m8.93 6.588-2.29.287-.082.38.' +
'45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.8' +
'08 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-' +
'.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-' +
'2 0 1 1 0 0 1 2 0z"/>'#13#10'</svg>'
end
end
end
end
object LayoutContainer: TLayout
Align = Client
Size.Width = 799.00000000000000000
Size.Height = 751.00000000000000000
Size.PlatformDefault = False
TabOrder = 5
object layAllTools: TScrollBox
Align = Client
Padding.Left = 10.00000000000000000
Padding.Top = 10.00000000000000000
Padding.Right = 10.00000000000000000
Padding.Bottom = 10.00000000000000000
Size.Width = 799.00000000000000000
Size.Height = 751.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 799.00000000000000000
Viewport.Height = 751.00000000000000000
object edtSearchAllTools: TEdit
Touch.InteractiveGestures = [LongTap, DoubleTap]
Align = MostTop
TabOrder = 0
Position.X = 10.00000000000000000
Position.Y = 10.00000000000000000
Margins.Bottom = 10.00000000000000000
Size.Width = 779.00000000000000000
Size.Height = 35.00000000000000000
Size.PlatformDefault = False
TextPrompt = 'Type to search for tools...'
OnChange = edtSearchAllToolsChange
OnKeyUp = edtSearchAllToolsKeyUp
object SearchEditButton1: TSearchEditButton
Touch.InteractiveGestures = [LongTap]
CanFocus = False
Cursor = crArrow
TextSettings.Trimming = None
Size.Width = 28.00000000000000000
Size.Height = 31.00000000000000000
Size.PlatformDefault = False
TabOrder = 0
end
end
object layAllToolsGrid: TFlowLayout
Align = Top
Position.X = 10.00000000000000000
Position.Y = 55.00000000000000000
Size.Width = 779.00000000000000000
Size.Height = 686.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
Justify = Left
JustifyLastLine = Left
FlowDirection = LeftToRight
object btnAllToolsTesting: TButton
Cursor = crHandPoint
Padding.Left = 12.00000000000000000
Padding.Top = 12.00000000000000000
Padding.Right = 12.00000000000000000
Padding.Bottom = 8.00000000000000000
Margins.Left = 6.00000000000000000
Margins.Top = 6.00000000000000000
Margins.Right = 6.00000000000000000
Margins.Bottom = 6.00000000000000000
Position.X = 6.00000000000000000
Position.Y = 6.00000000000000000
Size.Width = 185.00000000000000000
Size.Height = 240.00000000000000000
Size.PlatformDefault = False
TabOrder = 11
TextSettings.Trimming = None
object Label7: TLabel
Align = Top
AutoSize = True
StyledSettings = [Family, Style, FontColor]
Margins.Bottom = 14.00000000000000000
Position.X = 12.00000000000000000
Position.Y = 124.00000000000000000
Size.Width = 161.00000000000000000
Size.Height = 21.71427917480469000
Size.PlatformDefault = False
TextSettings.Font.Size = 16.00000000000000000
TextSettings.Trimming = None
Text = 'Testing Stuff '#55357#56833#55357#56833#55357#56833
TabOrder = 5
end
object Label8: TLabel
Align = Client
Size.Width = 161.00000000000000000
Size.Height = 72.28572082519532000
Size.PlatformDefault = False
TextSettings.Font.Size = 13.00000000000000000
TextSettings.VertAlign = Leading
TextSettings.Trimming = None
Text = 'This is just some random testing text. Nothing important here.'
TabOrder = 4
end
object Rectangle2: TRectangle
Align = MostTop
Fill.Color = x4B000000
Padding.Left = 12.00000000000000000
Padding.Top = 12.00000000000000000
Padding.Right = 12.00000000000000000
Padding.Bottom = 12.00000000000000000
Margins.Left = 26.00000000000000000
Margins.Right = 26.00000000000000000
Margins.Bottom = 12.00000000000000000
Position.X = 38.00000000000000000
Position.Y = 12.00000000000000000
Sides = []
Size.Width = 109.00000000000000000
Size.Height = 100.00000000000000000
Size.PlatformDefault = False
Stroke.Thickness = 0.00000000000000000
XRadius = 8.00000000000000000
YRadius = 8.00000000000000000
object SkSvg2: TSkSvg
Align = Client
Size.Width = 85.00000000000000000
Size.Height = 76.00000000000000000
Size.PlatformDefault = False
Svg.OverrideColor = claWhite
Svg.Source =
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" f' +
'ill="currentColor" class="bi bi-box" viewBox="0 0 16 16">'#13#10' <pa' +
'th d="M8.186 1.113a.5.5 0 0 0-.372 0L1.846 3.5 8 5.961 14.154 3.' +
'5 8.186 1.113zM15 4.239l-6.5 2.6v7.922l6.5-2.6V4.24zM7.5 14.762V' +
'6.838L1 4.239v7.923l6.5 2.6zM7.443.184a1.5 1.5 0 0 1 1.114 0l7.1' +
'29 2.852A.5.5 0 0 1 16 3.5v8.662a1 1 0 0 1-.629.928l-7.185 2.874' +
'a.5.5 0 0 1-.372 0L.63 13.09a1 1 0 0 1-.63-.928V3.5a.5.5 0 0 1 .' +
'314-.464L7.443.184z"/>'#13#10'</svg>'
end
end
end
end
end
object layTesting: TLayout
Align = Client
Size.Width = 799.00000000000000000
Size.Height = 751.00000000000000000
Size.PlatformDefault = False
Visible = False
TabOrder = 0
object lblTestingStuff: TLabel
Align = Top
Size.Width = 799.00000000000000000
Size.Height = 95.00000000000000000
Size.PlatformDefault = False
TextSettings.HorzAlign = Center
TextSettings.Trimming = None
Text = 'Testing Stuff'
TabOrder = 0
end
object memTesting: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Align = Client
Size.Width = 799.00000000000000000
Size.Height = 556.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 791.00000000000000000
Viewport.Height = 548.00000000000000000
end
object Button14: TButton
Align = Top
Position.Y = 173.00000000000000000
Size.Width = 799.00000000000000000
Size.Height = 22.00000000000000000
Size.PlatformDefault = False
TabOrder = 2
Text = 'Button14'
TextSettings.Trimming = None
end
object layNameList: TRectangle
Align = Top
Fill.Color = x4B000000
Padding.Left = 12.00000000000000000
Padding.Top = 12.00000000000000000
Padding.Right = 12.00000000000000000
Padding.Bottom = 12.00000000000000000
Margins.Bottom = 6.00000000000000000
Position.Y = 95.00000000000000000
Sides = []
Size.Width = 799.00000000000000000
Size.Height = 72.00000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 8.00000000000000000
YRadius = 8.00000000000000000
object cbNameList: TComboBox
Align = Right
Enabled = False
Items.Strings = (
'Real Life'
'GTA San Andreas')
ItemIndex = 0
Position.X = 647.00000000000000000
Position.Y = 12.00000000000000000
Size.Width = 140.00000000000000000
Size.Height = 48.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
end
object layTitleDescriptionNameList: TLayout
Align = Client
Size.Width = 598.00000000000000000
Size.Height = 48.00000000000000000
Size.PlatformDefault = False
TabOrder = 2
object lblTitleNameList: TLabel
Align = Top
StyledSettings = [Family, Style, FontColor]
Size.Width = 598.00000000000000000
Size.Height = 24.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 18.00000000000000000
TextSettings.Trimming = None
Text = 'Name List'
TabOrder = 1
end
object lblDescriptionNameList: TLabel
Align = Client
StyledSettings = [Family, Style, FontColor]
Size.Width = 598.00000000000000000
Size.Height = 24.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 14.00000000000000000
TextSettings.Trimming = None
Text = 'Select what kind of names you want'
TabOrder = 0
end
end
object imgNameList: TSkSvg
Align = Left
Margins.Left = 5.00000000000000000
Margins.Top = 12.00000000000000000
Margins.Right = 8.00000000000000000
Margins.Bottom = 12.00000000000000000
Position.X = 17.00000000000000000
Position.Y = 24.00000000000000000
Size.Width = 24.00000000000000000
Size.Height = 24.00000000000000000
Size.PlatformDefault = False
Svg.OverrideColor = claWhite
Svg.Source =
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" f' +
'ill="currentColor" class="bi bi-list" viewBox="0 0 16 16">'#13#10' <p' +
'ath fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 ' +
'1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1' +
'H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5' +
'.5 0 0 1-.5-.5z"/>'#13#10'</svg>'
end
end
end
object layChangeLog: TScrollBox
Align = Client
Padding.Left = 20.00000000000000000
Padding.Top = 20.00000000000000000
Padding.Right = 20.00000000000000000
Padding.Bottom = 20.00000000000000000
Size.Width = 799.00000000000000000
Size.Height = 751.00000000000000000
Size.PlatformDefault = False
TabOrder = 2
Visible = False
Viewport.Width = 799.00000000000000000
Viewport.Height = 751.00000000000000000
object layMemoChangeLog: TRectangle
Align = Client
Fill.Color = x4B000000
Padding.Left = 12.00000000000000000
Padding.Top = 12.00000000000000000
Padding.Right = 12.00000000000000000
Padding.Bottom = 12.00000000000000000
Margins.Bottom = 6.00000000000000000
Sides = []
Size.Width = 759.00000000000000000
Size.Height = 628.00000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 8.00000000000000000
YRadius = 8.00000000000000000
object memChangeLog: TMemo
Touch.InteractiveGestures = [Pan, LongTap, DoubleTap]
DataDetectorTypes = []
Lines.Strings = (
'This app'#39's history actually goes back to 2013 when I created the' +
' very first tool (Color Picker) in the app. '
''
'Initially, it was just a simple Color Picker Tool for myself and' +
' close friends. I kept updating and rewriting this tool and even' +
'tually in 2017 I released it to the public as "Roselt Color Pick' +
'er".'
''
'And in the back of my mind, I always knew I wanted the app to be' +
' fully cross-platform, open source, and have many other tools in' +
' it.'
''
'And in 2020, I finally started working on "Roselt Developer Tool' +
's", one app to rule them all '#55357#56833'.'
''
'Since 2017, I'#39've kept release notes for every release of the app' +
'.'
''
'Release Notes:'
'* Version 0.1.0 Alpha (~2013)'
'* Version 1.0.0 Prototype (~2014)'
'* Version 0.2.0 Alpha (Early 2015)'
'* Version 0.3.0 Alpha (Late 2015)'
'* Version 1.0.0 (29/08/2017)'
'* Version 1.1.0 (29/08/2017)'
'* Version 1.2.0 (30/08/2017)'
'* Version 1.3.0 (31/08/2017)'
'* Version 1.4.0 (31/08/2017)'
'* Version 1.5.0 (05/09/2017)'
'* Version 1.6.0 (06/09/2017)'
'* Version 1.6.1 (09/09/2017)'
'* Version 1.6.2 (12/09/2017)'
'* Version 1.6.3 (13/09/2017)'
'* Version 1.6.4 (13/09/2017)'
'* Version 1.7.0 (14/09/2017)'
'* Version 1.7.1 (04/10/2017)'
'* Version 1.8.0 (06/02/2018)'
'* Version 1.8.1 (07/02/2018)'
'* Version 1.8.2 (08/02/2018)'
'* Version 1.8.3 (09/02/2018)'
'* Version 1.8.4 (10/03/2018)'
'* Version 1.8.5 (10/03/2018)'
'* Version 1.8.6 (11/03/2018)'
'* Version 1.9.0 (24/06/2018)'
'* Version 1.9.1 (24/06/2018)'
'* Version 2.0.0 (01/07/2018)'
'* Version 2.0.1 (11/08/2018)'
'* Version 2.0.2 (12/01/2019)'
'* Version 2.1.0 (13/01/2018)'
'* Version 2.1.1 (13/01/2018)'
'* Version 2.1.2 (13/01/2018)'
'* Version 2.1.3 (13/01/2018)'
'* Version 2.1.4 (13/01/2018)'
'* Version 3.0.0 Beta 1 (27/04/2020)'
'* Version 3.0.0 Beta 2 (28/05/2023)'
'* Version 3.0.0 Beta 3 (29/07/2023)'
'* Version 3.0.0 Beta 4 (21/10/2023)'
''
''
''
'Version 0.1.0 Alpha (~2013):'
' * This is the first version I built and I distributed it to ' +
'all my friends and fellow IT classmates.'
' * It actually evolved into having over 100 different colors ' +
'instead of the 20 in the screenshot, but that version is lost.'
''
'Version 1.0.0 Prototype (~2014):'
' * Changed name to "Programming Color Code Helper" and added ' +
'many more color codes and features.'
' * This was supposed to become Version 1.0.0, but I never fin' +
'ished it and I lost the source code to it.'
''
'Version 0.2.0 Alpha (Early 2015):'
' * After losing the source code to my Version 1.0.0 Prototype' +
' (Programming Color Code Helper), I went back to my 0.1.0 Alpha ' +
'codebase and built this version.'
' * This is the first version I built and distributed to child' +
'ren from other schools who also had IT as a subject.'
''
'Version 0.3.0 Alpha (Late 2015):'
' * Added RGB Selectors.'
' * Based on feedback from 0.2.0 Alpha, I polished the user in' +
'terface in this version in order to make it feel more profession' +
'al.'
''
'Version 1.0.0 (29/08/2017):'
' * Initial Public Release.'
' * Changed name to "Roselt Color Picker".'
' * Completely redesigned the user interface.'
' * Added color codes for HTML, C++, Java, VB, and Photoshop.'
' * Replaced the RGB Selectors with a Color Panel.'
' '
'Version 1.1.0 (29/08/2017):'
' * Added back the RGB picker.'
' * Updated the app icon.'
' * Made the starting window size larger.'
' * Added support for C#.'
' * Fixed the HTML color codes.'
' * Fixed the Java color codes.'
' * Fixed the Photoshop color codes.'
''
' '
'Version 1.2.0 (30/08/2017):'
' * Added Settings.'
' * Mentioned that the Delphi Color Code is for the VCL Framew' +
'ork.'
' * Added support for Delphi in the FMX Framework.'
' * Fixed the Color Picker in the top left corner. It will now' +
' select colors more smoothly.'
' * Decreased the width of the splitter which allowed you to c' +
'hange the size of the left panel.'
' * You can now resize the height of the Color Picker in the t' +
'op left corner.'
' * The app now launches in Maximized mode.'
' * Fixed the Color List Names. It now selects correctly.'
''
''
'Version 1.3.0 (31/08/2017):'
' * You can now type an RGB color.'
' * The app now has an installer.'
' * Added support for RGBA colors in C# and Delphi (FMX).'
' * You can now generate random colors by right-clicking on th' +
'e ColorBox.'
' * Added the ability to quickly remove a certain color.'
' * Added a "Roadmap for the Future.txt" file in the Documenta' +
'tion Files.'
''
''
'Version 1.4.0 (31/08/2017):'
' * Added the shortcut keys section in the About Form.'
' * Added the ability to save and load custom colors.'
''
''
'Version 1.5.0 (05/09/2017):'
' * Added the ability to delete all custom colors.'
' * It is now mobile responsive.'
' * You can now select a color from your own screen.'
' * Added support for Clarion Hex color codes.'
' * Added support for VB Hex color codes.'
' * Added support for PowerBuilder RGB long color codes.'
''
''
'Version 1.6.0 (06/09/2017):'
' * Improved backend code and efficiency of code.'
' * Saving Colors now doesn'#39't accept blank names.'
' * Changed the layout of Settings.'
' * You can now choose a color from an uploaded picture.'
''
''
'Version 1.6.1 (09/09/2017):'
' * Added the ability to select a color from an image when in ' +
'mobile mode.'
' * About form is now more responsive and will look better on ' +
'phones.'
' * Improved the responsiveness of the main form.'
''
''
'Version 1.6.2 (12/09/2017):'
' * Added the ability to search for predefined colors and cust' +
'om colors.'
''
''
'Version 1.6.3 (13/09/2017):'
' * The files for Settings and Saved Colors are now hidden wit' +
'hin Documents on Windows Desktop.'
' * Buttons now have hints.'
' * You can now press escape to exit the selecting color from ' +
'the computer screen.'
''
''
'Version 1.6.4 (13/09/2017):'
' * Fixed a bug with Settings.'
' * Selecting a color from the screen is now more dynamic and ' +
'better.'
' * The starting color for the app is now black.'
''
''
'Version 1.7.0 (14/09/2017):'
' * You can now also view the RGBA colors in percentages.'
' * You can now view the HSV values of colors. You choose HSV ' +
'from Settings.'
''
''
'Version 1.7.1 (04/10/2017):'
' * Added support for Unity'#39's Hex Color Codes.'
''
''
'Version 1.8.0 (06/02/2018):'
' * Improved the overall User Interface.'
''
''
'Version 1.8.1 (07/02/2018):'
' * Added the ability to Hide/Show Color Codes.'
' * Fixed a hamburger menu bug with the "Screen Eye Dropper".'
' * Added more information to the Developer tab in the About.'
' * Fixed a bug with the settings when in mobile view.'
' * The mobile view now appears as soon as the form'#39's inner he' +
'ight is less than 720 pixels.'
' * Added an Exit button to the Hamburger Menu.'
' * Added hover hints to the menu items in the Hamburger Menu.'
''
''
'Version 1.8.2 (08/02/2018):'
' * Fixed a bug on mobile view when trying to open Predefined ' +
'colors after opening About or Settings.'
' * Added a hint to the mobile view'#39's Color Codes button.'
' * Fixed some broken shortcuts.'
' * Fixed a bug on the mobile view that prevented Predefined c' +
'olors and custom colors to show correctly when on the About or S' +
'ettings view and pressing the shortcut keys.'
''
''
'Version 1.8.3 (09/02/2018):'
' * The app now displays the desktop view when on 1366x768 res' +
'olution instead of the mobile view.'
' * Fixed a bug that prevented the Hamburger menu from working' +
' on some computers.'
''
''
'Version 1.8.4 (10/03/2018):'
' * Fixed bugs on Android (App now works on Android).'
''
''
'Version 1.8.5 (10/03/2018):'
' * Pressing the "Exit Application" button will now bring up a' +
' confirmation dialog.'
' * The About section should now look better on Android.'
' * The RGB Color Values will now look better on Android.'
' * Pressing the Physical Back Button on Android will now trig' +
'ger the "Exit Application" button and confirmation dialog.'
''
''
'Version 1.8.6 (11/03/2018):'
' * The About section now looks better on very small Android d' +
'evices.'
' * The About section now has links that take you to the app'#39's' +
' download page on Microsoft Store and Google Play Store.'
''
''
'Version 1.9.0 (24/06/2018):'
' * Fixed an issue with HSV Color Values.'
' * Improve the GUI for Color Values.'
' * Added HSL Color Values.'
' * Added HSB Color Values.'
' * Added CMYK Color Values.'
''
''
'Version 1.9.1 (24/06/2018):'
' * Improved the responsiveness of the app when going into Mob' +
'ile View.'
' * The app now targets Android API Level 26 (Android 8.0).'
' * The app minimum Android API Level is now 23 (Android 6.0).'
' * Saving/Viewing Custom Colors now works on Android. '
''
''
'Version 2.0.0 (01/07/2018):'
' * Added CIELAB Color Values.'
' * Added a new feature called "Color Range" where you can see' +
' colors matching your current color.'
' * Improved the responsiveness of the app when going into Mob' +
'ile View and resizing the window.'
' * Improved the TrackBar Scrolling on the RGBA Colors.'
' * Added RGBA support for HTML.'
' * Copy Color Code buttons are now hidden when the color does' +
'n'#39't support Alpha.'
''
''
'Version 2.0.1 (11/08/2018):'
' * Improved the Color Range. It'#39's now more accurate and shows' +
' up to 5 times more colors.'
''
''
'Version 2.0.2 (12/01/2019):'
' * Added HSL Color Code for HTML.'
' * Improved Samsung DeX Support on Android.'
' * Improved Android 8.0 Support.'
''
''
'Version 2.1.0 (13/01/2018):'
' * Improved Samsung DeX Support on Android.'
' * Improved Android 9.0 Support.'
' * The Hamburger Menu is now always visible on Android and ha' +
's icons added to it.'
' * The text in the Hamburger Menu is now better centered.'
' * Function Key Shortcuts now work on Android.'
' * The Shortcuts tab in About now displays on Android.'
' * The Exit Button icon changed.'
' * Fixed a bug with the Hamburger Menu not properly closing s' +
'ometimes on Android.'
' * Fixed a bug with the RGB Number values not displaying when' +
' the app opens.'
' * The ColorPanel is now bigger on large displays.'
' * The Android Label has changed to "Roselt Color Picker" ins' +
'tead of "Roselt_Color_Picker".'
' * Added an Experimental Dark Mode which can be enabled from ' +
'Settings.'
' * The Home Button now always shows on a small display.'
''
''
'Version 2.1.1 (13/01/2018):'
' * Fixed some bugs on Android.'
' * Improved Dark Mode.'
''
''
'Version 2.1.2 (13/01/2018):'
' * Fixed a bug where double menu icons would display with the' +
' default theme.'
''
''
'Version 2.1.3 (13/01/2018):'
' * The Settings Page now looks better on smaller screens.'
''
''
'Version 2.1.4 (13/01/2018):'
' * The Settings Page now looks better on smaller screens.'
' * Improved Dark Mode.'
''
''
'Version 3.0.0 Beta 1 (27/04/2020):'
' * Open Sourced the entire codebase on GitHub.'
' * Revamped most of the user interface.'
' * New icons.'
' * Implemented various Styles to change the look and feel of ' +
'the app.'
' * Added Sliders for CMYK Color Values.'
' * Added Sliders for HSV Color Values.'
' * Added Sliders for HSL Color Values.'
' * Added XYZ Color Values.'
' * Added Yxy Color Values.'
' * Added Hunter Lab Color Values.'
' * Added Base Numbers (Hex, Decimal, Octal, Binary).'
' * Added Color Information Panel to learn about colors.'
''
''
'Version 3.0.0 Beta 2 (28/05/2023):'
' * Renamed the app to "Roselt Developer Tools".'
' * Revamped the entire user interface again.'
' * New icons again (Bootstrap Icons).'
' * Custom Colors were temporarily removed from Color Picker T' +
'ool.'
' * Added JSON to YAML Converter Tool.'
' * Added Number Base Converter Tool.'
' * Added Timestamp Converter Tool.'
' * Added Text to Array Converter Tool.'
' * Added HTML Encoder/Decoder Tools.'
' * Added Base64 Text Encoder/Decoder Tools.'
' * Added URL Encoder/Decoder Tools.'
' * Added Hash Generator Tool.'
' * Added Password Generator Tool.'
' * Added UUID Generator Tool.'
' * Added Name Generator Tool.'
' * Added Lorem Ipsum Generator Tool.'
' * Added Case Converter & Inspector Tool.'
' * Added HTML Preview Tool.'
' * Added Image Effects Tool.'
''
''
'Version 3.0.0 Beta 3 (29/07/2023):'
' * Fixed "Copy to Clipboard" buttons on Number Base Converter' +
' Tool.'
' * Added "Copy to Clipboard" and "Save to File" for the Image' +
' Effects Tool.'
' * Added JSON Formatter Tool.'
' * Added XML Formatter Tool.'
' * Added Delphi Formatter Tool (Only minifies currently).'
' * Added Ping IP / Domain Tool.'
' * Added an option to enable/disable number characters in the' +
' Password Generator Tool.'
''
''
'Version 3.0.0 Beta 4 (21/10/2023):'
' * Added JWT Decoder Tool.'
' * Added Bootstrap Icons Tool.'
' * Added Font Awesome Icons Tool.'
' * Added Feather Icons Tool.'
' * Added Trace Route Tool.'
' * Improved Name Generator Tool.'
' * Improved Ping Tool.'
' * Improved Image Effects Tool.'
' * Added an experimental FullScreen Mode Toggle (In Settings)'
' * Fixed "All Tools" Search Box'
' * Added Change Log (Release Notes) to Settings'
' * Added Useful Links to Settings')
ReadOnly = True
TextSettings.WordWrap = True
Align = Client
Size.Width = 735.00000000000000000
Size.Height = 604.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
Viewport.Width = 711.00000000000000000
Viewport.Height = 596.00000000000000000
end
end
object lblChangeLog: TLabel
Align = Top
StyledSettings = [Family, Style, FontColor]
Position.X = 20.00000000000000000
Position.Y = 67.00000000000000000
Size.Width = 759.00000000000000000
Size.Height = 30.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 20.00000000000000000
TextSettings.Trimming = None
Text = 'Change Log'
TabOrder = 0
end
object layTop: TLayout
Align = Top
Position.X = 20.00000000000000000
Position.Y = 20.00000000000000000
Size.Width = 759.00000000000000000
Size.Height = 47.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
object lblTitle: TLabel
Align = Client
Cursor = crHandPoint
StyledSettings = [Family, Style, FontColor]
HitTest = True
Size.Width = 712.00000000000000000
Size.Height = 47.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 14.00000000000000000
TextSettings.HorzAlign = Center
TextSettings.Trimming = None
Text =
'https://github.com/shaunroselt/Roselt-Developer-Tools/blob/maste' +
'r/RELEASE_NOTES.md'
TabOrder = 1
OnClick = lblTitleClick
end
object btnBackChangeLog: TButton
Align = Left
Cursor = crHandPoint
Margins.Left = 6.00000000000000000
Margins.Top = 6.00000000000000000
Margins.Right = 6.00000000000000000
Margins.Bottom = 6.00000000000000000
Position.X = 6.00000000000000000
Position.Y = 6.00000000000000000
Size.Width = 35.00000000000000000
Size.Height = 35.00000000000000000
Size.PlatformDefault = False
TabOrder = 0
TextSettings.Trimming = None
OnClick = btnBackChangeLogClick
object imgBackChangeLog: TSkSvg
Align = Client
Margins.Left = 6.00000000000000000
Margins.Top = 6.00000000000000000
Margins.Right = 6.00000000000000000
Margins.Bottom = 6.00000000000000000
Size.Width = 23.00000000000000000
Size.Height = 23.00000000000000000
Size.PlatformDefault = False
Svg.OverrideColor = claWhite
Svg.Source =
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" f' +
'ill="currentColor" class="bi bi-arrow-left-circle" viewBox="0 0 ' +
'16 16">'#13#10' <path fill-rule="evenodd" d="M1 8a7 7 0 1 0 14 0A7 7 ' +
'0 0 0 1 8zm15 0A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-4.5-.5a.5.5 0 0 1' +
' 0 1H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.70' +
'8l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5z"/>'#13#10'</svg>'
end
end
end
end
object laySettings: TScrollBox
Align = Client
Padding.Left = 20.00000000000000000
Padding.Top = 20.00000000000000000
Padding.Right = 20.00000000000000000
Padding.Bottom = 20.00000000000000000
Size.Width = 799.00000000000000000
Size.Height = 751.00000000000000000
Size.PlatformDefault = False
TabOrder = 3
Viewport.Width = 799.00000000000000000
Viewport.Height = 751.00000000000000000
object layFontFamily: TRectangle
Align = Top
Fill.Color = x4B000000
Padding.Left = 12.00000000000000000
Padding.Top = 12.00000000000000000
Padding.Right = 12.00000000000000000
Padding.Bottom = 12.00000000000000000
Margins.Bottom = 6.00000000000000000
Position.X = 20.00000000000000000
Position.Y = 206.00000000000000000
Sides = []
Size.Width = 759.00000000000000000
Size.Height = 72.00000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
Visible = False
XRadius = 8.00000000000000000
YRadius = 8.00000000000000000
object cbFontFamily: TComboBox
Align = Right
Position.X = 560.00000000000000000
Position.Y = 12.00000000000000000
Size.Width = 187.00000000000000000
Size.Height = 48.00000000000000000
Size.PlatformDefault = False
TabOrder = 1
OnChange = cbThemeChange
end
object imgFontFamily: TSkSvg
Align = Left
Margins.Left = 5.00000000000000000
Margins.Top = 12.00000000000000000
Margins.Right = 8.00000000000000000
Margins.Bottom = 12.00000000000000000
Position.X = 17.00000000000000000
Position.Y = 24.00000000000000000
Size.Width = 24.00000000000000000
Size.Height = 24.00000000000000000
Size.PlatformDefault = False
Svg.OverrideColor = claWhite
Svg.Source =
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" f' +
'ill="currentColor" class="bi bi-fonts" viewBox="0 0 16 16">'#13#10' <' +
'path d="M12.258 3h-8.51l-.083 2.46h.479c.26-1.544.758-1.783 2.69' +
'3-1.845l.424-.013v7.827c0 .663-.144.82-1.3.923v.52h4.082v-.52c-1' +
'.162-.103-1.306-.26-1.306-.923V3.602l.431.013c1.934.062 2.434.30' +
'1 2.693 1.846h.479L12.258 3z"/>'#13#10'</svg>'
end
object layFontFamilyTitleDescription: TLayout
Align = Client
Size.Width = 511.00000000000000000
Size.Height = 48.00000000000000000
Size.PlatformDefault = False
TabOrder = 2
object lblFontFamilyTitle: TLabel
Align = Top
StyledSettings = [Family, Style, FontColor]
Size.Width = 511.00000000000000000
Size.Height = 24.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 18.00000000000000000
TextSettings.Trimming = None
Text = 'Font Family'
TabOrder = 1
end
object lblFontFamilyDescription: TLabel
Align = Client
StyledSettings = [Family, Style, FontColor]
Size.Width = 511.00000000000000000
Size.Height = 24.00000000000000000
Size.PlatformDefault = False
TextSettings.Font.Size = 14.00000000000000000
TextSettings.Trimming = None
Text = 'Select which font family to display'
TabOrder = 0
end
end
end
object layLanguage: TRectangle
Align = Top
Fill.Color = x4B000000
Padding.Left = 12.00000000000000000
Padding.Top = 12.00000000000000000
Padding.Right = 12.00000000000000000
Padding.Bottom = 12.00000000000000000
Margins.Bottom = 6.00000000000000000
Position.X = 20.00000000000000000
Position.Y = 128.00000000000000000
Sides = []
Size.Width = 759.00000000000000000
Size.Height = 72.00000000000000000
Size.PlatformDefault = False
Stroke.Kind = None
XRadius = 8.00000000000000000
YRadius = 8.00000000000000000
object cbLanguage: TComboBox
Align = Right