1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:37:34 +00:00

FontEditor: Add 'New Font' wizard to editor

Take a comfy guided tour through new font creation.
This commit is contained in:
thankyouverycool 2021-04-10 13:47:23 -04:00 committed by Andreas Kling
parent cdfa2614b9
commit 07627b3742
6 changed files with 620 additions and 1 deletions

View file

@ -1,5 +1,7 @@
include_directories(${CMAKE_CURRENT_BINARY_DIR})
compile_gml(FontEditorWindow.gml FontEditorWindowGML.h font_editor_window_gml)
compile_gml(NewFontDialogPage1.gml NewFontDialogPage1GML.h new_font_dialog_page_1_gml)
compile_gml(NewFontDialogPage2.gml NewFontDialogPage2GML.h new_font_dialog_page_2_gml)
set(SOURCES
FontEditor.cpp
@ -7,6 +9,9 @@ set(SOURCES
GlyphEditorWidget.cpp
GlyphMapWidget.cpp
main.cpp
NewFontDialog.cpp
NewFontDialogPage1GML.h
NewFontDialogPage2GML.h
)
serenity_app(FontEditor ICON app-font-editor)