gitextract_t8uykv9z/ ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app/ │ ├── CMakeLists.txt │ ├── addglyphdialog.cpp │ ├── addglyphdialog.h │ ├── addglyphdialog.ui │ ├── assets.qrc │ ├── cmake_uninstall.cmake.in │ ├── command.h │ ├── common/ │ │ ├── CMakeLists.txt │ │ ├── common.h │ │ ├── f2b_qt_compat.cpp │ │ └── f2b_qt_compat.h │ ├── fontfaceviewmodel.cpp │ ├── fontfaceviewmodel.h │ ├── global.h │ ├── l10n/ │ │ ├── fontedit_en.qm │ │ └── fontedit_en.ts │ ├── macos/ │ │ ├── Info.plist │ │ └── fontedit.icns │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── mainwindow.ui │ ├── mainwindowmodel.cpp │ ├── mainwindowmodel.h │ ├── qfontfacereader.cpp │ ├── qfontfacereader.h │ ├── semver.hpp │ ├── sourcecoderunnable.cpp │ ├── sourcecoderunnable.h │ ├── ui/ │ │ ├── CMakeLists.txt │ │ ├── aboutdialog.cpp │ │ ├── aboutdialog.h │ │ ├── aboutdialog.ui │ │ ├── batchpixelchange.h │ │ ├── facewidget.cpp │ │ ├── facewidget.h │ │ ├── focuswidget.cpp │ │ ├── focuswidget.h │ │ ├── glyphgraphicsview.cpp │ │ ├── glyphgraphicsview.h │ │ ├── glyphinfowidget.cpp │ │ ├── glyphinfowidget.h │ │ ├── glyphwidget.cpp │ │ └── glyphwidget.h │ ├── updatehelper.cpp │ ├── updatehelper.h │ ├── utf8/ │ │ ├── CMakeLists.txt │ │ ├── utf8/ │ │ │ ├── checked.h │ │ │ ├── core.h │ │ │ └── unchecked.h │ │ └── utf8.h │ ├── win/ │ │ └── fontedit.rc │ └── x11/ │ └── fontedit.desktop ├── fontedit.iss ├── lib/ │ ├── CMakeLists.txt │ ├── src/ │ │ ├── CMakeLists.txt │ │ ├── f2b.h │ │ ├── fontdata.cpp │ │ ├── fontdata.h │ │ ├── fontsourcecodegenerator.cpp │ │ ├── fontsourcecodegenerator.h │ │ ├── format.h │ │ ├── include/ │ │ │ └── f2b.h │ │ └── sourcecode.h │ └── test/ │ ├── CMakeLists.txt │ ├── fontface_test.cpp │ ├── glyph_test.cpp │ └── sourcecode_test.cpp └── test/ ├── CMakeLists.txt ├── assets/ │ ├── jetbrains260.fontedit │ ├── monaco8-subset.c-test │ ├── monaco8.c-test │ └── monaco8.fontedit ├── f2b_qt_compat_test.cpp └── sourcecodegeneration_test.cpp