├── .gitignore ├── Demo ├── DemoApp.dpr ├── DemoApp.dproj ├── DemoApp.res ├── MainForm.dfm └── MainForm.pas ├── LICENSE ├── Packages ├── 10.1Berlin │ ├── FontIcon.groupproj │ ├── FontIconDesign.dpk │ ├── FontIconDesign.dproj │ └── FontIconDesign.res ├── 10.2Tokyo │ ├── FontIcon.groupproj │ ├── FontIconDesign.dpk │ ├── FontIconDesign.dproj │ └── FontIconDesign.res ├── 10.3Rio │ ├── FontIcon.groupproj │ ├── FontIconDesign.dpk │ ├── FontIconDesign.dproj │ └── FontIconDesign.res └── 12AthensAndAbove │ ├── FontIcon.groupproj │ ├── FontIconDesign.dpk │ ├── FontIconDesign.dproj │ └── FontIconDesign.res ├── README.md ├── Sources ├── FontIcon.Editor.pas ├── FontIcon.Picker.dfm └── FontIcon.Picker.pas └── version.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/DemoApp.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Demo/DemoApp.dpr -------------------------------------------------------------------------------- /Demo/DemoApp.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Demo/DemoApp.dproj -------------------------------------------------------------------------------- /Demo/DemoApp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Demo/DemoApp.res -------------------------------------------------------------------------------- /Demo/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Demo/MainForm.dfm -------------------------------------------------------------------------------- /Demo/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Demo/MainForm.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/10.1Berlin/FontIcon.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.1Berlin/FontIcon.groupproj -------------------------------------------------------------------------------- /Packages/10.1Berlin/FontIconDesign.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.1Berlin/FontIconDesign.dpk -------------------------------------------------------------------------------- /Packages/10.1Berlin/FontIconDesign.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.1Berlin/FontIconDesign.dproj -------------------------------------------------------------------------------- /Packages/10.1Berlin/FontIconDesign.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.1Berlin/FontIconDesign.res -------------------------------------------------------------------------------- /Packages/10.2Tokyo/FontIcon.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.2Tokyo/FontIcon.groupproj -------------------------------------------------------------------------------- /Packages/10.2Tokyo/FontIconDesign.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.2Tokyo/FontIconDesign.dpk -------------------------------------------------------------------------------- /Packages/10.2Tokyo/FontIconDesign.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.2Tokyo/FontIconDesign.dproj -------------------------------------------------------------------------------- /Packages/10.2Tokyo/FontIconDesign.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.2Tokyo/FontIconDesign.res -------------------------------------------------------------------------------- /Packages/10.3Rio/FontIcon.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.3Rio/FontIcon.groupproj -------------------------------------------------------------------------------- /Packages/10.3Rio/FontIconDesign.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.3Rio/FontIconDesign.dpk -------------------------------------------------------------------------------- /Packages/10.3Rio/FontIconDesign.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.3Rio/FontIconDesign.dproj -------------------------------------------------------------------------------- /Packages/10.3Rio/FontIconDesign.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/10.3Rio/FontIconDesign.res -------------------------------------------------------------------------------- /Packages/12AthensAndAbove/FontIcon.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/12AthensAndAbove/FontIcon.groupproj -------------------------------------------------------------------------------- /Packages/12AthensAndAbove/FontIconDesign.dpk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/12AthensAndAbove/FontIconDesign.dpk -------------------------------------------------------------------------------- /Packages/12AthensAndAbove/FontIconDesign.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/12AthensAndAbove/FontIconDesign.dproj -------------------------------------------------------------------------------- /Packages/12AthensAndAbove/FontIconDesign.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Packages/12AthensAndAbove/FontIconDesign.res -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FontIcon.Editor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Sources/FontIcon.Editor.pas -------------------------------------------------------------------------------- /Sources/FontIcon.Picker.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Sources/FontIcon.Picker.dfm -------------------------------------------------------------------------------- /Sources/FontIcon.Picker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lminuti/FontIconEditor/HEAD/Sources/FontIcon.Picker.pas -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | FontIconEditor: 1.0.1 2 | 2025-09-22 --------------------------------------------------------------------------------