diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-08-02 14:30:58 +0100 |
---|---|---|
committer | Sam Atkins <atkinssj@gmail.com> | 2022-08-14 13:59:19 +0100 |
commit | 5b7168b247a8c39e15c290483d9b1475e3eb2114 (patch) | |
tree | ecd9adca087059e9a4f773c6785e9ef3fa61e275 /Userland | |
parent | 7f6bf8c7c163b0338b055509c27168097f7aa8b4 (diff) | |
download | serenity-5b7168b247a8c39e15c290483d9b1475e3eb2114.zip |
FontEditor: Add an option to show or hide modification highlights
Diffstat (limited to 'Userland')
-rw-r--r-- | Userland/Applications/FontEditor/MainWidget.cpp | 16 | ||||
-rw-r--r-- | Userland/Applications/FontEditor/MainWidget.h | 3 |
2 files changed, 19 insertions, 0 deletions
diff --git a/Userland/Applications/FontEditor/MainWidget.cpp b/Userland/Applications/FontEditor/MainWidget.cpp index da51a64261..5855b28424 100644 --- a/Userland/Applications/FontEditor/MainWidget.cpp +++ b/Userland/Applications/FontEditor/MainWidget.cpp @@ -204,6 +204,15 @@ ErrorOr<void> MainWidget::create_actions() m_show_unicode_blocks_action->set_checked(show_unicode_blocks); m_show_unicode_blocks_action->set_status_tip("Show or hide the Unicode block list"); + bool highlight_modifications = Config::read_bool("FontEditor"sv, "Display"sv, "HighlightModifications"sv, true); + set_highlight_modifications(highlight_modifications); + m_highlight_modifications_action = GUI::Action::create_checkable("&Highlight Modifications", { Mod_Ctrl, Key_H }, [&](auto& action) { + set_highlight_modifications(action.is_checked()); + Config::write_bool("FontEditor"sv, "Display"sv, "HighlightModifications"sv, action.is_checked()); + }); + m_highlight_modifications_action->set_checked(highlight_modifications); + m_highlight_modifications_action->set_status_tip("Show or hide highlights on modified glyphs. (Green = New, Blue = Modified, Red = Deleted)"); + m_go_to_glyph_action = GUI::Action::create("&Go to Glyph...", { Mod_Ctrl, Key_G }, TRY(Gfx::Bitmap::try_load_from_file("/res/icons/16x16/go-to.png"sv)), [&](auto&) { String input; if (GUI::InputBox::show(window(), input, "Hexadecimal:"sv, "Go to glyph"sv) == GUI::InputBox::ExecResult::OK && !input.is_empty()) { @@ -652,6 +661,8 @@ ErrorOr<void> MainWidget::initialize_menubar(GUI::Window& window) TRY(view_menu->try_add_action(*m_show_metadata_action)); TRY(view_menu->try_add_action(*m_show_unicode_blocks_action)); TRY(view_menu->try_add_separator()); + TRY(view_menu->try_add_action(*m_highlight_modifications_action)); + TRY(view_menu->try_add_separator()); auto scale_menu = TRY(view_menu->try_add_submenu("&Scale")); TRY(scale_menu->try_add_action(*m_scale_five_action)); TRY(scale_menu->try_add_action(*m_scale_ten_action)); @@ -693,6 +704,11 @@ void MainWidget::set_show_unicode_blocks(bool show) m_unicode_block_container->set_visible(m_unicode_blocks); } +void MainWidget::set_highlight_modifications(bool highlight_modifications) +{ + m_glyph_map_widget->set_highlight_modifications(highlight_modifications); +} + ErrorOr<void> MainWidget::open_file(String const& path) { auto unmasked_font = TRY(TRY(Gfx::BitmapFont::try_load_from_file(path))->unmasked_character_set()); diff --git a/Userland/Applications/FontEditor/MainWidget.h b/Userland/Applications/FontEditor/MainWidget.h index ac6ee01cfa..0c29365aad 100644 --- a/Userland/Applications/FontEditor/MainWidget.h +++ b/Userland/Applications/FontEditor/MainWidget.h @@ -51,6 +51,8 @@ public: bool is_showing_unicode_blocks() { return m_unicode_blocks; } void set_show_unicode_blocks(bool); + void set_highlight_modifications(bool); + private: MainWidget(); @@ -110,6 +112,7 @@ private: RefPtr<GUI::Action> m_open_preview_action; RefPtr<GUI::Action> m_show_metadata_action; RefPtr<GUI::Action> m_show_unicode_blocks_action; + RefPtr<GUI::Action> m_highlight_modifications_action; GUI::ActionGroup m_glyph_editor_scale_actions; RefPtr<GUI::Action> m_scale_five_action; |