forked from shaunroselt/Roselt-Developer-Tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuMain.pas
961 lines (874 loc) · 34.2 KB
/
uMain.pas
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
{ TODO: Finish everything 😂 }
unit uMain;
interface
uses
System.SysUtils,
System.Types,
System.UITypes,
System.Classes,
System.IOUtils,
System.Variants,
System.ImageList,
System.DateUtils,
FMX.Types,
FMX.Controls,
FMX.Forms,
FMX.Graphics,
FMX.Dialogs,
FMX.StdCtrls,
FMX.Layouts,
FMX.Controls.Presentation,
FMX.MultiView,
FMX.Objects,
FMX.ImgList,
FMX.Ani,
FMX.Memo.Types,
FMX.ScrollBox,
FMX.Memo,
FMX.ListBox,
FMX.Edit,
FMX.SearchBox,
FMX.TabControl,
FMX.Printer,
FMX.EditBox,
FMX.SpinBox,
Roselt.Clipboard,
Roselt.AppInfo,
Roselt.Tools,
Roselt.Utility,
uStyles,
uBootstrapIcons,
uFrame_Base64TextEncoderDecoder,
uFrame_JsonYamlConverter,
uFrame_HashGenerator,
uFrame_HTMLEncoderDecoder,
uFrame_JsonFormatter,
uFrame_LoremIpsumGenerator,
uFrame_TextCaseConverterInspector,
uFrame_ColorPicker,
uFrame_ImageEffects,
uFrame_TimestampConverter,
uFrame_NumberBaseConverter,
uFrame_URLEncoderDecoder,
uFrame_GZipCompressDecompress,
uFrame_JWTDecoder,
uFrame_Base64ImageEncoderDecoder,
uFrame_DelphiFormatter,
uFrame_SQLFormatter,
uFrame_HTMLFormatter,
uFrame_CSSFormatter,
uFrame_PHPFormatter,
uFrame_XMLFormatter,
uFrame_JavaScriptFormatter,
uFrame_UUIDGenerator,
uFrame_JWTTokenGenerator,
uFrame_PasswordGenerator,
uFrame_TextEscapeUnescape,
uFrame_MarkdownPreview,
uFrame_HTMLPreview,
uFrame_RegexTester,
uFrame_NameGenerator,
uFrame_TextToArray,
uFrame_PingIPDomain,
uFrame_TraceRoute,
uFrame_ImageConverter,
uFrame_BootstrapIcons,
uFrame_FontAwesomeIcons,
uFrame_FeatherIcons,
System.Skia,
FMX.Skia;
type
TfrmMain = class(TForm)
MultiView: TMultiView;
TopBar: TRectangle;
lblNavTitle: TLabel;
btnHamburger: TButton;
layAllTools: TScrollBox;
layNavAllTools: TLayout;
imgAllTools: TSkSvg;
lblAllTools: TLabel;
btnAllTools: TRectangle;
LayoutContainer: TLayout;
MultiViewScrollBox: TVertScrollBox;
layNavTesting: TLayout;
btnTesting: TRectangle;
imgTesting: TSkSvg;
lblTesting: TLabel;
layTesting: TLayout;
lblTestingStuff: TLabel;
memTesting: TMemo;
layNavSettings: TLayout;
btnSettings: TRectangle;
imgSettings: TSkSvg;
lblSettings: TLabel;
layNavTestingMoreStuff: TLayout;
layNavExpandCollapseTestingMoreStuff: TLayout;
btnExpandCollapseTestingMoreStuff: TRectangle;
imgExpandCollapseTestingMoreStuff: TSkSvg;
lblExpandCollapseTestingMoreStuff: TLabel;
imgExpandCollapseIconTestingMoreStuff: TSkSvg;
layNavTesting1: TLayout;
btnTesting1: TRectangle;
imgTesting1: TSkSvg;
lblTesting1: TLabel;
layNavTesting3: TLayout;
btnTesting3: TRectangle;
imgTesting3: TSkSvg;
lblTesting3: TLabel;
layNavTesting2: TLayout;
btnTesting2: TRectangle;
imgTesting2: TSkSvg;
lblTesting2: TLabel;
SplitterNavContent: TSplitter;
btnToolHelp: TButton;
laySettings: TScrollBox;
layFontFamily: TRectangle;
cbFontFamily: TComboBox;
imgFontFamily: TSkSvg;
layFontFamilyTitleDescription: TLayout;
lblFontFamilyTitle: TLabel;
lblFontFamilyDescription: TLabel;
layLanguage: TRectangle;
cbLanguage: TComboBox;
imgLanguage: TSkSvg;
layLanguageTitleDescription: TLayout;
lblLanguageTitle: TLabel;
lblLanguageDescription: TLabel;
layLineNumbers: TRectangle;
imgLineNumbers: TSkSvg;
layLineNumbersTitleDescription: TLayout;
lblLineNumbersTitle: TLabel;
lblLineNumbersDescription: TLabel;
SwitchLineNumbers: TSwitch;
lblSwitchLineNumbers: TLabel;
layTheme: TRectangle;
cbTheme: TComboBox;
imgTheme: TSkSvg;
layThemeTitleDescription: TLayout;
lblThemeTitle: TLabel;
lblThemeDescription: TLabel;
layWordWrap: TRectangle;
imgWordWrap: TSkSvg;
layWordWrapTitleDescription: TLayout;
lblWordWrapTitle: TLabel;
lblWordWrapDescription: TLabel;
SwitchWordWrap: TSwitch;
lblSwitchWordWrap: TLabel;
lblTopSettings: TLabel;
layAppInfo: TRectangle;
imgAppInfo: TImage;
layAppInfoTitleDescription: TLayout;
lblAppInfoTitle: TLabel;
lblAppInfoDescription: TLabel;
btnAppInfoCopyToClipboard: TButton;
imgAppInfoCopyToClipboard: TSkSvg;
layUsefulLinks: TRectangle;
layUsefulLinksTitle: TLayout;
Image1: TSkSvg;
Label1: TLabel;
laySourceCodeLink: TLayout;
layMicrosoftStoreLink: TLayout;
Label3: TLabel;
Image3: TSkSvg;
laySteamLink: TLayout;
Button14: TButton;
imgToolHelp: TSkSvg;
edtSearchAllTools: TEdit;
SearchEditButton1: TSearchEditButton;
btnAllToolsTesting: TButton;
Label7: TLabel;
Label8: TLabel;
Rectangle2: TRectangle;
SkSvg2: TSkSvg;
layStuffThatWillNeverShow: TLayout;
btnChangeLog: TButton;
imgChangeLog: TSkSvg;
layChangeLog: TScrollBox;
layMemoChangeLog: TRectangle;
lblChangeLog: TLabel;
memChangeLog: TMemo;
btnSteamLink: TRectangle;
Image5: TSkSvg;
Label4: TLabel;
btnSourceCodeLink: TRectangle;
Image2: TSkSvg;
Label2: TLabel;
layNameList: TRectangle;
cbNameList: TComboBox;
layTitleDescriptionNameList: TLayout;
lblTitleNameList: TLabel;
lblDescriptionNameList: TLabel;
imgNameList: TSkSvg;
GridPanelLayout1: TGridPanelLayout;
Layout1: TLayout;
Layout2: TLayout;
layLicenseLink: TLayout;
btnLicenseLink: TRectangle;
SkSvg1: TSkSvg;
Label5: TLabel;
layReportAProblemLink: TLayout;
btnReportAProblemLink: TRectangle;
SkSvg3: TSkSvg;
Label6: TLabel;
layFullScreen: TRectangle;
imgFullScreen: TSkSvg;
layFullScreenTitleDescription: TLayout;
lblFullScreenTitle: TLabel;
lblFullScreenDescription: TLabel;
lblSwitchFullScreen: TLabel;
SwitchFullScreen: TSwitch;
layTop: TLayout;
lblTitle: TLabel;
btnBackChangeLog: TButton;
imgBackChangeLog: TSkSvg;
SearchDelayTimer: TTimer;
layAllToolsGrid: TFlowLayout;
procedure btnAllToolsMouseEnter(Sender: TObject);
procedure btnAllToolsMouseLeave(Sender: TObject);
procedure btnAllToolsClick(Sender: TObject);
procedure btnAllToolsSearchClick(Sender: TObject);
procedure btnHamburgerClick(Sender: TObject);
procedure FormCreate(Sender: TObject);
procedure ExpandCollapseNavItem(Sender: TObject);
procedure btnToolHelpClick(Sender: TObject);
procedure cbThemeChange(Sender: TObject);
procedure SwitchWordWrapSwitch(Sender: TObject);
procedure SwitchLineNumbersSwitch(Sender: TObject);
procedure AllToolsButtonClick(Sender: TObject);
procedure edtSearchAllToolsKeyUp(Sender: TObject; var Key: Word; var KeyChar: Char; Shift: TShiftState);
procedure edtSearchAllToolsChange(Sender: TObject);
procedure btnChangeLogClick(Sender: TObject);
procedure btnSteamLinkClick(Sender: TObject);
procedure btnSourceCodeLinkClick(Sender: TObject);
procedure btnSettingsMouseEnter(Sender: TObject);
procedure Button14Click(Sender: TObject);
procedure btnLicenseLinkClick(Sender: TObject);
procedure btnReportAProblemLinkClick(Sender: TObject);
procedure SwitchFullScreenSwitch(Sender: TObject);
procedure FormResize(Sender: TObject);
procedure btnAppInfoCopyToClipboardClick(Sender: TObject);
procedure btnBackChangeLogClick(Sender: TObject);
procedure lblTitleClick(Sender: TObject);
procedure SearchDelayTimerTimer(Sender: TObject);
private
{ Private declarations }
ToolsSearchCount: UInt64;
HamburgerMenuWidth: Single;
procedure SelectTool(ToolLayoutName: String);
procedure AllToolsSearch();
public
{ Public declarations }
end;
var
frmMain: TfrmMain;
implementation
{$R *.fmx}
procedure TfrmMain.btnHamburgerClick(Sender: TObject);
begin
if (MultiView.Width = 50) then
begin
MultiView.Width := HamburgerMenuWidth;
for var Tool in RoseltToolsArray do
if IsToolParent(Tool) and Tool.visible then
begin
var ToolContainer := TControl(MultiViewScrollBox.FindComponent('layNav' + Tool.name));
var ToolButtonContainer := ToolContainer.FindComponent('layNavExpandCollapse' + Tool.name);
var ToolButton := TControl(ToolButtonContainer.FindComponent('btnExpandCollapse' + Tool.name));
var ToolButtonExpandCollapseIcon := TControl(ToolButtonContainer.FindComponent('imgExpandCollapseIcon' + Tool.name));
ToolButton.OnClick := ExpandCollapseNavItem;
ToolButton.OnDblClick := ExpandCollapseNavItem;
ToolButtonExpandCollapseIcon.Visible := True;
end;
TControl(FindComponent('btnAllTools')).OnClick := btnAllToolsClick;
end else
begin
HamburgerMenuWidth := MultiView.Width;
MultiView.Width := 50;
for var Tool in RoseltToolsArray do
if IsToolParent(Tool) and Tool.visible then
begin
var ToolContainer := TControl(MultiViewScrollBox.FindComponent('layNav' + Tool.name));
var ToolButtonContainer := ToolContainer.FindComponent('layNavExpandCollapse' + Tool.name);
var ToolButton := TControl(ToolButtonContainer.FindComponent('btnExpandCollapse' + Tool.name));
var ToolButtonExpandCollapseIcon := TControl(ToolButtonContainer.FindComponent('imgExpandCollapseIcon' + Tool.name));
ToolButton.OnClick := btnAllToolsSearchClick;
ToolButton.OnDblClick := nil;
if (ToolContainer.Height <> TControl(ToolButton.Parent).Height) then
ExpandCollapseNavItem(ToolButton);
ToolButtonExpandCollapseIcon.Visible := False;
end;
TControl(FindComponent('btnAllTools')).OnClick := btnAllToolsSearchClick;
end;
end;
procedure TfrmMain.btnLicenseLinkClick(Sender: TObject);
begin
OpenURL('https://github.com/shaunroselt/Roselt-Developer-Tools/blob/master/LICENSE');
end;
procedure TfrmMain.btnReportAProblemLinkClick(Sender: TObject);
begin
OpenURL('https://github.com/shaunroselt/Roselt-Developer-Tools/issues');
end;
procedure TfrmMain.btnSettingsMouseEnter(Sender: TObject);
begin
TRectangle(Sender).Fill.Kind := TBrushKind.Solid;
TRectangle(Sender).Fill.Color := $FF3C3C3C;
end;
procedure TfrmMain.btnSourceCodeLinkClick(Sender: TObject);
begin
OpenURL('https://github.com/shaunroselt/Roselt-Developer-Tools');
end;
procedure TfrmMain.btnSteamLinkClick(Sender: TObject);
begin
OpenURL('https://store.steampowered.com/app/1223180/Roselt_Developer_Tools/');
end;
procedure TfrmMain.btnToolHelpClick(Sender: TObject);
begin
var ToolName := TButton(Sender).ParentControl.Name;
if ToolName = 'Home' then
ShowMessage('Roselt Developer Tools Boi 😎😎😎');
if ToolName = 'JSON <> YAML' then
ShowMessage('Convert JSON to YAML and vice versa');
if ToolName = 'Color Picker' then
ShowMessage('Select a Color and get the Color Code');
end;
procedure TfrmMain.Button14Click(Sender: TObject);
begin
var LocationPath := 'C:\Shaun Roselt Development\Roselt-Developer-Tools\Assets\Feather Icons';
memTesting.Lines.Clear;
memTesting.Lines.Add('const');
memTesting.Lines.Add(' FeatherIconsArray: array[0..IconCount] of TFeatherIcon = (');
var IconCount := 0;
// loop through files in LocationPath folder and get file content and file name
for var svgFile in TDirectory.GetFiles(LocationPath) do
begin
var svgFileContent := TFile.ReadAllText(svgFile); // Get SVG Code
svgFileContent := svgFileContent.Replace(#9,'',[rfReplaceAll]); // Remove Tabs from SVG Code
svgFileContent := svgFileContent.Replace(#10,'',[rfReplaceAll]).Replace(#13,'',[rfReplaceAll]); // Remove Line Breaks from SVG Code
var svgFileName := ExtractFileName(svgFile).Replace('.svg',''); // Get SVG Name
memTesting.Lines.Add(' (');
memTesting.Lines.Add(' name: ' + QuotedStr(svgFileName) + ';');
var iCount := 1;
while (svgFileContent.Length > 0) do
begin
var svgLine := '';
if (svgFileContent.Length > 200) then
begin
svgLine := svgFileContent.Substring(0,200);
svgFileContent := svgFileContent.Remove(0,200);
end else
begin
svgLine := svgFileContent;
svgFileContent := '';
end;
if (iCount > 1) then
begin
svgLine := ' ' + QuotedStr(svgLine);
if (svgFileContent.Length > 0) then
svgLine := svgLine + ' +'
else
svgLine := svgLine + ';';
memTesting.Lines.Add(svgLine);
end else
begin
if (svgFileContent.Length = 0) then
memTesting.Lines.Add(' svg: ' + QuotedStr(svgLine) + ';')
else
memTesting.Lines.Add(' svg: ' + QuotedStr(svgLine) + ' +');
end;
inc(iCount);
end;
memTesting.Lines.Add(' ),');
inc(IconCount);
end;
memTesting.Text := memTesting.Text.Replace('width="24" height="24"','width="IconSize" height="IconSize"',[rfReplaceAll,rfIgnoreCase]).Replace('IconCount',IconCount.ToString,[rfReplaceAll,rfIgnoreCase]);
memTesting.Lines.Add(' );');
end;
procedure TfrmMain.cbThemeChange(Sender: TObject);
begin
if cbTheme.ItemIndex > -1 then
StyleBook := TStyleBook(cbTheme.ListItems[cbTheme.ItemIndex].Data);
end;
procedure TfrmMain.edtSearchAllToolsChange(Sender: TObject);
begin
AllToolsSearch;
end;
procedure TfrmMain.edtSearchAllToolsKeyUp(Sender: TObject; var Key: Word; var KeyChar: Char; Shift: TShiftState);
begin
SearchDelayTimer.Enabled := False;
SearchDelayTimer.Enabled := True;
end;
procedure TfrmMain.ExpandCollapseNavItem(Sender: TObject);
begin
var Button := TRectangle(Sender);
var ButtonLayout := Button.ParentControl;
var ExpandCollapseLayout := ButtonLayout.ParentControl;
var ExpandCollapseImage := TSkSvg(Button.Children.Items[2]);
if (ExpandCollapseLayout.Height = ButtonLayout.Height) then
begin
ExpandCollapseLayout.Height := ButtonLayout.Height * ExpandCollapseLayout.ChildrenCount;
ExpandCollapseImage.Svg.Source := GetBootstrapIcon('chevron-up');
for var I := 0 to ExpandCollapseLayout.ChildrenCount-1 do
if ExpandCollapseLayout.Children.Items[I].Name <> ButtonLayout.Name then
TControl(ExpandCollapseLayout.Children.Items[I]).Visible := True;
end else
begin
ExpandCollapseLayout.Height := ButtonLayout.Height;
ExpandCollapseImage.Svg.Source := GetBootstrapIcon('chevron-down');
for var I := 0 to ExpandCollapseLayout.ChildrenCount-1 do
if ExpandCollapseLayout.Children.Items[I].Name <> ButtonLayout.Name then
TControl(ExpandCollapseLayout.Children.Items[I]).Visible := False;
end;
end;
procedure TfrmMain.FormCreate(Sender: TObject);
procedure CreateToolNavButtons();
begin
var DynamicParents := TList.Create;
for var Tool in RoseltToolsArray do
begin
if (Tool.Visible = False) then Continue;
// I think these buttons will be freed from memory when the app frees MultiViewScrollBox 🤷
if IsToolParent(Tool) then
begin
var ToolParentContainer := TLayout.Create(MultiViewScrollBox);
ToolParentContainer.Parent := MultiViewScrollBox;
ToolParentContainer.Align := TAlignLayout.Bottom;
ToolParentContainer.Height := 100;
ToolParentContainer.Align := TAlignLayout.Top;
ToolParentContainer.Name := 'layNav' + Tool.name;
var ToolButtonContainer := TLayout.Create(ToolParentContainer);
ToolButtonContainer.Parent := ToolParentContainer;
ToolButtonContainer.Align := TAlignLayout.Top;
ToolButtonContainer.Height := 50;
ToolButtonContainer.Name := 'layNavExpandCollapse' + Tool.name;
ToolButtonContainer.Enabled := Tool.active;
var ToolButton := TRectangle.Create(ToolButtonContainer);
ToolButton.Parent := ToolButtonContainer;
ToolButton.Align := TAlignLayout.Client;
ToolButton.Margins.Top := 5;
ToolButton.Margins.Right := 5;
ToolButton.Margins.Bottom := 5;
ToolButton.Margins.Left := 5;
ToolButton.Name := 'btnExpandCollapse' + Tool.name;
ToolButton.Cursor := crHandPoint;
ToolButton.Fill.Kind := TBrushKind.None;
ToolButton.Sides := [];
ToolButton.YRadius := 8;
ToolButton.XRadius := 8;
ToolButton.Stroke.Kind := TBrushKind.None;
ToolButton.OnMouseEnter := btnAllToolsMouseEnter;
ToolButton.OnMouseLeave := btnAllToolsMouseLeave;
ToolButton.OnClick := ExpandCollapseNavItem;
ToolButton.OnDblClick := ExpandCollapseNavItem;
var ToolButtonImg := TSkSvg.Create(ToolButtonContainer);
ToolButtonImg.Parent := ToolButton;
ToolButtonImg.Align := TAlignLayout.Left;
ToolButtonImg.Margins.Top := 8;
ToolButtonImg.Margins.Right := 8;
ToolButtonImg.Margins.Bottom := 8;
ToolButtonImg.Margins.Left := 8;
ToolButtonImg.Width := ToolButtonImg.Height;
ToolButtonImg.Name := 'imgExpandCollapse' + Tool.name;
ToolButtonImg.Svg.Source := GetBootstrapIcon(Tool.icon);
ToolButtonImg.Svg.OverrideColor := TAlphaColors.White;
var ToolButtonLabel := TLabel.Create(ToolButtonContainer);
ToolButtonLabel.Parent := ToolButton;
ToolButtonLabel.Align := TAlignLayout.Client;
ToolButtonLabel.Margins.Top := 5;
ToolButtonLabel.Margins.Right := 5;
ToolButtonLabel.Margins.Bottom := 5;
ToolButtonLabel.Name := 'lblExpandCollapse' + Tool.name;
ToolButtonLabel.Text := Tool.text_long;
ToolButtonLabel.StyledSettings := [TStyledSetting.Family,TStyledSetting.FontColor];
ToolButtonLabel.TextSettings.Font.Size := 20;
if (Tool.active = False) then
ToolButtonLabel.TextSettings.Font.Style := [TFontStyle.fsStrikeOut];
var ToolButtonImgExpandCollapseIcon := TSkSvg.Create(ToolButtonContainer);
ToolButtonImgExpandCollapseIcon.Parent := ToolButton;
ToolButtonImgExpandCollapseIcon.Align := TAlignLayout.Right;
ToolButtonImgExpandCollapseIcon.Margins.Top := 11;
ToolButtonImgExpandCollapseIcon.Margins.Right := 5;
ToolButtonImgExpandCollapseIcon.Margins.Bottom := 11;
ToolButtonImgExpandCollapseIcon.Margins.Left := 5;
ToolButtonImgExpandCollapseIcon.Width := ToolButtonImgExpandCollapseIcon.Height;
ToolButtonImgExpandCollapseIcon.Name := 'imgExpandCollapseIcon' + Tool.name;
ToolButtonImgExpandCollapseIcon.Svg.Source := GetBootstrapIcon('chevron-down');
ToolButtonImgExpandCollapseIcon.Svg.OverrideColor := TAlphaColors.White;
ToolButtonImgExpandCollapseIcon.Visible := Tool.active;
DynamicParents.Add(ToolParentContainer);
end else
begin
var ToolButtonContainer := TLayout.Create(MultiViewScrollBox);
if (Tool.parent = '') then
begin
ToolButtonContainer.Parent := MultiViewScrollBox;
end else
begin
var ParentFound := False;
for var MainChild in DynamicParents do
if (TLayout(MainChild).Name = 'layNav' + Tool.parent) then
begin
ToolButtonContainer.Parent := TLayout(MainChild);
TLayout(MainChild).Height := TLayout(MainChild).Height + 50;
ParentFound := True;
break;
end;
if (ParentFound = False) then
begin
FreeAndNil(ToolButtonContainer);
Continue;
end;
end;
ToolButtonContainer.Align := TAlignLayout.Bottom;
ToolButtonContainer.Height := 50;
ToolButtonContainer.Align := TAlignLayout.Top;
ToolButtonContainer.Name := 'layNav' + Tool.name;
ToolButtonContainer.Enabled := Tool.active;
var ToolButton := TRectangle.Create(ToolButtonContainer);
ToolButton.Parent := ToolButtonContainer;
ToolButton.Align := TAlignLayout.Client;
ToolButton.Margins.Top := 5;
ToolButton.Margins.Right := 5;
ToolButton.Margins.Bottom := 5;
ToolButton.Margins.Left := 5;
ToolButton.Name := 'btn' + Tool.name;
ToolButton.Cursor := crHandPoint;
ToolButton.Fill.Kind := TBrushKind.None;
ToolButton.Sides := [];
ToolButton.YRadius := 8;
ToolButton.XRadius := 8;
ToolButton.Stroke.Kind := TBrushKind.None;
ToolButton.OnMouseEnter := btnAllToolsMouseEnter;
ToolButton.OnMouseLeave := btnAllToolsMouseLeave;
ToolButton.OnClick := btnAllToolsClick;
var ToolButtonImg := TSkSvg.Create(ToolButtonContainer);
ToolButtonImg.Parent := ToolButton;
ToolButtonImg.Align := TAlignLayout.Left;
ToolButtonImg.Margins.Top := 8;
ToolButtonImg.Margins.Right := 8;
ToolButtonImg.Margins.Bottom := 8;
if (Tool.parent = '') then
begin
ToolButtonImg.Margins.Left := 8;
end else
begin
ToolButtonImg.Margins.Left := 32;
end;
ToolButtonImg.Width := ToolButtonImg.Height;
ToolButtonImg.Name := 'img' + Tool.name;
ToolButtonImg.Svg.Source := GetBootstrapIcon(Tool.icon);
ToolButtonImg.Svg.OverrideColor := TAlphaColors.White;
var ToolButtonLabel := TLabel.Create(ToolButtonContainer);
ToolButtonLabel.Parent := ToolButton;
ToolButtonLabel.Align := TAlignLayout.Client;
ToolButtonLabel.Margins.Top := 5;
ToolButtonLabel.Margins.Right := 5;
ToolButtonLabel.Margins.Bottom := 5;
ToolButtonLabel.Name := 'lbl' + Tool.name;
ToolButtonLabel.Text := Tool.text_long;
ToolButtonLabel.StyledSettings := [TStyledSetting.Family,TStyledSetting.FontColor];
ToolButtonLabel.TextSettings.Font.Size := 20;
if (Tool.active = False) then
ToolButtonLabel.TextSettings.Font.Style := [TFontStyle.fsStrikeOut];
end;
end;
for var ParentContainer in DynamicParents do
for var ParentChild in TLayout(ParentContainer).Children do
if (String(TLayout(ParentChild).Name).Contains('ExpandCollapse')) then
begin
ExpandCollapseNavItem(TRectangle(TLayout(ParentChild).Children[0]));
break;
end;
DynamicParents.Free;
end;
procedure CreateToolButtons();
begin
ToolsSearchCount := 0;
for var Tool in RoseltToolsArray do
begin
if (IsToolParent(Tool) OR (Tool.Visible = False)) then continue;
inc(ToolsSearchCount);
var ToolButton := TButton.Create(layAllToolsGrid);
// I think these buttons will be freed from memory when the app frees layAllToolsGrid 🤷
ToolButton.Parent := layAllToolsGrid;
ToolButton.TagString := Tool.name;
ToolButton.Name := 'btnAllTools' + Tool.name;
ToolButton.Text := '';
ToolButton.Hint := Tool.description;
ToolButton.Cursor := crHandPoint;
ToolButton.Margins.Top := 6;
ToolButton.Margins.Right := 6;
ToolButton.Margins.Bottom := 6;
ToolButton.Margins.Left := 6;
ToolButton.Padding.Top := 10;
ToolButton.Padding.Right := 12;
ToolButton.Padding.Bottom := 8;
ToolButton.Padding.Left := 12;
ToolButton.Width := 185;
ToolButton.Height := 240;
ToolButton.OnClick := AllToolsButtonClick;
ToolButton.Enabled := Tool.active;
var ToolIconContainer := TRectangle.Create(ToolButton);
ToolIconContainer.Parent := ToolButton;
ToolIconContainer.Name := 'btnAllToolsIconContainer' + Tool.name;
ToolIconContainer.Align := TAlignLayout.MostTop;
ToolIconContainer.Height := 100;
ToolIconContainer.Margins.Top := 0;
ToolIconContainer.Margins.Right := 26;
ToolIconContainer.Margins.Bottom := 12;
ToolIconContainer.Margins.Left := 26;
ToolIconContainer.Padding.Top := 12;
ToolIconContainer.Padding.Right := 12;
ToolIconContainer.Padding.Bottom := 12;
ToolIconContainer.Padding.Left := 12;
ToolIconContainer.fill.Color := $4B000000;
ToolIconContainer.Sides := [];
ToolIconContainer.Stroke.Kind := TBrushKind.None;
ToolIconContainer.HitTest := False;
ToolIconContainer.XRadius := 8;
ToolIconContainer.YRadius := 8;
var ToolIcon := TSkSvg.Create(ToolButton);
ToolIcon.Parent := ToolIconContainer;
ToolIcon.Name := 'btnAllToolsIcon' + Tool.name;
ToolIcon.Align := TAlignLayout.Client;
ToolIcon.Svg.OverrideColor := TAlphaColors.White;
ToolIcon.Svg.Source := GetBootstrapIcon(Tool.icon);
var ToolIconTitle := TLabel.Create(ToolButton);
ToolIconTitle.Parent := ToolButton;
ToolIconTitle.Name := 'btnAllToolsTitle' + Tool.name;
ToolIconTitle.Align := TAlignLayout.Top;
ToolIconTitle.Margins.Bottom := 14;
ToolIconTitle.Text := Tool.text_long;
ToolIconTitle.TextSettings.Font.Size := 16;
ToolIconTitle.TextSettings.WordWrap := True;
ToolIconTitle.StyledSettings := [TStyledSetting.Family,TStyledSetting.FontColor];
ToolIconTitle.AutoSize := True;
var ToolIconDescription := TLabel.Create(ToolButton);
ToolIconDescription.Parent := ToolButton;
ToolIconDescription.Name := 'btnAllToolsDescription' + Tool.name;
ToolIconDescription.Align := TAlignLayout.Client;
ToolIconDescription.Text := Tool.description;
ToolIconDescription.TextSettings.Font.Size := 13;
ToolIconDescription.TextSettings.WordWrap := True;
ToolIconDescription.TextSettings.VertAlign := TTextAlign.Leading;
ToolIconDescription.StyledSettings := [TStyledSetting.Family,TStyledSetting.FontColor];
end;
end;
procedure CreateToolFrame(ToolFrame: TFrame; FrameName: String);
begin
ToolFrame.Name := FrameName;
ToolFrame.Visible := False;
ToolFrame.Parent := LayoutContainer;
ToolFrame.Align := TAlignLayout.Client;
end;
begin
btnAllToolsTesting.Parent := layStuffThatWillNeverShow; // Hide Testing Button
layNavTesting.Parent := layStuffThatWillNeverShow; // Hide Testing Button
layNavTestingMoreStuff.Parent := layStuffThatWillNeverShow; // Hide Testing Button
CreateToolButtons();
CreateToolNavButtons();
HamburgerMenuWidth := 400; // Default Hamburger Menu Width
SplitterNavContent.Position.X := HamburgerMenuWidth * 2; // Make sure Splitter is in the correct place
lblAppInfoDescription.Text := GetAppInfo;
btnAllTools.OnClick(btnAllTools);
// Dynamically create Tool Frames
CreateToolFrame(TFrame_DelphiFormatter.Create(Self),'layDelphiFormatter');
CreateToolFrame(TFrame_PHPFormatter.Create(Self),'layPHPFormatter');
CreateToolFrame(TFrame_CSSFormatter.Create(Self),'layCSSFormatter');
CreateToolFrame(TFrame_HTMLFormatter.Create(Self),'layHTMLFormatter');
CreateToolFrame(TFrame_JsonFormatter.Create(Self),'layJsonFormatter');
CreateToolFrame(TFrame_SQLFormatter.Create(Self),'laySQLFormatter');
CreateToolFrame(TFrame_XMLFormatter.Create(Self),'layXMLFormatter');
CreateToolFrame(TFrame_JavaScriptFormatter.Create(Self),'layJavaScriptFormatter');
CreateToolFrame(TFrame_NumberBaseConverter.Create(Self),'layNumberBaseConverter');
CreateToolFrame(TFrame_NameGenerator.Create(Self),'layNameGenerator');
CreateToolFrame(TFrame_PasswordGenerator.Create(Self),'layPasswordGenerator');
CreateToolFrame(TFrame_UUIDGenerator.Create(Self),'layUUIDGenerator');
CreateToolFrame(TFrame_HashGenerator.Create(Self),'layHashGenerator');
CreateToolFrame(TFrame_TimestampConverter.Create(Self),'layTimestampConverter');
CreateToolFrame(TFrame_Base64TextEncoderDecoder.Create(Self),'layBase64EncoderDecoder');
CreateToolFrame(TFrame_Base64ImageEncoderDecoder.Create(Self),'layBase64ImageEncoderDecoder');
CreateToolFrame(TFrame_ColorPicker.Create(Self),'layColorPicker');
CreateToolFrame(TFrame_ImageEffects.Create(Self),'layImageEffects');
CreateToolFrame(TFrame_GZipCompressDecompress.Create(Self),'layGZipCompressDecompress');
CreateToolFrame(TFrame_HTMLEncoderDecoder.Create(Self),'layHTMLEncoderDecoder');
CreateToolFrame(TFrame_JsonYamlConverter.Create(Self),'layJsonYamlConverter');
CreateToolFrame(TFrame_JWTDecoder.Create(Self),'layJWTDecoder');
CreateToolFrame(TFrame_LoremIpsumGenerator.Create(Self),'layLoremIpsumGenerator');
CreateToolFrame(TFrame_JWTTokenGenerator.Create(Self),'layJWTTokenGenerator');
CreateToolFrame(TFrame_TextCaseConverterInspector.Create(Self),'layTextCaseConverterInspector');
CreateToolFrame(TFrame_URLEncoderDecoder.Create(Self),'layURLEncoderDecoder');
CreateToolFrame(TFrame_TextEscapeUnescape.Create(Self),'layTextEscapeUnescape');
CreateToolFrame(TFrame_MarkdownPreview.Create(Self),'layMarkdownPreview');
CreateToolFrame(TFrame_HTMLPreview.Create(Self),'layHTMLPreview');
CreateToolFrame(TFrame_RegexTester.Create(Self),'layRegexTester');
CreateToolFrame(TFrame_TextToArray.Create(Self),'layTextToArray');
CreateToolFrame(TFrame_PingIPDomain.Create(Self),'layPingIPDomain');
CreateToolFrame(TFrame_TraceRoute.Create(Self),'layTraceRoute');
CreateToolFrame(TFrame_BootstrapIcons.Create(Self),'layBootstrapIcons');
CreateToolFrame(TFrame_FontAwesomeIcons.Create(Self),'layFontAwesomeIcons');
CreateToolFrame(TFrame_FeatherIcons.Create(Self),'layFeatherIcons');
CreateToolFrame(TFrame_ImageConverter.Create(Self),'layImageConverter');
// Load Themes (Settings)
cbTheme.Items.Clear;
for var c in dmStyles do
if c is TStyleBook then
begin
var Index := cbTheme.Items.Add(TStyleBook(c).StyleName);
cbTheme.ListItems[Index].Data := TStyleBook(c);
end;
cbTheme.ItemIndex := 0;
{$IFDEF WINDOWS}
TThread.CreateAnonymousThread(
procedure
begin
// Load Font Family (Settings)
// Might not work if there isn't a printer. Need to test.
// Probably isn't cross-platform either. Need to test.
// The code is also super slow on Windows (That's why I have it in a TThread.Start)
Printer.ActivePrinter;
cbFontFamily.Items := Printer.Fonts;
cbFontFamily.ItemIndex := 0;
end
).Start;
{$ENDIF}
end;
procedure TfrmMain.FormResize(Sender: TObject);
begin
var ToolsInRow := Round(layAllToolsGrid.Width / (185+12))+1 ;
layAllToolsGrid.Height := (Round(ToolsSearchCount / ToolsInRow) * (240+12));
end;
procedure TfrmMain.lblTitleClick(Sender: TObject);
begin
OpenURL(TLabel(Sender).Text);
end;
procedure TfrmMain.SearchDelayTimerTimer(Sender: TObject);
begin
TTimer(Sender).Enabled := False;
AllToolsSearch;
end;
procedure TfrmMain.SelectTool(ToolLayoutName: String);
begin
for var I := 0 to LayoutContainer.Children.Count-1 do // Loop through all tools and hide them
TControl(LayoutContainer.Children.Items[I]).Visible := False;
var cmpLayoutName := FindComponent(ToolLayoutName); // Find the selected tool
if (cmpLayoutName <> nil) then
begin
TControl(cmpLayoutName).Visible := True; // Show the selected tool
if (cmpLayoutName is TFrame) then // Check if the tool is a Frame
begin
var OnResizeEvent := TNotifyEvent(TFrame(cmpLayoutName).OnResize);
var NilEvent := TNotifyEvent(nil);
if (TMethod(OnResizeEvent) <> TMethod(NilEvent)) then
TFrame(cmpLayoutName).OnResize(nil); // Call onResize Event if it's a Frame
end;
end else ShowMessage('This tool is not available');
end;
procedure TfrmMain.SwitchFullScreenSwitch(Sender: TObject);
begin
frmMain.FullScreen := not(frmMain.FullScreen); // This sometimes works, but is a bit buggy
if frmMain.FullScreen then
lblSwitchFullScreen.Text := 'FullScreen'
else
lblSwitchFullScreen.Text := 'Normal';
end;
procedure TfrmMain.SwitchLineNumbersSwitch(Sender: TObject);
begin
if (lblSwitchLineNumbers.Text = 'On') then
begin
lblSwitchLineNumbers.Text := 'Off';
SwitchLineNumbers.IsChecked := True;
end else
begin
lblSwitchLineNumbers.Text := 'On';
SwitchLineNumbers.IsChecked := False;
end;
end;
procedure TfrmMain.SwitchWordWrapSwitch(Sender: TObject);
begin
if (lblSwitchWordWrap.Text = 'On') then
begin
lblSwitchWordWrap.Text := 'Off';
SwitchWordWrap.IsChecked := True;
end else
begin
lblSwitchWordWrap.Text := 'On';
SwitchWordWrap.IsChecked := False;
end;
end;
procedure TfrmMain.AllToolsButtonClick(Sender: TObject);
begin
var ToolButton := TButton(Sender);
for var I in ToolButton.Children do
if String(I.Name).Contains('btnAllToolsTitle') then
begin
lblNavTitle.Text := TLabel(I).Text;
break;
end;
SelectTool('lay' + ToolButton.TagString);
end;
procedure TfrmMain.AllToolsSearch();
begin
if (edtSearchAllTools.Text.IsEmpty = False) then
begin
ToolsSearchCount := 0;
for var Tool in RoseltToolsArray do
begin
if IsToolParent(Tool) then continue; // Skip parent tools as they don't have buttons to filter
if (Tool.visible = False) then continue; // Skip tools that aren't visible
inc(ToolsSearchCount);
var ToolButtonVisible := False;
if Tool.text_short.ToLower.Contains(edtSearchAllTools.Text.ToLower) then ToolButtonVisible := True;
if Tool.text_long.ToLower.Contains(edtSearchAllTools.Text.ToLower) then ToolButtonVisible := True;
if Tool.description.ToLower.Contains(edtSearchAllTools.Text.ToLower) then ToolButtonVisible := True;
if Tool.parent.ToLower.Contains(edtSearchAllTools.Text.ToLower) then ToolButtonVisible := True;
TButton(layAllToolsGrid.FindComponent('btnAllTools' + Tool.name)).Visible := ToolButtonVisible;
end;
end else
begin
for var Tool in RoseltToolsArray do
begin
if IsToolParent(Tool) then continue; // Skip parent tools as they don't have buttons to filter
if (Tool.visible = False) then continue; // Skip tools that aren't visible
inc(ToolsSearchCount);
TButton(layAllToolsGrid.FindComponent('btnAllTools' + Tool.name)).Visible := True;
end;
end;
FormResize(nil);
end;
procedure TfrmMain.btnAllToolsClick(Sender: TObject);
begin
var ToolNavItem := TLabel(TRectangle(Sender).Children.Items[1]);
lblNavTitle.Text := ToolNavItem.Text;
SelectTool('lay'+String(ToolNavItem.Name).Replace('lbl',''));
end;
procedure TfrmMain.btnAllToolsMouseEnter(Sender: TObject);
begin
TRectangle(Sender).Fill.Kind := TBrushKind.Solid;
TRectangle(Sender).Fill.Color := $FF2B2B2B;
end;
procedure TfrmMain.btnAllToolsMouseLeave(Sender: TObject);
begin
TRectangle(Sender).Fill.Kind := TBrushKind.None;
end;
procedure TfrmMain.btnAllToolsSearchClick(Sender: TObject);
begin
btnAllToolsClick(btnAllTools);
var SearchText := String(TControl(Sender).Name).Replace('btn','').Replace('ExpandCollapse','');
if (TControl(Sender).Name = 'btnAllTools') then SearchText := '';
edtSearchAllTools.Text := SearchText;
end;
procedure TfrmMain.btnAppInfoCopyToClipboardClick(Sender: TObject);
begin
CopyToClipboard(lblAppInfoTitle.Text + sLineBreak + sLineBreak + lblAppInfoDescription.Text);
end;
procedure TfrmMain.btnBackChangeLogClick(Sender: TObject);
begin
lblNavTitle.Text := 'Settings';
SelectTool('laySettings');
end;
procedure TfrmMain.btnChangeLogClick(Sender: TObject);
begin
lblNavTitle.Text := 'Change Log';
SelectTool('layChangeLog');
end;
end.