1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:37:35 +00:00

FontEditor: Add new tools to navigate code points

Visible glyphs can now be cycled through, or a code point specified
and jumped to directly.
This commit is contained in:
thankyouverycool 2021-09-09 07:43:19 -04:00 committed by Andreas Kling
parent a486415f03
commit dc65535b7c
2 changed files with 60 additions and 0 deletions

View file

@ -61,6 +61,10 @@ private:
RefPtr<UndoGlyph> m_undo_glyph;
OwnPtr<GUI::UndoStack> m_undo_stack;
RefPtr<GUI::Action> m_go_to_glyph_action;
RefPtr<GUI::Action> m_previous_glyph_action;
RefPtr<GUI::Action> m_next_glyph_action;
RefPtr<GUI::Action> m_open_preview_action;
RefPtr<GUI::Action> m_show_metadata_action;