├── .github └── FUNDING.yml ├── .gitignore ├── Images ├── Backup.png ├── C4D-154X154.png ├── C4D-Logo.png ├── Code4D-item-added-to-MainMenu.png ├── Component-InstallPackages.png ├── Default-Files-In-Opening-Project.png ├── Find-in-files-Messages.png ├── Find-in-files.png ├── Form-Install-Packages-Button-ADD.png ├── Menus-Add-in-MainMenu-IDE-Delphi.png ├── Open-External.png ├── Package-C4D-Wizard-Installed.png ├── PopupMenu-Project-Manager.png ├── Reopen.png ├── Replace-in-files.png ├── Settings.png ├── ToolBars.png ├── Translate.png ├── Uses-Organization.png └── c4d-logo-100x100.png ├── Install-BPLs ├── Delphi-10.0-Seattle │ └── C4DWizard.bpl ├── Delphi-10.1-Berlin │ └── C4DWizard.bpl ├── Delphi-10.2-Tokyo │ └── C4DWizard.bpl ├── Delphi-10.3-Rio │ └── C4DWizard.bpl ├── Delphi-10.4-Sydney │ └── C4DWizard.bpl ├── Delphi-11.3-Alexandria │ └── C4DWizard.bpl └── Delphi-12.0-Athens │ └── C4DWizard.bpl ├── LICENSE ├── Package ├── C4DWizard.dpk ├── C4DWizard.dproj ├── C4DWizard.res └── Img │ ├── c4d_Logo.bmp │ ├── c4d_arrow_green.bmp │ ├── c4d_binary.bmp │ ├── c4d_build_group.bmp │ ├── c4d_clean_and_start.bmp │ ├── c4d_empty.bmp │ ├── c4d_export.bmp │ ├── c4d_find.bmp │ ├── c4d_folder_open.bmp │ ├── c4d_gear.bmp │ ├── c4d_git_inf.bmp │ ├── c4d_git_remote.bmp │ ├── c4d_github_desktop.bmp │ ├── c4d_import.bmp │ ├── c4d_indent.bmp │ ├── c4d_link_to_file.bmp │ ├── c4d_lock_off.bmp │ ├── c4d_lock_on.bmp │ ├── c4d_logo_24x24.bmp │ ├── c4d_logo_48x48.bmp │ ├── c4d_notes.bmp │ ├── c4d_open_in_explorer.bmp │ ├── c4d_open_in_explorer_fle.bmp │ ├── c4d_play_blue.bmp │ ├── c4d_refresh.bmp │ ├── c4d_replace.bmp │ ├── c4d_save.bmp │ ├── c4d_star_grey.bmp │ ├── c4d_star_yellow.bmp │ ├── c4d_start.bmp │ ├── c4d_translate.bmp │ ├── c4d_uses_organization.bmp │ ├── c4d_verify_document.bmp │ └── c4d_vscode.bmp ├── README.md └── Src ├── Backup ├── C4D.Wizard.Backup.Export.View.dfm ├── C4D.Wizard.Backup.Export.View.pas ├── C4D.Wizard.Backup.Import.SelectFiles.View.dfm ├── C4D.Wizard.Backup.Import.SelectFiles.View.pas ├── C4D.Wizard.Backup.Import.View.dfm ├── C4D.Wizard.Backup.Import.View.pas └── C4D.Wizard.Backup.Interfaces.pas ├── C4D.Wizard.Register.pas ├── Consts └── C4D.Wizard.Consts.pas ├── DefaultFilesInOpeningProject ├── C4D.Wizard.DefaultFilesInOpeningProject.Interfaces.pas ├── C4D.Wizard.DefaultFilesInOpeningProject.Model.pas └── C4D.Wizard.DefaultFilesInOpeningProject.pas ├── Find ├── C4D.Wizard.Find.Interfaces.pas ├── C4D.Wizard.Find.Model.pas ├── C4D.Wizard.Find.View.dfm └── C4D.Wizard.Find.View.pas ├── FormatSource ├── C4D.Wizard.FormatSource.View.dfm └── C4D.Wizard.FormatSource.View.pas ├── Git └── C4D.Wizard.Git.Utils.pas ├── Groups ├── C4D.Wizard.Groups.AddEdit.View.dfm ├── C4D.Wizard.Groups.AddEdit.View.pas ├── C4D.Wizard.Groups.Interfaces.pas ├── C4D.Wizard.Groups.Model.pas ├── C4D.Wizard.Groups.View.dfm ├── C4D.Wizard.Groups.View.pas └── C4D.Wizard.Groups.pas ├── IDE ├── About │ └── C4D.Wizard.IDE.About.pas ├── CompileNotifier │ └── C4D.Wizard.IDE.CompileNotifier.pas ├── EditServicesNotifier │ └── C4D.Wizard.IDE.EditServicesNotifier.pas ├── FileNotification │ └── C4D.Wizard.IDE.FileNotification.Notifier.pas ├── ImageListMain │ └── C4D.Wizard.IDE.ImageListMain.pas ├── MainMenu │ ├── C4D.Wizard.IDE.MainMenu.Backup.pas │ ├── C4D.Wizard.IDE.MainMenu.Clicks.pas │ ├── C4D.Wizard.IDE.MainMenu.OpenExternal.pas │ ├── C4D.Wizard.IDE.MainMenu.Register.pas │ ├── C4D.Wizard.IDE.MainMenu.VsCodeIntegration.pas │ └── C4D.Wizard.IDE.MainMenu.pas ├── PopupMenu │ ├── C4D.Wizard.IDE.PopupMenu.Item.pas │ └── C4D.Wizard.IDE.PopupMenu.pas ├── PopupMenuDesigner │ ├── C4D.Wizard.IDE.PopupMenuDesigner.ComponentSel.pas │ └── C4D.Wizard.IDE.PopupMenuDesigner.pas ├── ShortCut │ └── C4D.Wizard.IDE.ShortCut.KeyboardBinding.pas ├── Shortcuts │ ├── C4D.Wizard.IDE.Shortcuts.BlockKeyInsert.pas │ └── C4D.Wizard.IDE.Shortcuts.pas ├── Splash │ └── C4D.Wizard.IDE.Splash.pas └── ToolBars │ ├── C4D.Wizard.IDE.ToolBars.Branch.pas │ ├── C4D.Wizard.IDE.ToolBars.Build.pas │ ├── C4D.Wizard.IDE.ToolBars.Notifier.pas │ ├── C4D.Wizard.IDE.ToolBars.Register.pas │ ├── C4D.Wizard.IDE.ToolBars.Utilities.pas │ ├── C4D.Wizard.IDE.ToolBars.Utils.pas │ └── C4D.Wizard.IDE.ToolBars.VsCodeIntegration.pas ├── Indent └── C4D.Wizard.Indent.pas ├── Interfaces └── C4D.Wizard.Interfaces.pas ├── LogFile └── C4D.Wizard.LogFile.pas ├── Messages ├── C4D.Wizard.Messages.Custom.Groups.OTA.pas ├── C4D.Wizard.Messages.Custom.Interfaces.pas ├── C4D.Wizard.Messages.Custom.OTA.pas ├── C4D.Wizard.Messages.Custom.pas └── C4D.Wizard.Messages.Simple.pas ├── Model ├── Files │ └── C4D.Wizard.Model.Files.Loop.pas └── IniFile │ └── C4D.Wizard.Model.IniFile.Components.pas ├── Notes ├── C4D.Wizard.Notes.View.dfm └── C4D.Wizard.Notes.View.pas ├── OpenExternal ├── C4D.Wizard.OpenExternal.AddEdit.View.dfm ├── C4D.Wizard.OpenExternal.AddEdit.View.pas ├── C4D.Wizard.OpenExternal.Interfaces.pas ├── C4D.Wizard.OpenExternal.Model.pas ├── C4D.Wizard.OpenExternal.Utils.pas ├── C4D.Wizard.OpenExternal.View.dfm ├── C4D.Wizard.OpenExternal.View.pas └── C4D.Wizard.OpenExternal.pas ├── ProcessDelphi ├── C4D.Wizard.ProcessDelphi.pas ├── C4D.Wizard.dpipes.pas ├── C4D.Wizard.dprocess.pas ├── pipes_win.inc └── process_win.inc ├── Reopen ├── C4D.Wizard.Reopen.Controller.pas ├── C4D.Wizard.Reopen.Interfaces.pas ├── C4D.Wizard.Reopen.Model.pas ├── C4D.Wizard.Reopen.SaveAs.pas ├── C4D.Wizard.Reopen.View.Edit.dfm ├── C4D.Wizard.Reopen.View.Edit.pas ├── C4D.Wizard.Reopen.View.dfm └── C4D.Wizard.Reopen.View.pas ├── ReplaceFiles ├── C4D.Wizard.ReplaceFiles.Interfaces.pas ├── C4D.Wizard.ReplaceFiles.Model.pas ├── C4D.Wizard.ReplaceFiles.View.dfm └── C4D.Wizard.ReplaceFiles.View.pas ├── Settings ├── C4D.Wizard.Settings.Model.pas ├── C4D.Wizard.Settings.View.dfm └── C4D.Wizard.Settings.View.pas ├── Translate ├── C4D.Wizard.Translate.View.dfm └── C4D.Wizard.Translate.View.pas ├── Types ├── C4D.Wizard.Types.ABMenuAction.pas └── C4D.Wizard.Types.pas ├── UsesOrganization ├── C4D.Wizard.UsesOrganization.List.pas ├── C4D.Wizard.UsesOrganization.ListOfUses.pas ├── C4D.Wizard.UsesOrganization.Params.pas ├── C4D.Wizard.UsesOrganization.View.dfm ├── C4D.Wizard.UsesOrganization.View.pas └── C4D.Wizard.UsesOrganization.pas ├── Utils ├── C4D.Wizard.Utils.CnWizard.pas ├── C4D.Wizard.Utils.GetIniPositionStr.pas ├── C4D.Wizard.Utils.Git.pas ├── C4D.Wizard.Utils.ListOfFilesInFolder.pas ├── C4D.Wizard.Utils.ListView.pas ├── C4D.Wizard.Utils.OTA.BinaryPath.pas ├── C4D.Wizard.Utils.OTA.Codex.pas ├── C4D.Wizard.Utils.OTA.pas ├── C4D.Wizard.Utils.StringList.pas └── C4D.Wizard.Utils.pas ├── View ├── C4D.Wizard.View.About.dfm ├── C4D.Wizard.View.About.pas ├── C4D.Wizard.View.Dialog.dfm ├── C4D.Wizard.View.Dialog.pas ├── C4D.Wizard.View.ListFilesForSelection.dfm ├── C4D.Wizard.View.ListFilesForSelection.pas ├── C4D.Wizard.View.Memo.dfm └── C4D.Wizard.View.Memo.pas ├── VsCodeIntegration └── C4D.Wizard.VsCodeIntegration.pas └── WaitingScreen ├── C4D.Wizard.WaitingScreen.View.dfm ├── C4D.Wizard.WaitingScreen.View.pas └── C4D.Wizard.WaitingScreen.pas /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://pag.ae/7ZhEY1xKr'] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Backup.png -------------------------------------------------------------------------------- /Images/C4D-154X154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/C4D-154X154.png -------------------------------------------------------------------------------- /Images/C4D-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/C4D-Logo.png -------------------------------------------------------------------------------- /Images/Code4D-item-added-to-MainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Code4D-item-added-to-MainMenu.png -------------------------------------------------------------------------------- /Images/Component-InstallPackages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Component-InstallPackages.png -------------------------------------------------------------------------------- /Images/Default-Files-In-Opening-Project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Default-Files-In-Opening-Project.png -------------------------------------------------------------------------------- /Images/Find-in-files-Messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Find-in-files-Messages.png -------------------------------------------------------------------------------- /Images/Find-in-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Find-in-files.png -------------------------------------------------------------------------------- /Images/Form-Install-Packages-Button-ADD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Form-Install-Packages-Button-ADD.png -------------------------------------------------------------------------------- /Images/Menus-Add-in-MainMenu-IDE-Delphi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Menus-Add-in-MainMenu-IDE-Delphi.png -------------------------------------------------------------------------------- /Images/Open-External.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Open-External.png -------------------------------------------------------------------------------- /Images/Package-C4D-Wizard-Installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Package-C4D-Wizard-Installed.png -------------------------------------------------------------------------------- /Images/PopupMenu-Project-Manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/PopupMenu-Project-Manager.png -------------------------------------------------------------------------------- /Images/Reopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Reopen.png -------------------------------------------------------------------------------- /Images/Replace-in-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Replace-in-files.png -------------------------------------------------------------------------------- /Images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Settings.png -------------------------------------------------------------------------------- /Images/ToolBars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/ToolBars.png -------------------------------------------------------------------------------- /Images/Translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Translate.png -------------------------------------------------------------------------------- /Images/Uses-Organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/Uses-Organization.png -------------------------------------------------------------------------------- /Images/c4d-logo-100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Images/c4d-logo-100x100.png -------------------------------------------------------------------------------- /Install-BPLs/Delphi-10.0-Seattle/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-10.0-Seattle/C4DWizard.bpl -------------------------------------------------------------------------------- /Install-BPLs/Delphi-10.1-Berlin/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-10.1-Berlin/C4DWizard.bpl -------------------------------------------------------------------------------- /Install-BPLs/Delphi-10.2-Tokyo/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-10.2-Tokyo/C4DWizard.bpl -------------------------------------------------------------------------------- /Install-BPLs/Delphi-10.3-Rio/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-10.3-Rio/C4DWizard.bpl -------------------------------------------------------------------------------- /Install-BPLs/Delphi-10.4-Sydney/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-10.4-Sydney/C4DWizard.bpl -------------------------------------------------------------------------------- /Install-BPLs/Delphi-11.3-Alexandria/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-11.3-Alexandria/C4DWizard.bpl -------------------------------------------------------------------------------- /Install-BPLs/Delphi-12.0-Athens/C4DWizard.bpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Install-BPLs/Delphi-12.0-Athens/C4DWizard.bpl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/LICENSE -------------------------------------------------------------------------------- /Package/C4DWizard.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/C4DWizard.dpk -------------------------------------------------------------------------------- /Package/C4DWizard.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/C4DWizard.dproj -------------------------------------------------------------------------------- /Package/C4DWizard.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/C4DWizard.res -------------------------------------------------------------------------------- /Package/Img/c4d_Logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_Logo.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_arrow_green.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_arrow_green.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_binary.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_binary.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_build_group.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_build_group.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_clean_and_start.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_clean_and_start.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_empty.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_export.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_export.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_find.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_find.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_folder_open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_folder_open.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_gear.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_gear.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_git_inf.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_git_inf.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_git_remote.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_git_remote.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_github_desktop.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_github_desktop.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_import.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_import.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_indent.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_indent.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_link_to_file.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_link_to_file.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_lock_off.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_lock_off.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_lock_on.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_lock_on.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_logo_24x24.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_logo_24x24.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_logo_48x48.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_logo_48x48.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_notes.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_notes.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_open_in_explorer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_open_in_explorer.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_open_in_explorer_fle.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_open_in_explorer_fle.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_play_blue.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_play_blue.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_refresh.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_refresh.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_replace.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_replace.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_save.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_star_grey.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_star_grey.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_star_yellow.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_star_yellow.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_start.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_start.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_translate.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_translate.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_uses_organization.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_uses_organization.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_verify_document.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_verify_document.bmp -------------------------------------------------------------------------------- /Package/Img/c4d_vscode.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Package/Img/c4d_vscode.bmp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/README.md -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Export.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Export.View.dfm -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Export.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Export.View.pas -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Import.SelectFiles.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Import.SelectFiles.View.dfm -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Import.SelectFiles.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Import.SelectFiles.View.pas -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Import.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Import.View.dfm -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Import.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Import.View.pas -------------------------------------------------------------------------------- /Src/Backup/C4D.Wizard.Backup.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Backup/C4D.Wizard.Backup.Interfaces.pas -------------------------------------------------------------------------------- /Src/C4D.Wizard.Register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/C4D.Wizard.Register.pas -------------------------------------------------------------------------------- /Src/Consts/C4D.Wizard.Consts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Consts/C4D.Wizard.Consts.pas -------------------------------------------------------------------------------- /Src/DefaultFilesInOpeningProject/C4D.Wizard.DefaultFilesInOpeningProject.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/DefaultFilesInOpeningProject/C4D.Wizard.DefaultFilesInOpeningProject.Interfaces.pas -------------------------------------------------------------------------------- /Src/DefaultFilesInOpeningProject/C4D.Wizard.DefaultFilesInOpeningProject.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/DefaultFilesInOpeningProject/C4D.Wizard.DefaultFilesInOpeningProject.Model.pas -------------------------------------------------------------------------------- /Src/DefaultFilesInOpeningProject/C4D.Wizard.DefaultFilesInOpeningProject.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/DefaultFilesInOpeningProject/C4D.Wizard.DefaultFilesInOpeningProject.pas -------------------------------------------------------------------------------- /Src/Find/C4D.Wizard.Find.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Find/C4D.Wizard.Find.Interfaces.pas -------------------------------------------------------------------------------- /Src/Find/C4D.Wizard.Find.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Find/C4D.Wizard.Find.Model.pas -------------------------------------------------------------------------------- /Src/Find/C4D.Wizard.Find.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Find/C4D.Wizard.Find.View.dfm -------------------------------------------------------------------------------- /Src/Find/C4D.Wizard.Find.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Find/C4D.Wizard.Find.View.pas -------------------------------------------------------------------------------- /Src/FormatSource/C4D.Wizard.FormatSource.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/FormatSource/C4D.Wizard.FormatSource.View.dfm -------------------------------------------------------------------------------- /Src/FormatSource/C4D.Wizard.FormatSource.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/FormatSource/C4D.Wizard.FormatSource.View.pas -------------------------------------------------------------------------------- /Src/Git/C4D.Wizard.Git.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Git/C4D.Wizard.Git.Utils.pas -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.AddEdit.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.AddEdit.View.dfm -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.AddEdit.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.AddEdit.View.pas -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.Interfaces.pas -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.Model.pas -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.View.dfm -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.View.pas -------------------------------------------------------------------------------- /Src/Groups/C4D.Wizard.Groups.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Groups/C4D.Wizard.Groups.pas -------------------------------------------------------------------------------- /Src/IDE/About/C4D.Wizard.IDE.About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/About/C4D.Wizard.IDE.About.pas -------------------------------------------------------------------------------- /Src/IDE/CompileNotifier/C4D.Wizard.IDE.CompileNotifier.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/CompileNotifier/C4D.Wizard.IDE.CompileNotifier.pas -------------------------------------------------------------------------------- /Src/IDE/EditServicesNotifier/C4D.Wizard.IDE.EditServicesNotifier.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/EditServicesNotifier/C4D.Wizard.IDE.EditServicesNotifier.pas -------------------------------------------------------------------------------- /Src/IDE/FileNotification/C4D.Wizard.IDE.FileNotification.Notifier.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/FileNotification/C4D.Wizard.IDE.FileNotification.Notifier.pas -------------------------------------------------------------------------------- /Src/IDE/ImageListMain/C4D.Wizard.IDE.ImageListMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ImageListMain/C4D.Wizard.IDE.ImageListMain.pas -------------------------------------------------------------------------------- /Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Backup.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Backup.pas -------------------------------------------------------------------------------- /Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Clicks.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Clicks.pas -------------------------------------------------------------------------------- /Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.OpenExternal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.OpenExternal.pas -------------------------------------------------------------------------------- /Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.Register.pas -------------------------------------------------------------------------------- /Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.VsCodeIntegration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.VsCodeIntegration.pas -------------------------------------------------------------------------------- /Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/MainMenu/C4D.Wizard.IDE.MainMenu.pas -------------------------------------------------------------------------------- /Src/IDE/PopupMenu/C4D.Wizard.IDE.PopupMenu.Item.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/PopupMenu/C4D.Wizard.IDE.PopupMenu.Item.pas -------------------------------------------------------------------------------- /Src/IDE/PopupMenu/C4D.Wizard.IDE.PopupMenu.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/PopupMenu/C4D.Wizard.IDE.PopupMenu.pas -------------------------------------------------------------------------------- /Src/IDE/PopupMenuDesigner/C4D.Wizard.IDE.PopupMenuDesigner.ComponentSel.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/PopupMenuDesigner/C4D.Wizard.IDE.PopupMenuDesigner.ComponentSel.pas -------------------------------------------------------------------------------- /Src/IDE/PopupMenuDesigner/C4D.Wizard.IDE.PopupMenuDesigner.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/PopupMenuDesigner/C4D.Wizard.IDE.PopupMenuDesigner.pas -------------------------------------------------------------------------------- /Src/IDE/ShortCut/C4D.Wizard.IDE.ShortCut.KeyboardBinding.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ShortCut/C4D.Wizard.IDE.ShortCut.KeyboardBinding.pas -------------------------------------------------------------------------------- /Src/IDE/Shortcuts/C4D.Wizard.IDE.Shortcuts.BlockKeyInsert.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/Shortcuts/C4D.Wizard.IDE.Shortcuts.BlockKeyInsert.pas -------------------------------------------------------------------------------- /Src/IDE/Shortcuts/C4D.Wizard.IDE.Shortcuts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/Shortcuts/C4D.Wizard.IDE.Shortcuts.pas -------------------------------------------------------------------------------- /Src/IDE/Splash/C4D.Wizard.IDE.Splash.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/Splash/C4D.Wizard.IDE.Splash.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Branch.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Branch.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Build.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Build.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Notifier.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Notifier.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Register.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Register.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Utilities.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Utilities.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.Utils.pas -------------------------------------------------------------------------------- /Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.VsCodeIntegration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/IDE/ToolBars/C4D.Wizard.IDE.ToolBars.VsCodeIntegration.pas -------------------------------------------------------------------------------- /Src/Indent/C4D.Wizard.Indent.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Indent/C4D.Wizard.Indent.pas -------------------------------------------------------------------------------- /Src/Interfaces/C4D.Wizard.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Interfaces/C4D.Wizard.Interfaces.pas -------------------------------------------------------------------------------- /Src/LogFile/C4D.Wizard.LogFile.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/LogFile/C4D.Wizard.LogFile.pas -------------------------------------------------------------------------------- /Src/Messages/C4D.Wizard.Messages.Custom.Groups.OTA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Messages/C4D.Wizard.Messages.Custom.Groups.OTA.pas -------------------------------------------------------------------------------- /Src/Messages/C4D.Wizard.Messages.Custom.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Messages/C4D.Wizard.Messages.Custom.Interfaces.pas -------------------------------------------------------------------------------- /Src/Messages/C4D.Wizard.Messages.Custom.OTA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Messages/C4D.Wizard.Messages.Custom.OTA.pas -------------------------------------------------------------------------------- /Src/Messages/C4D.Wizard.Messages.Custom.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Messages/C4D.Wizard.Messages.Custom.pas -------------------------------------------------------------------------------- /Src/Messages/C4D.Wizard.Messages.Simple.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Messages/C4D.Wizard.Messages.Simple.pas -------------------------------------------------------------------------------- /Src/Model/Files/C4D.Wizard.Model.Files.Loop.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Model/Files/C4D.Wizard.Model.Files.Loop.pas -------------------------------------------------------------------------------- /Src/Model/IniFile/C4D.Wizard.Model.IniFile.Components.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Model/IniFile/C4D.Wizard.Model.IniFile.Components.pas -------------------------------------------------------------------------------- /Src/Notes/C4D.Wizard.Notes.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Notes/C4D.Wizard.Notes.View.dfm -------------------------------------------------------------------------------- /Src/Notes/C4D.Wizard.Notes.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Notes/C4D.Wizard.Notes.View.pas -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.AddEdit.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.AddEdit.View.dfm -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.AddEdit.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.AddEdit.View.pas -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.Interfaces.pas -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.Model.pas -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.Utils.pas -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.View.dfm -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.View.pas -------------------------------------------------------------------------------- /Src/OpenExternal/C4D.Wizard.OpenExternal.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/OpenExternal/C4D.Wizard.OpenExternal.pas -------------------------------------------------------------------------------- /Src/ProcessDelphi/C4D.Wizard.ProcessDelphi.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ProcessDelphi/C4D.Wizard.ProcessDelphi.pas -------------------------------------------------------------------------------- /Src/ProcessDelphi/C4D.Wizard.dpipes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ProcessDelphi/C4D.Wizard.dpipes.pas -------------------------------------------------------------------------------- /Src/ProcessDelphi/C4D.Wizard.dprocess.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ProcessDelphi/C4D.Wizard.dprocess.pas -------------------------------------------------------------------------------- /Src/ProcessDelphi/pipes_win.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ProcessDelphi/pipes_win.inc -------------------------------------------------------------------------------- /Src/ProcessDelphi/process_win.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ProcessDelphi/process_win.inc -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.Controller.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.Controller.pas -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.Interfaces.pas -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.Model.pas -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.SaveAs.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.SaveAs.pas -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.View.Edit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.View.Edit.dfm -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.View.Edit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.View.Edit.pas -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.View.dfm -------------------------------------------------------------------------------- /Src/Reopen/C4D.Wizard.Reopen.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Reopen/C4D.Wizard.Reopen.View.pas -------------------------------------------------------------------------------- /Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.Interfaces.pas -------------------------------------------------------------------------------- /Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.Model.pas -------------------------------------------------------------------------------- /Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.View.dfm -------------------------------------------------------------------------------- /Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/ReplaceFiles/C4D.Wizard.ReplaceFiles.View.pas -------------------------------------------------------------------------------- /Src/Settings/C4D.Wizard.Settings.Model.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Settings/C4D.Wizard.Settings.Model.pas -------------------------------------------------------------------------------- /Src/Settings/C4D.Wizard.Settings.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Settings/C4D.Wizard.Settings.View.dfm -------------------------------------------------------------------------------- /Src/Settings/C4D.Wizard.Settings.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Settings/C4D.Wizard.Settings.View.pas -------------------------------------------------------------------------------- /Src/Translate/C4D.Wizard.Translate.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Translate/C4D.Wizard.Translate.View.dfm -------------------------------------------------------------------------------- /Src/Translate/C4D.Wizard.Translate.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Translate/C4D.Wizard.Translate.View.pas -------------------------------------------------------------------------------- /Src/Types/C4D.Wizard.Types.ABMenuAction.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Types/C4D.Wizard.Types.ABMenuAction.pas -------------------------------------------------------------------------------- /Src/Types/C4D.Wizard.Types.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Types/C4D.Wizard.Types.pas -------------------------------------------------------------------------------- /Src/UsesOrganization/C4D.Wizard.UsesOrganization.List.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/UsesOrganization/C4D.Wizard.UsesOrganization.List.pas -------------------------------------------------------------------------------- /Src/UsesOrganization/C4D.Wizard.UsesOrganization.ListOfUses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/UsesOrganization/C4D.Wizard.UsesOrganization.ListOfUses.pas -------------------------------------------------------------------------------- /Src/UsesOrganization/C4D.Wizard.UsesOrganization.Params.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/UsesOrganization/C4D.Wizard.UsesOrganization.Params.pas -------------------------------------------------------------------------------- /Src/UsesOrganization/C4D.Wizard.UsesOrganization.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/UsesOrganization/C4D.Wizard.UsesOrganization.View.dfm -------------------------------------------------------------------------------- /Src/UsesOrganization/C4D.Wizard.UsesOrganization.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/UsesOrganization/C4D.Wizard.UsesOrganization.View.pas -------------------------------------------------------------------------------- /Src/UsesOrganization/C4D.Wizard.UsesOrganization.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/UsesOrganization/C4D.Wizard.UsesOrganization.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.CnWizard.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.CnWizard.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.GetIniPositionStr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.GetIniPositionStr.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.Git.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.Git.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.ListOfFilesInFolder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.ListOfFilesInFolder.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.ListView.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.ListView.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.OTA.BinaryPath.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.OTA.BinaryPath.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.OTA.Codex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.OTA.Codex.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.OTA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.OTA.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.StringList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.StringList.pas -------------------------------------------------------------------------------- /Src/Utils/C4D.Wizard.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/Utils/C4D.Wizard.Utils.pas -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.About.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.About.dfm -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.About.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.About.pas -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.Dialog.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.Dialog.dfm -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.Dialog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.Dialog.pas -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.ListFilesForSelection.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.ListFilesForSelection.dfm -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.ListFilesForSelection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.ListFilesForSelection.pas -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.Memo.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.Memo.dfm -------------------------------------------------------------------------------- /Src/View/C4D.Wizard.View.Memo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/View/C4D.Wizard.View.Memo.pas -------------------------------------------------------------------------------- /Src/VsCodeIntegration/C4D.Wizard.VsCodeIntegration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/VsCodeIntegration/C4D.Wizard.VsCodeIntegration.pas -------------------------------------------------------------------------------- /Src/WaitingScreen/C4D.Wizard.WaitingScreen.View.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/WaitingScreen/C4D.Wizard.WaitingScreen.View.dfm -------------------------------------------------------------------------------- /Src/WaitingScreen/C4D.Wizard.WaitingScreen.View.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/WaitingScreen/C4D.Wizard.WaitingScreen.View.pas -------------------------------------------------------------------------------- /Src/WaitingScreen/C4D.Wizard.WaitingScreen.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code4Delphi/Code4D-Wizard/HEAD/Src/WaitingScreen/C4D.Wizard.WaitingScreen.pas --------------------------------------------------------------------------------