├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CONTRIBUTING.md ├── Demo ├── D10_1 │ ├── IconFontImageDemoFMX.dpr │ ├── IconFontImageDemoFMX.dproj │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ ├── IconFontsImageListDemo.dproj │ ├── IconFontsImageListDemoFMX.dpr │ └── IconFontsImageListDemoFMX.dproj ├── D10_2 │ ├── IconFontImageDemoFMX.dpr │ ├── IconFontImageDemoFMX.dproj │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ ├── IconFontsImageListDemo.dproj │ ├── IconFontsImageListDemoFMX.dpr │ └── IconFontsImageListDemoFMX.dproj ├── D10_3 │ ├── AndroidManifest.template.xml │ ├── IconFontImageDemoFMX.dpr │ ├── IconFontImageDemoFMX.dproj │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ ├── IconFontsImageListDemo.dproj │ ├── IconFontsImageListDemoFMX.deployproj │ ├── IconFontsImageListDemoFMX.dpr │ ├── IconFontsImageListDemoFMX.dproj │ ├── IconPickerFMX.dpr │ └── IconPickerFMX.dproj ├── D10_4 │ ├── IconFontImageDemoFMX.dpr │ ├── IconFontImageDemoFMX.dproj │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ ├── IconFontsImageListDemo.dproj │ ├── IconFontsImageListDemoFMX.dpr │ └── IconFontsImageListDemoFMX.dproj ├── D11 │ ├── IconFontImageDemoFMX.dpr │ ├── IconFontImageDemoFMX.dproj │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ ├── IconFontsImageListDemo.dproj │ ├── IconFontsImageListDemoFMX.dpr │ └── IconFontsImageListDemoFMX.dproj ├── D12 │ ├── IconFontImageDemoFMX.dpr │ ├── IconFontImageDemoFMX.dproj │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ ├── IconFontsImageListDemo.dproj │ ├── IconFontsImageListDemo.res │ ├── IconFontsImageListDemoFMX.dpr │ └── IconFontsImageListDemoFMX.dproj ├── D2010 │ ├── IconFontsImageListDemo.dpr │ └── IconFontsImageListDemo.dproj ├── D7 │ ├── IconFontsImageListDemo.dof │ ├── IconFontsImageListDemo.dpr │ └── IconFontsImageListDemo.res ├── DXE3 │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ └── IconFontsImageListDemo.dproj ├── DXE6 │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ └── IconFontsImageListDemo.dproj ├── DXE8 │ ├── IconFontsImageListComponentIcon.ico │ ├── IconFontsImageListDemo.dpr │ └── IconFontsImageListDemo.dproj ├── Fonts │ ├── LICENSE │ ├── Material Design Icons Old.ttf │ ├── Material Design Icons.ttf │ ├── README.md │ ├── preview.html │ ├── weathericons-README.md │ └── weathericons-regular-webfont.ttf ├── Images │ ├── ConvertIcons.jpg │ ├── Delphi7Support.jpg │ ├── DemoChangeSize.gif │ ├── DemoChangeStyle.gif │ ├── Dfm_example.jpg │ ├── GDI+compare.png │ ├── IconFontsCharMap.jpg │ ├── IconFontsCharMapDark.jpg │ ├── IconFontsImageCollectionNativeVirtualImageList.jpg │ ├── IconFontsImageListBanner.jpg │ ├── IconFontsSurrogatePair.jpg │ ├── ImageEditor.jpg │ ├── ImageEditorDark.jpg │ ├── ImageEditorFMX.jpg │ ├── MaterialDesignIconsDesktopPreview.jpg │ ├── MixedFonts.jpg │ ├── Sample.jpg │ ├── SampleFMX.jpg │ ├── Setup.png │ ├── Steps.jpg │ └── SupportingDelphi.jpg └── Source │ ├── DImages.dfm │ ├── DImages.pas │ ├── ImgEdit.dfm │ ├── ImgEdit.pas │ ├── UButtonTest.dfm │ ├── UButtonTest.pas │ ├── UIconFontImageFMX.fmx │ ├── UIconFontImageFMX.pas │ ├── UIconPickerFMX.fmx │ ├── UIconPickerFMX.pas │ ├── UMain.dfm │ ├── UMain.pas │ ├── UMainFMX.fmx │ ├── UMainFMX.pas │ ├── UMainNew.dfm │ ├── UMainNew.pas │ ├── UMainOld.dfm │ ├── UMainOld.pas │ ├── UMainVirtual.dfm │ ├── UMainVirtual.pas │ └── VirtualImageList.dproj ├── LICENSE ├── Packages ├── D10_1 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D10_2 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D10_3 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D10_4 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D11 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D12 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D13 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageListFMX.dpk │ ├── IconFontsImageListFMX.dproj │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ ├── dclIconFontsImageListFMX.dpk │ └── dclIconFontsImageListFMX.dproj ├── D2010 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── dclIconFontsImageList.dpk │ └── dclIconFontsImageList.dproj ├── D7 │ ├── IconFontsImageListPackage.bpg │ ├── IconFontsImageListPackage.dof │ ├── IconFontsImageListPackage.dpk │ ├── dclIconFontsImageListPackage.dof │ └── dclIconFontsImageListPackage.dpk ├── DXE3 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── dclIconFontsImageList.dpk │ └── dclIconFontsImageList.dproj ├── DXE6 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── IconFontsImageList.res │ ├── dclIconFontsImageList.dpk │ ├── dclIconFontsImageList.dproj │ └── dclIconFontsImageList.res ├── DXE8 │ ├── IconFontsImageGroupPackages.groupproj │ ├── IconFontsImageList.dpk │ ├── IconFontsImageList.dproj │ ├── dclIconFontsImageList.dpk │ └── dclIconFontsImageList.dproj ├── FMX.IconFontsImageListEditor.pas ├── FMX.IconFontsImageListEditorUnit.fmx ├── FMX.IconFontsImageListEditorUnit.pas ├── FMX.RegisterIconFontsImageList.pas ├── GetItLogo.png ├── IconFontImageComponentIcon.png ├── IconFontsImageCollectionComponentIcon.png ├── IconFontsImageComponentIcon.png ├── IconFontsImageList.dcr ├── IconFontsImageListComponentIcon.ico ├── IconFontsImageListComponentIcon.png ├── IconFontsImageListEditor.pas ├── IconFontsImageListEditorUnit.dfm ├── IconFontsImageListEditorUnit.pas ├── IconFontsImageListNew.dcr ├── IconFontsImageListSplash.res ├── IconFontsVirtualImageListComponentIcon.png └── RegisterIconFontsImageList.pas ├── README.htm ├── README.md └── Source ├── FMX.IconFontImage.pas ├── FMX.IconFontsImageList.pas ├── Fonts ├── Icons.FontAwesome.pas ├── Icons.MaterialDesign.pas └── Icons.Utils.pas ├── IconFontsCharMapUnit.dfm ├── IconFontsCharMapUnit.pas ├── IconFontsImage.pas ├── IconFontsImageCollection.pas ├── IconFontsImageList.inc ├── IconFontsImageList.pas ├── IconFontsImageListBase.pas ├── IconFontsItems.pas ├── IconFontsUtils.pas └── IconFontsVirtualImageList.pas /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Demo/D10_1/IconFontImageDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontImageDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_1/IconFontImageDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontImageDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_1/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/D10_1/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D10_1/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D10_1/IconFontsImageListDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontsImageListDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_1/IconFontsImageListDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_1/IconFontsImageListDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_2/IconFontImageDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontImageDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_2/IconFontImageDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontImageDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_2/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/D10_2/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D10_2/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D10_2/IconFontsImageListDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontsImageListDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_2/IconFontsImageListDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_2/IconFontsImageListDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_3/AndroidManifest.template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/AndroidManifest.template.xml -------------------------------------------------------------------------------- /Demo/D10_3/IconFontImageDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontImageDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_3/IconFontImageDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontImageDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_3/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/D10_3/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D10_3/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D10_3/IconFontsImageListDemoFMX.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontsImageListDemoFMX.deployproj -------------------------------------------------------------------------------- /Demo/D10_3/IconFontsImageListDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontsImageListDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_3/IconFontsImageListDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconFontsImageListDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_3/IconPickerFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconPickerFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_3/IconPickerFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_3/IconPickerFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_4/IconFontImageDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontImageDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_4/IconFontImageDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontImageDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D10_4/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/D10_4/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D10_4/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D10_4/IconFontsImageListDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontsImageListDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D10_4/IconFontsImageListDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D10_4/IconFontsImageListDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D11/IconFontImageDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontImageDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D11/IconFontImageDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontImageDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D11/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/D11/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D11/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D11/IconFontsImageListDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontsImageListDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D11/IconFontsImageListDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D11/IconFontsImageListDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D12/IconFontImageDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontImageDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D12/IconFontImageDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontImageDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D12/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/D12/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D12/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D12/IconFontsImageListDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontsImageListDemo.res -------------------------------------------------------------------------------- /Demo/D12/IconFontsImageListDemoFMX.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontsImageListDemoFMX.dpr -------------------------------------------------------------------------------- /Demo/D12/IconFontsImageListDemoFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D12/IconFontsImageListDemoFMX.dproj -------------------------------------------------------------------------------- /Demo/D2010/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D2010/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D2010/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D2010/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/D7/IconFontsImageListDemo.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D7/IconFontsImageListDemo.dof -------------------------------------------------------------------------------- /Demo/D7/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D7/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/D7/IconFontsImageListDemo.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/D7/IconFontsImageListDemo.res -------------------------------------------------------------------------------- /Demo/DXE3/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE3/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/DXE3/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE3/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/DXE3/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE3/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/DXE6/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE6/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/DXE6/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE6/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/DXE6/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE6/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/DXE8/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE8/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Demo/DXE8/IconFontsImageListDemo.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE8/IconFontsImageListDemo.dpr -------------------------------------------------------------------------------- /Demo/DXE8/IconFontsImageListDemo.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/DXE8/IconFontsImageListDemo.dproj -------------------------------------------------------------------------------- /Demo/Fonts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/LICENSE -------------------------------------------------------------------------------- /Demo/Fonts/Material Design Icons Old.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/Material Design Icons Old.ttf -------------------------------------------------------------------------------- /Demo/Fonts/Material Design Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/Material Design Icons.ttf -------------------------------------------------------------------------------- /Demo/Fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/README.md -------------------------------------------------------------------------------- /Demo/Fonts/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/preview.html -------------------------------------------------------------------------------- /Demo/Fonts/weathericons-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/weathericons-README.md -------------------------------------------------------------------------------- /Demo/Fonts/weathericons-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Fonts/weathericons-regular-webfont.ttf -------------------------------------------------------------------------------- /Demo/Images/ConvertIcons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/ConvertIcons.jpg -------------------------------------------------------------------------------- /Demo/Images/Delphi7Support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/Delphi7Support.jpg -------------------------------------------------------------------------------- /Demo/Images/DemoChangeSize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/DemoChangeSize.gif -------------------------------------------------------------------------------- /Demo/Images/DemoChangeStyle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/DemoChangeStyle.gif -------------------------------------------------------------------------------- /Demo/Images/Dfm_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/Dfm_example.jpg -------------------------------------------------------------------------------- /Demo/Images/GDI+compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/GDI+compare.png -------------------------------------------------------------------------------- /Demo/Images/IconFontsCharMap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/IconFontsCharMap.jpg -------------------------------------------------------------------------------- /Demo/Images/IconFontsCharMapDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/IconFontsCharMapDark.jpg -------------------------------------------------------------------------------- /Demo/Images/IconFontsImageCollectionNativeVirtualImageList.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/IconFontsImageCollectionNativeVirtualImageList.jpg -------------------------------------------------------------------------------- /Demo/Images/IconFontsImageListBanner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/IconFontsImageListBanner.jpg -------------------------------------------------------------------------------- /Demo/Images/IconFontsSurrogatePair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/IconFontsSurrogatePair.jpg -------------------------------------------------------------------------------- /Demo/Images/ImageEditor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/ImageEditor.jpg -------------------------------------------------------------------------------- /Demo/Images/ImageEditorDark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/ImageEditorDark.jpg -------------------------------------------------------------------------------- /Demo/Images/ImageEditorFMX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/ImageEditorFMX.jpg -------------------------------------------------------------------------------- /Demo/Images/MaterialDesignIconsDesktopPreview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/MaterialDesignIconsDesktopPreview.jpg -------------------------------------------------------------------------------- /Demo/Images/MixedFonts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/MixedFonts.jpg -------------------------------------------------------------------------------- /Demo/Images/Sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/Sample.jpg -------------------------------------------------------------------------------- /Demo/Images/SampleFMX.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/SampleFMX.jpg -------------------------------------------------------------------------------- /Demo/Images/Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/Setup.png -------------------------------------------------------------------------------- /Demo/Images/Steps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/Steps.jpg -------------------------------------------------------------------------------- /Demo/Images/SupportingDelphi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Images/SupportingDelphi.jpg -------------------------------------------------------------------------------- /Demo/Source/DImages.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/DImages.dfm -------------------------------------------------------------------------------- /Demo/Source/DImages.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/DImages.pas -------------------------------------------------------------------------------- /Demo/Source/ImgEdit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/ImgEdit.dfm -------------------------------------------------------------------------------- /Demo/Source/ImgEdit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/ImgEdit.pas -------------------------------------------------------------------------------- /Demo/Source/UButtonTest.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UButtonTest.dfm -------------------------------------------------------------------------------- /Demo/Source/UButtonTest.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UButtonTest.pas -------------------------------------------------------------------------------- /Demo/Source/UIconFontImageFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UIconFontImageFMX.fmx -------------------------------------------------------------------------------- /Demo/Source/UIconFontImageFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UIconFontImageFMX.pas -------------------------------------------------------------------------------- /Demo/Source/UIconPickerFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UIconPickerFMX.fmx -------------------------------------------------------------------------------- /Demo/Source/UIconPickerFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UIconPickerFMX.pas -------------------------------------------------------------------------------- /Demo/Source/UMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMain.dfm -------------------------------------------------------------------------------- /Demo/Source/UMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMain.pas -------------------------------------------------------------------------------- /Demo/Source/UMainFMX.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainFMX.fmx -------------------------------------------------------------------------------- /Demo/Source/UMainFMX.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainFMX.pas -------------------------------------------------------------------------------- /Demo/Source/UMainNew.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainNew.dfm -------------------------------------------------------------------------------- /Demo/Source/UMainNew.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainNew.pas -------------------------------------------------------------------------------- /Demo/Source/UMainOld.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainOld.dfm -------------------------------------------------------------------------------- /Demo/Source/UMainOld.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainOld.pas -------------------------------------------------------------------------------- /Demo/Source/UMainVirtual.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainVirtual.dfm -------------------------------------------------------------------------------- /Demo/Source/UMainVirtual.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/UMainVirtual.pas -------------------------------------------------------------------------------- /Demo/Source/VirtualImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Demo/Source/VirtualImageList.dproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/D10_1/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D10_1/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_1/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_1/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_1/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_1/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_1/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_1/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_1/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_1/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_2/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D10_2/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_2/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_2/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_2/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_2/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_2/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_2/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_2/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_2/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_3/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D10_3/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_3/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_3/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_3/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_3/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_3/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_3/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_3/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_3/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_4/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D10_4/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_4/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_4/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_4/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D10_4/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D10_4/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D10_4/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D10_4/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D10_4/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D11/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D11/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D11/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D11/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D11/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D11/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D11/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D11/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D11/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D11/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D12/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D12/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D12/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D12/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D12/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D12/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D12/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D12/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D12/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D12/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D13/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D13/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D13/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D13/IconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/IconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D13/IconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/IconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D13/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D13/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D13/dclIconFontsImageListFMX.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/dclIconFontsImageListFMX.dpk -------------------------------------------------------------------------------- /Packages/D13/dclIconFontsImageListFMX.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D13/dclIconFontsImageListFMX.dproj -------------------------------------------------------------------------------- /Packages/D2010/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D2010/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/D2010/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D2010/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D2010/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D2010/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D2010/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D2010/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/D2010/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D2010/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/D7/IconFontsImageListPackage.bpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D7/IconFontsImageListPackage.bpg -------------------------------------------------------------------------------- /Packages/D7/IconFontsImageListPackage.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D7/IconFontsImageListPackage.dof -------------------------------------------------------------------------------- /Packages/D7/IconFontsImageListPackage.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D7/IconFontsImageListPackage.dpk -------------------------------------------------------------------------------- /Packages/D7/dclIconFontsImageListPackage.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D7/dclIconFontsImageListPackage.dof -------------------------------------------------------------------------------- /Packages/D7/dclIconFontsImageListPackage.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/D7/dclIconFontsImageListPackage.dpk -------------------------------------------------------------------------------- /Packages/DXE3/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE3/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/DXE3/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE3/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/DXE3/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE3/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/DXE3/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE3/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/DXE3/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE3/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/DXE6/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/DXE6/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/DXE6/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/DXE6/IconFontsImageList.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/IconFontsImageList.res -------------------------------------------------------------------------------- /Packages/DXE6/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/DXE6/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/DXE6/dclIconFontsImageList.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE6/dclIconFontsImageList.res -------------------------------------------------------------------------------- /Packages/DXE8/IconFontsImageGroupPackages.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE8/IconFontsImageGroupPackages.groupproj -------------------------------------------------------------------------------- /Packages/DXE8/IconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE8/IconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/DXE8/IconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE8/IconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/DXE8/dclIconFontsImageList.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE8/dclIconFontsImageList.dpk -------------------------------------------------------------------------------- /Packages/DXE8/dclIconFontsImageList.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/DXE8/dclIconFontsImageList.dproj -------------------------------------------------------------------------------- /Packages/FMX.IconFontsImageListEditor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/FMX.IconFontsImageListEditor.pas -------------------------------------------------------------------------------- /Packages/FMX.IconFontsImageListEditorUnit.fmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/FMX.IconFontsImageListEditorUnit.fmx -------------------------------------------------------------------------------- /Packages/FMX.IconFontsImageListEditorUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/FMX.IconFontsImageListEditorUnit.pas -------------------------------------------------------------------------------- /Packages/FMX.RegisterIconFontsImageList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/FMX.RegisterIconFontsImageList.pas -------------------------------------------------------------------------------- /Packages/GetItLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/GetItLogo.png -------------------------------------------------------------------------------- /Packages/IconFontImageComponentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontImageComponentIcon.png -------------------------------------------------------------------------------- /Packages/IconFontsImageCollectionComponentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageCollectionComponentIcon.png -------------------------------------------------------------------------------- /Packages/IconFontsImageComponentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageComponentIcon.png -------------------------------------------------------------------------------- /Packages/IconFontsImageList.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageList.dcr -------------------------------------------------------------------------------- /Packages/IconFontsImageListComponentIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListComponentIcon.ico -------------------------------------------------------------------------------- /Packages/IconFontsImageListComponentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListComponentIcon.png -------------------------------------------------------------------------------- /Packages/IconFontsImageListEditor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListEditor.pas -------------------------------------------------------------------------------- /Packages/IconFontsImageListEditorUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListEditorUnit.dfm -------------------------------------------------------------------------------- /Packages/IconFontsImageListEditorUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListEditorUnit.pas -------------------------------------------------------------------------------- /Packages/IconFontsImageListNew.dcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListNew.dcr -------------------------------------------------------------------------------- /Packages/IconFontsImageListSplash.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsImageListSplash.res -------------------------------------------------------------------------------- /Packages/IconFontsVirtualImageListComponentIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/IconFontsVirtualImageListComponentIcon.png -------------------------------------------------------------------------------- /Packages/RegisterIconFontsImageList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Packages/RegisterIconFontsImageList.pas -------------------------------------------------------------------------------- /README.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/README.htm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/README.md -------------------------------------------------------------------------------- /Source/FMX.IconFontImage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/FMX.IconFontImage.pas -------------------------------------------------------------------------------- /Source/FMX.IconFontsImageList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/FMX.IconFontsImageList.pas -------------------------------------------------------------------------------- /Source/Fonts/Icons.FontAwesome.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/Fonts/Icons.FontAwesome.pas -------------------------------------------------------------------------------- /Source/Fonts/Icons.MaterialDesign.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/Fonts/Icons.MaterialDesign.pas -------------------------------------------------------------------------------- /Source/Fonts/Icons.Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/Fonts/Icons.Utils.pas -------------------------------------------------------------------------------- /Source/IconFontsCharMapUnit.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsCharMapUnit.dfm -------------------------------------------------------------------------------- /Source/IconFontsCharMapUnit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsCharMapUnit.pas -------------------------------------------------------------------------------- /Source/IconFontsImage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsImage.pas -------------------------------------------------------------------------------- /Source/IconFontsImageCollection.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsImageCollection.pas -------------------------------------------------------------------------------- /Source/IconFontsImageList.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsImageList.inc -------------------------------------------------------------------------------- /Source/IconFontsImageList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsImageList.pas -------------------------------------------------------------------------------- /Source/IconFontsImageListBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsImageListBase.pas -------------------------------------------------------------------------------- /Source/IconFontsItems.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsItems.pas -------------------------------------------------------------------------------- /Source/IconFontsUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsUtils.pas -------------------------------------------------------------------------------- /Source/IconFontsVirtualImageList.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EtheaDev/IconFontsImageList/HEAD/Source/IconFontsVirtualImageList.pas --------------------------------------------------------------------------------