├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── Build_Linux.yml │ ├── Build_Linux_Vulkan.yml │ ├── Build_Osx.yml │ ├── Build_Osx_Vulkan.yml │ ├── Build_Win.yml │ ├── Build_Win_Vulkan.yml │ └── codeql-analysis.yml ├── .gitignore ├── .gitmodules ├── Backends ├── common │ ├── freetype │ │ ├── README.md │ │ ├── imgui_freetype.cpp │ │ └── imgui_freetype.h │ └── glfw │ │ ├── imgui_impl_glfw.cpp │ │ └── imgui_impl_glfw.h ├── opengl │ ├── imgui_impl_opengl3.cpp │ └── imgui_impl_opengl3.h └── vulkan │ ├── imgui_impl_vulkan_user_texture.cpp │ └── imgui_impl_vulkan_user_texture.h ├── CMakeLists.txt ├── LICENSE ├── MacOSXBundleInfo.plist.in ├── README.md ├── bugs └── issue_7 │ ├── filemenu.ifs │ ├── filemenu.ttf │ └── tasks.ttf ├── cmake ├── 3rdparty.cmake ├── ctools.cmake ├── freetype.cmake ├── glad.cmake ├── glfw.cmake ├── imgui.cmake ├── imguifiledialog.cmake ├── sfntly.cmake └── tinyxml2.cmake ├── doc ├── Button_With_Icons.png ├── dst_edit.png ├── dst_two_font_merge.png ├── sample_for_cpp │ ├── embedded │ │ ├── Generated_Font.cpp │ │ ├── Generated_Font.h │ │ └── Generated_Font.png │ └── external │ │ ├── Generated_Font.h │ │ ├── Generated_Font.png │ │ └── Generated_Font.ttf ├── sample_for_csharp │ ├── embedded │ │ ├── Generated_Font.png │ │ ├── Generated_Font_Bytes.cs │ │ └── Generated_Font_Labels.cs │ └── external │ │ ├── Generated_Font.cs │ │ ├── Generated_Font.png │ │ └── Generated_Font.ttf ├── src.png └── ttf_file_format │ └── ttf.hm ├── main.cpp ├── main_opengl.cpp ├── main_vulkan.cpp ├── projects ├── ImGuiFileDialog.ifs ├── ImGuiFontStudio.ifs ├── NoodlesPlate.ifs └── test.ifs ├── samples_Fonts ├── README.md ├── SentyWEN2017.ttf ├── fontawesome-webfont.ttf └── forkawesome-webfont.ttf └── src ├── Generator ├── Compress.cpp ├── Compress.h ├── FontGenerator.cpp ├── FontGenerator.h ├── GenMode.cpp ├── GenMode.h ├── GenerationSummaryDialog.cpp ├── GenerationSummaryDialog.h ├── Generator.cpp ├── Generator.h ├── HeaderGenerator.cpp ├── HeaderGenerator.h ├── MemoryStream.cpp └── MemoryStream.h ├── Gui ├── CustomImGuiFileDialogConfig.h ├── ImWidgets.cpp └── ImWidgets.h ├── Helper ├── AssetManager.cpp ├── AssetManager.h ├── FontParser.cpp ├── FontParser.h ├── FrameActionSystem.cpp ├── FrameActionSystem.h ├── Messaging.cpp ├── Messaging.h ├── SelectionHelper.cpp ├── SelectionHelper.h ├── SettingsDlg.cpp ├── SettingsDlg.h ├── TextureHelper.cpp ├── TextureHelper.h ├── ThemeHelper.cpp ├── ThemeHelper.h ├── TranslationSystem.cpp └── TranslationSystem.h ├── MainFrame.cpp ├── MainFrame.h ├── Panes ├── Abstract │ └── AbstractPane.h ├── DebugPane.cpp ├── DebugPane.h ├── FinalFontPane.cpp ├── FinalFontPane.h ├── FontPreviewPane.cpp ├── FontPreviewPane.h ├── FontStructurePane.cpp ├── FontStructurePane.h ├── GeneratorPane.cpp ├── GeneratorPane.h ├── GlyphPane.cpp ├── GlyphPane.h ├── Manager │ ├── LayoutManager.cpp │ └── LayoutManager.h ├── ParamsPane.cpp ├── ParamsPane.h ├── SelectionFontPane.cpp ├── SelectionFontPane.h ├── SourceFontPane.cpp └── SourceFontPane.h ├── Project ├── FontInfos.cpp ├── FontInfos.h ├── FontTestInfos.cpp ├── FontTestInfos.h ├── GlyphInfos.cpp ├── GlyphInfos.h ├── ProjectFile.cpp └── ProjectFile.h ├── Res ├── CustomFont.cpp ├── CustomFont.h ├── Roboto_Medium.cpp ├── Roboto_Medium.h ├── btn.afdesign ├── btn.png └── btn2.png └── globals.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: aiekick 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Build_Linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/Build_Linux.yml -------------------------------------------------------------------------------- /.github/workflows/Build_Linux_Vulkan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/Build_Linux_Vulkan.yml -------------------------------------------------------------------------------- /.github/workflows/Build_Osx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/Build_Osx.yml -------------------------------------------------------------------------------- /.github/workflows/Build_Osx_Vulkan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/Build_Osx_Vulkan.yml -------------------------------------------------------------------------------- /.github/workflows/Build_Win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/Build_Win.yml -------------------------------------------------------------------------------- /.github/workflows/Build_Win_Vulkan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/Build_Win_Vulkan.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/.gitmodules -------------------------------------------------------------------------------- /Backends/common/freetype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/common/freetype/README.md -------------------------------------------------------------------------------- /Backends/common/freetype/imgui_freetype.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/common/freetype/imgui_freetype.cpp -------------------------------------------------------------------------------- /Backends/common/freetype/imgui_freetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/common/freetype/imgui_freetype.h -------------------------------------------------------------------------------- /Backends/common/glfw/imgui_impl_glfw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/common/glfw/imgui_impl_glfw.cpp -------------------------------------------------------------------------------- /Backends/common/glfw/imgui_impl_glfw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/common/glfw/imgui_impl_glfw.h -------------------------------------------------------------------------------- /Backends/opengl/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/opengl/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /Backends/opengl/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/opengl/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /Backends/vulkan/imgui_impl_vulkan_user_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/vulkan/imgui_impl_vulkan_user_texture.cpp -------------------------------------------------------------------------------- /Backends/vulkan/imgui_impl_vulkan_user_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/Backends/vulkan/imgui_impl_vulkan_user_texture.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/LICENSE -------------------------------------------------------------------------------- /MacOSXBundleInfo.plist.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/MacOSXBundleInfo.plist.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/README.md -------------------------------------------------------------------------------- /bugs/issue_7/filemenu.ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/bugs/issue_7/filemenu.ifs -------------------------------------------------------------------------------- /bugs/issue_7/filemenu.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/bugs/issue_7/filemenu.ttf -------------------------------------------------------------------------------- /bugs/issue_7/tasks.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/bugs/issue_7/tasks.ttf -------------------------------------------------------------------------------- /cmake/3rdparty.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/3rdparty.cmake -------------------------------------------------------------------------------- /cmake/ctools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/ctools.cmake -------------------------------------------------------------------------------- /cmake/freetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/freetype.cmake -------------------------------------------------------------------------------- /cmake/glad.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/glad.cmake -------------------------------------------------------------------------------- /cmake/glfw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/glfw.cmake -------------------------------------------------------------------------------- /cmake/imgui.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/imgui.cmake -------------------------------------------------------------------------------- /cmake/imguifiledialog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/imguifiledialog.cmake -------------------------------------------------------------------------------- /cmake/sfntly.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/sfntly.cmake -------------------------------------------------------------------------------- /cmake/tinyxml2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/cmake/tinyxml2.cmake -------------------------------------------------------------------------------- /doc/Button_With_Icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/Button_With_Icons.png -------------------------------------------------------------------------------- /doc/dst_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/dst_edit.png -------------------------------------------------------------------------------- /doc/dst_two_font_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/dst_two_font_merge.png -------------------------------------------------------------------------------- /doc/sample_for_cpp/embedded/Generated_Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_cpp/embedded/Generated_Font.cpp -------------------------------------------------------------------------------- /doc/sample_for_cpp/embedded/Generated_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_cpp/embedded/Generated_Font.h -------------------------------------------------------------------------------- /doc/sample_for_cpp/embedded/Generated_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_cpp/embedded/Generated_Font.png -------------------------------------------------------------------------------- /doc/sample_for_cpp/external/Generated_Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_cpp/external/Generated_Font.h -------------------------------------------------------------------------------- /doc/sample_for_cpp/external/Generated_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_cpp/external/Generated_Font.png -------------------------------------------------------------------------------- /doc/sample_for_cpp/external/Generated_Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_cpp/external/Generated_Font.ttf -------------------------------------------------------------------------------- /doc/sample_for_csharp/embedded/Generated_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_csharp/embedded/Generated_Font.png -------------------------------------------------------------------------------- /doc/sample_for_csharp/embedded/Generated_Font_Bytes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_csharp/embedded/Generated_Font_Bytes.cs -------------------------------------------------------------------------------- /doc/sample_for_csharp/embedded/Generated_Font_Labels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_csharp/embedded/Generated_Font_Labels.cs -------------------------------------------------------------------------------- /doc/sample_for_csharp/external/Generated_Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_csharp/external/Generated_Font.cs -------------------------------------------------------------------------------- /doc/sample_for_csharp/external/Generated_Font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_csharp/external/Generated_Font.png -------------------------------------------------------------------------------- /doc/sample_for_csharp/external/Generated_Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/sample_for_csharp/external/Generated_Font.ttf -------------------------------------------------------------------------------- /doc/src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/src.png -------------------------------------------------------------------------------- /doc/ttf_file_format/ttf.hm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/doc/ttf_file_format/ttf.hm -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/main.cpp -------------------------------------------------------------------------------- /main_opengl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/main_opengl.cpp -------------------------------------------------------------------------------- /main_vulkan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/main_vulkan.cpp -------------------------------------------------------------------------------- /projects/ImGuiFileDialog.ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/projects/ImGuiFileDialog.ifs -------------------------------------------------------------------------------- /projects/ImGuiFontStudio.ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/projects/ImGuiFontStudio.ifs -------------------------------------------------------------------------------- /projects/NoodlesPlate.ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/projects/NoodlesPlate.ifs -------------------------------------------------------------------------------- /projects/test.ifs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/projects/test.ifs -------------------------------------------------------------------------------- /samples_Fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/samples_Fonts/README.md -------------------------------------------------------------------------------- /samples_Fonts/SentyWEN2017.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/samples_Fonts/SentyWEN2017.ttf -------------------------------------------------------------------------------- /samples_Fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/samples_Fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /samples_Fonts/forkawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/samples_Fonts/forkawesome-webfont.ttf -------------------------------------------------------------------------------- /src/Generator/Compress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/Compress.cpp -------------------------------------------------------------------------------- /src/Generator/Compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/Compress.h -------------------------------------------------------------------------------- /src/Generator/FontGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/FontGenerator.cpp -------------------------------------------------------------------------------- /src/Generator/FontGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/FontGenerator.h -------------------------------------------------------------------------------- /src/Generator/GenMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/GenMode.cpp -------------------------------------------------------------------------------- /src/Generator/GenMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/GenMode.h -------------------------------------------------------------------------------- /src/Generator/GenerationSummaryDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/GenerationSummaryDialog.cpp -------------------------------------------------------------------------------- /src/Generator/GenerationSummaryDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/GenerationSummaryDialog.h -------------------------------------------------------------------------------- /src/Generator/Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/Generator.cpp -------------------------------------------------------------------------------- /src/Generator/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/Generator.h -------------------------------------------------------------------------------- /src/Generator/HeaderGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/HeaderGenerator.cpp -------------------------------------------------------------------------------- /src/Generator/HeaderGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/HeaderGenerator.h -------------------------------------------------------------------------------- /src/Generator/MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/MemoryStream.cpp -------------------------------------------------------------------------------- /src/Generator/MemoryStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Generator/MemoryStream.h -------------------------------------------------------------------------------- /src/Gui/CustomImGuiFileDialogConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Gui/CustomImGuiFileDialogConfig.h -------------------------------------------------------------------------------- /src/Gui/ImWidgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Gui/ImWidgets.cpp -------------------------------------------------------------------------------- /src/Gui/ImWidgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Gui/ImWidgets.h -------------------------------------------------------------------------------- /src/Helper/AssetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/AssetManager.cpp -------------------------------------------------------------------------------- /src/Helper/AssetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/AssetManager.h -------------------------------------------------------------------------------- /src/Helper/FontParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/FontParser.cpp -------------------------------------------------------------------------------- /src/Helper/FontParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/FontParser.h -------------------------------------------------------------------------------- /src/Helper/FrameActionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/FrameActionSystem.cpp -------------------------------------------------------------------------------- /src/Helper/FrameActionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/FrameActionSystem.h -------------------------------------------------------------------------------- /src/Helper/Messaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/Messaging.cpp -------------------------------------------------------------------------------- /src/Helper/Messaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/Messaging.h -------------------------------------------------------------------------------- /src/Helper/SelectionHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/SelectionHelper.cpp -------------------------------------------------------------------------------- /src/Helper/SelectionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/SelectionHelper.h -------------------------------------------------------------------------------- /src/Helper/SettingsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/SettingsDlg.cpp -------------------------------------------------------------------------------- /src/Helper/SettingsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/SettingsDlg.h -------------------------------------------------------------------------------- /src/Helper/TextureHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/TextureHelper.cpp -------------------------------------------------------------------------------- /src/Helper/TextureHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/TextureHelper.h -------------------------------------------------------------------------------- /src/Helper/ThemeHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/ThemeHelper.cpp -------------------------------------------------------------------------------- /src/Helper/ThemeHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/ThemeHelper.h -------------------------------------------------------------------------------- /src/Helper/TranslationSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/TranslationSystem.cpp -------------------------------------------------------------------------------- /src/Helper/TranslationSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Helper/TranslationSystem.h -------------------------------------------------------------------------------- /src/MainFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/MainFrame.cpp -------------------------------------------------------------------------------- /src/MainFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/MainFrame.h -------------------------------------------------------------------------------- /src/Panes/Abstract/AbstractPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/Abstract/AbstractPane.h -------------------------------------------------------------------------------- /src/Panes/DebugPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/DebugPane.cpp -------------------------------------------------------------------------------- /src/Panes/DebugPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/DebugPane.h -------------------------------------------------------------------------------- /src/Panes/FinalFontPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/FinalFontPane.cpp -------------------------------------------------------------------------------- /src/Panes/FinalFontPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/FinalFontPane.h -------------------------------------------------------------------------------- /src/Panes/FontPreviewPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/FontPreviewPane.cpp -------------------------------------------------------------------------------- /src/Panes/FontPreviewPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/FontPreviewPane.h -------------------------------------------------------------------------------- /src/Panes/FontStructurePane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/FontStructurePane.cpp -------------------------------------------------------------------------------- /src/Panes/FontStructurePane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/FontStructurePane.h -------------------------------------------------------------------------------- /src/Panes/GeneratorPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/GeneratorPane.cpp -------------------------------------------------------------------------------- /src/Panes/GeneratorPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/GeneratorPane.h -------------------------------------------------------------------------------- /src/Panes/GlyphPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/GlyphPane.cpp -------------------------------------------------------------------------------- /src/Panes/GlyphPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/GlyphPane.h -------------------------------------------------------------------------------- /src/Panes/Manager/LayoutManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/Manager/LayoutManager.cpp -------------------------------------------------------------------------------- /src/Panes/Manager/LayoutManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/Manager/LayoutManager.h -------------------------------------------------------------------------------- /src/Panes/ParamsPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/ParamsPane.cpp -------------------------------------------------------------------------------- /src/Panes/ParamsPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/ParamsPane.h -------------------------------------------------------------------------------- /src/Panes/SelectionFontPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/SelectionFontPane.cpp -------------------------------------------------------------------------------- /src/Panes/SelectionFontPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/SelectionFontPane.h -------------------------------------------------------------------------------- /src/Panes/SourceFontPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/SourceFontPane.cpp -------------------------------------------------------------------------------- /src/Panes/SourceFontPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Panes/SourceFontPane.h -------------------------------------------------------------------------------- /src/Project/FontInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/FontInfos.cpp -------------------------------------------------------------------------------- /src/Project/FontInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/FontInfos.h -------------------------------------------------------------------------------- /src/Project/FontTestInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/FontTestInfos.cpp -------------------------------------------------------------------------------- /src/Project/FontTestInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/FontTestInfos.h -------------------------------------------------------------------------------- /src/Project/GlyphInfos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/GlyphInfos.cpp -------------------------------------------------------------------------------- /src/Project/GlyphInfos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/GlyphInfos.h -------------------------------------------------------------------------------- /src/Project/ProjectFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/ProjectFile.cpp -------------------------------------------------------------------------------- /src/Project/ProjectFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Project/ProjectFile.h -------------------------------------------------------------------------------- /src/Res/CustomFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/CustomFont.cpp -------------------------------------------------------------------------------- /src/Res/CustomFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/CustomFont.h -------------------------------------------------------------------------------- /src/Res/Roboto_Medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/Roboto_Medium.cpp -------------------------------------------------------------------------------- /src/Res/Roboto_Medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/Roboto_Medium.h -------------------------------------------------------------------------------- /src/Res/btn.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/btn.afdesign -------------------------------------------------------------------------------- /src/Res/btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/btn.png -------------------------------------------------------------------------------- /src/Res/btn2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/Res/btn2.png -------------------------------------------------------------------------------- /src/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiekick/ImGuiFontStudio/HEAD/src/globals.h --------------------------------------------------------------------------------