├── DevTools ├── BuildAll.bat ├── BuildExe.bat ├── BuildHelp.bat ├── BuildPascal.bat ├── BuildResources.bat ├── BuildSetup.bat ├── Config.bat ├── ReleaseExe.bat ├── ReleaseSrc.bat └── Tidy.bat ├── Docs ├── ChangeLog.txt ├── License.rtf ├── License.txt ├── MPL.txt ├── PreSVNFileChanges.txt ├── PreSVNProjectChanges.txt ├── ReadMe-Src.txt ├── ReadMe.txt ├── SourceCodeLicenses.txt └── SupportedClipFmts.html ├── README.md └── Src ├── 3rdParty └── IDLUtils.pas ├── Build.bat ├── CFS.cfg ├── CFS.dof ├── CFS.dpr ├── CFS.dproj ├── CFS.todo ├── FmAbout.dfm ├── FmAbout.pas ├── FmBase.dfm ├── FmBase.pas ├── FmBaseDlg.dfm ├── FmBaseDlg.pas ├── FmMain.dfm ├── FmMain.pas ├── FmViewer.dfm ├── FmViewer.pas ├── FrBinaryViewer.dfm ├── FrBinaryViewer.pas ├── FrFileGroupDescViewer.dfm ├── FrFileGroupDescViewer.pas ├── FrFileListViewer.dfm ├── FrFileListViewer.pas ├── FrFileNameViewer.dfm ├── FrFileNameViewer.pas ├── FrGraphicViewer.dfm ├── FrGraphicViewer.pas ├── FrHTMLClipViewer.dfm ├── FrHTMLClipViewer.pas ├── FrHTMLViewer.dfm ├── FrHTMLViewer.pas ├── FrLocaleViewer.dfm ├── FrLocaleViewer.pas ├── FrObjDescViewer.dfm ├── FrObjDescViewer.pas ├── FrRTFViewer.dfm ├── FrRTFViewer.pas ├── FrShellNameViewer.dfm ├── FrShellNameViewer.pas ├── FrTextViewer.dfm ├── FrTextViewer.pas ├── FrURLViewer.dfm ├── FrURLViewer.pas ├── Help ├── CFS.hhc ├── CFS.hhp ├── CSS │ └── main.css ├── HTML │ ├── author.htm │ ├── license.htm │ ├── main.htm │ ├── viewer-binary.htm │ ├── viewer-filegroupdesc.htm │ ├── viewer-filelist.htm │ ├── viewer-filename.htm │ ├── viewer-graphic.htm │ ├── viewer-html.htm │ ├── viewer-htmlclip.htm │ ├── viewer-locale.htm │ ├── viewer-nohelp.htm │ ├── viewer-objdesc.htm │ ├── viewer-rtf.htm │ ├── viewer-text.htm │ ├── viewer-url.htm │ └── viewers.htm └── Images │ ├── about.gif │ ├── delete.gif │ ├── exit.gif │ └── help.gif ├── Install.iss ├── IntfUIHandlers.pas ├── IntfViewers.pas ├── Res ├── CFS.ico ├── HTMLViewer.css └── XPnVista.manifest ├── Resources.rc ├── UBaseTextViewer.pas ├── UBinaryViewer.pas ├── UBmpViewer.pas ├── UCBUtils.pas ├── UClipFmt.pas ├── UClipboardLVMgr.pas ├── UDIBViewer.pas ├── UDataBuffer.pas ├── UFileGroupDescAdapter.pas ├── UFileGroupDescViewer.pas ├── UFileLists.pas ├── UFileNameViewer.pas ├── UGlobalMemViewer.pas ├── UGlobals.pas ├── UGraphicViewer.pas ├── UHDROPViewer.pas ├── UHTMLClip.pas ├── UHTMLClipViewer.pas ├── UHTMLDocViewer.pas ├── UHelpManager.pas ├── UIDListViewer.pas ├── UIntfObjects.pas ├── ULocale.pas ├── ULocaleViewer.pas ├── UMessageBox.pas ├── UMetafileViewer.pas ├── UNulDropTarget.pas ├── UNulUIHandler.pas ├── UObjDescAdapter.pas ├── UObjDescViewer.pas ├── UOleClientSite.pas ├── UPlatform.pas ├── UProcessUtils.pas ├── URTFViewer.pas ├── USettings.pas ├── UShellNameViewer.pas ├── UStatusBarMgr.pas ├── UTextViewer.pas ├── UURLViewer.pas ├── UUtils.pas ├── UViewerMenuMgr.pas ├── UViewers.pas ├── UWBController.pas ├── UWindowSettings.pas └── Version.vi /DevTools/BuildAll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/BuildAll.bat -------------------------------------------------------------------------------- /DevTools/BuildExe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/BuildExe.bat -------------------------------------------------------------------------------- /DevTools/BuildHelp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/BuildHelp.bat -------------------------------------------------------------------------------- /DevTools/BuildPascal.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/BuildPascal.bat -------------------------------------------------------------------------------- /DevTools/BuildResources.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/BuildResources.bat -------------------------------------------------------------------------------- /DevTools/BuildSetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/BuildSetup.bat -------------------------------------------------------------------------------- /DevTools/Config.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/Config.bat -------------------------------------------------------------------------------- /DevTools/ReleaseExe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/ReleaseExe.bat -------------------------------------------------------------------------------- /DevTools/ReleaseSrc.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/ReleaseSrc.bat -------------------------------------------------------------------------------- /DevTools/Tidy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/DevTools/Tidy.bat -------------------------------------------------------------------------------- /Docs/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/ChangeLog.txt -------------------------------------------------------------------------------- /Docs/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/License.rtf -------------------------------------------------------------------------------- /Docs/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/License.txt -------------------------------------------------------------------------------- /Docs/MPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/MPL.txt -------------------------------------------------------------------------------- /Docs/PreSVNFileChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/PreSVNFileChanges.txt -------------------------------------------------------------------------------- /Docs/PreSVNProjectChanges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/PreSVNProjectChanges.txt -------------------------------------------------------------------------------- /Docs/ReadMe-Src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/ReadMe-Src.txt -------------------------------------------------------------------------------- /Docs/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/ReadMe.txt -------------------------------------------------------------------------------- /Docs/SourceCodeLicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/SourceCodeLicenses.txt -------------------------------------------------------------------------------- /Docs/SupportedClipFmts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Docs/SupportedClipFmts.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/README.md -------------------------------------------------------------------------------- /Src/3rdParty/IDLUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/3rdParty/IDLUtils.pas -------------------------------------------------------------------------------- /Src/Build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Build.bat -------------------------------------------------------------------------------- /Src/CFS.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/CFS.cfg -------------------------------------------------------------------------------- /Src/CFS.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/CFS.dof -------------------------------------------------------------------------------- /Src/CFS.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/CFS.dpr -------------------------------------------------------------------------------- /Src/CFS.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/CFS.dproj -------------------------------------------------------------------------------- /Src/CFS.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/CFS.todo -------------------------------------------------------------------------------- /Src/FmAbout.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmAbout.dfm -------------------------------------------------------------------------------- /Src/FmAbout.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmAbout.pas -------------------------------------------------------------------------------- /Src/FmBase.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmBase.dfm -------------------------------------------------------------------------------- /Src/FmBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmBase.pas -------------------------------------------------------------------------------- /Src/FmBaseDlg.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmBaseDlg.dfm -------------------------------------------------------------------------------- /Src/FmBaseDlg.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmBaseDlg.pas -------------------------------------------------------------------------------- /Src/FmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmMain.dfm -------------------------------------------------------------------------------- /Src/FmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmMain.pas -------------------------------------------------------------------------------- /Src/FmViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmViewer.dfm -------------------------------------------------------------------------------- /Src/FmViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FmViewer.pas -------------------------------------------------------------------------------- /Src/FrBinaryViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrBinaryViewer.dfm -------------------------------------------------------------------------------- /Src/FrBinaryViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrBinaryViewer.pas -------------------------------------------------------------------------------- /Src/FrFileGroupDescViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrFileGroupDescViewer.dfm -------------------------------------------------------------------------------- /Src/FrFileGroupDescViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrFileGroupDescViewer.pas -------------------------------------------------------------------------------- /Src/FrFileListViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrFileListViewer.dfm -------------------------------------------------------------------------------- /Src/FrFileListViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrFileListViewer.pas -------------------------------------------------------------------------------- /Src/FrFileNameViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrFileNameViewer.dfm -------------------------------------------------------------------------------- /Src/FrFileNameViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrFileNameViewer.pas -------------------------------------------------------------------------------- /Src/FrGraphicViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrGraphicViewer.dfm -------------------------------------------------------------------------------- /Src/FrGraphicViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrGraphicViewer.pas -------------------------------------------------------------------------------- /Src/FrHTMLClipViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrHTMLClipViewer.dfm -------------------------------------------------------------------------------- /Src/FrHTMLClipViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrHTMLClipViewer.pas -------------------------------------------------------------------------------- /Src/FrHTMLViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrHTMLViewer.dfm -------------------------------------------------------------------------------- /Src/FrHTMLViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrHTMLViewer.pas -------------------------------------------------------------------------------- /Src/FrLocaleViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrLocaleViewer.dfm -------------------------------------------------------------------------------- /Src/FrLocaleViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrLocaleViewer.pas -------------------------------------------------------------------------------- /Src/FrObjDescViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrObjDescViewer.dfm -------------------------------------------------------------------------------- /Src/FrObjDescViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrObjDescViewer.pas -------------------------------------------------------------------------------- /Src/FrRTFViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrRTFViewer.dfm -------------------------------------------------------------------------------- /Src/FrRTFViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrRTFViewer.pas -------------------------------------------------------------------------------- /Src/FrShellNameViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrShellNameViewer.dfm -------------------------------------------------------------------------------- /Src/FrShellNameViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrShellNameViewer.pas -------------------------------------------------------------------------------- /Src/FrTextViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrTextViewer.dfm -------------------------------------------------------------------------------- /Src/FrTextViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrTextViewer.pas -------------------------------------------------------------------------------- /Src/FrURLViewer.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrURLViewer.dfm -------------------------------------------------------------------------------- /Src/FrURLViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/FrURLViewer.pas -------------------------------------------------------------------------------- /Src/Help/CFS.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/CFS.hhc -------------------------------------------------------------------------------- /Src/Help/CFS.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/CFS.hhp -------------------------------------------------------------------------------- /Src/Help/CSS/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/CSS/main.css -------------------------------------------------------------------------------- /Src/Help/HTML/author.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/author.htm -------------------------------------------------------------------------------- /Src/Help/HTML/license.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/license.htm -------------------------------------------------------------------------------- /Src/Help/HTML/main.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/main.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-binary.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-binary.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-filegroupdesc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-filegroupdesc.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-filelist.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-filelist.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-filename.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-filename.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-graphic.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-graphic.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-html.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-html.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-htmlclip.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-htmlclip.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-locale.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-locale.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-nohelp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-nohelp.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-objdesc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-objdesc.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-rtf.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-rtf.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-text.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-text.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewer-url.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewer-url.htm -------------------------------------------------------------------------------- /Src/Help/HTML/viewers.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/HTML/viewers.htm -------------------------------------------------------------------------------- /Src/Help/Images/about.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/Images/about.gif -------------------------------------------------------------------------------- /Src/Help/Images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/Images/delete.gif -------------------------------------------------------------------------------- /Src/Help/Images/exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/Images/exit.gif -------------------------------------------------------------------------------- /Src/Help/Images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Help/Images/help.gif -------------------------------------------------------------------------------- /Src/Install.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Install.iss -------------------------------------------------------------------------------- /Src/IntfUIHandlers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/IntfUIHandlers.pas -------------------------------------------------------------------------------- /Src/IntfViewers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/IntfViewers.pas -------------------------------------------------------------------------------- /Src/Res/CFS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Res/CFS.ico -------------------------------------------------------------------------------- /Src/Res/HTMLViewer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Res/HTMLViewer.css -------------------------------------------------------------------------------- /Src/Res/XPnVista.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Res/XPnVista.manifest -------------------------------------------------------------------------------- /Src/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Resources.rc -------------------------------------------------------------------------------- /Src/UBaseTextViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UBaseTextViewer.pas -------------------------------------------------------------------------------- /Src/UBinaryViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UBinaryViewer.pas -------------------------------------------------------------------------------- /Src/UBmpViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UBmpViewer.pas -------------------------------------------------------------------------------- /Src/UCBUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UCBUtils.pas -------------------------------------------------------------------------------- /Src/UClipFmt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UClipFmt.pas -------------------------------------------------------------------------------- /Src/UClipboardLVMgr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UClipboardLVMgr.pas -------------------------------------------------------------------------------- /Src/UDIBViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UDIBViewer.pas -------------------------------------------------------------------------------- /Src/UDataBuffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UDataBuffer.pas -------------------------------------------------------------------------------- /Src/UFileGroupDescAdapter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UFileGroupDescAdapter.pas -------------------------------------------------------------------------------- /Src/UFileGroupDescViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UFileGroupDescViewer.pas -------------------------------------------------------------------------------- /Src/UFileLists.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UFileLists.pas -------------------------------------------------------------------------------- /Src/UFileNameViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UFileNameViewer.pas -------------------------------------------------------------------------------- /Src/UGlobalMemViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UGlobalMemViewer.pas -------------------------------------------------------------------------------- /Src/UGlobals.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UGlobals.pas -------------------------------------------------------------------------------- /Src/UGraphicViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UGraphicViewer.pas -------------------------------------------------------------------------------- /Src/UHDROPViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UHDROPViewer.pas -------------------------------------------------------------------------------- /Src/UHTMLClip.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UHTMLClip.pas -------------------------------------------------------------------------------- /Src/UHTMLClipViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UHTMLClipViewer.pas -------------------------------------------------------------------------------- /Src/UHTMLDocViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UHTMLDocViewer.pas -------------------------------------------------------------------------------- /Src/UHelpManager.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UHelpManager.pas -------------------------------------------------------------------------------- /Src/UIDListViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UIDListViewer.pas -------------------------------------------------------------------------------- /Src/UIntfObjects.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UIntfObjects.pas -------------------------------------------------------------------------------- /Src/ULocale.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/ULocale.pas -------------------------------------------------------------------------------- /Src/ULocaleViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/ULocaleViewer.pas -------------------------------------------------------------------------------- /Src/UMessageBox.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UMessageBox.pas -------------------------------------------------------------------------------- /Src/UMetafileViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UMetafileViewer.pas -------------------------------------------------------------------------------- /Src/UNulDropTarget.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UNulDropTarget.pas -------------------------------------------------------------------------------- /Src/UNulUIHandler.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UNulUIHandler.pas -------------------------------------------------------------------------------- /Src/UObjDescAdapter.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UObjDescAdapter.pas -------------------------------------------------------------------------------- /Src/UObjDescViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UObjDescViewer.pas -------------------------------------------------------------------------------- /Src/UOleClientSite.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UOleClientSite.pas -------------------------------------------------------------------------------- /Src/UPlatform.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UPlatform.pas -------------------------------------------------------------------------------- /Src/UProcessUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UProcessUtils.pas -------------------------------------------------------------------------------- /Src/URTFViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/URTFViewer.pas -------------------------------------------------------------------------------- /Src/USettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/USettings.pas -------------------------------------------------------------------------------- /Src/UShellNameViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UShellNameViewer.pas -------------------------------------------------------------------------------- /Src/UStatusBarMgr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UStatusBarMgr.pas -------------------------------------------------------------------------------- /Src/UTextViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UTextViewer.pas -------------------------------------------------------------------------------- /Src/UURLViewer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UURLViewer.pas -------------------------------------------------------------------------------- /Src/UUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UUtils.pas -------------------------------------------------------------------------------- /Src/UViewerMenuMgr.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UViewerMenuMgr.pas -------------------------------------------------------------------------------- /Src/UViewers.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UViewers.pas -------------------------------------------------------------------------------- /Src/UWBController.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UWBController.pas -------------------------------------------------------------------------------- /Src/UWindowSettings.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/UWindowSettings.pas -------------------------------------------------------------------------------- /Src/Version.vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delphidabbler/cfs/HEAD/Src/Version.vi --------------------------------------------------------------------------------