1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:17:44 +00:00

LibGUI+FontEditor: Move GlyphMapWidget to LibGUI

This will allow us to use this in other apps, such as the upcoming
Character Map. :^)
This commit is contained in:
Sam Atkins 2022-01-09 16:15:23 +00:00 committed by Andreas Kling
parent dd17df76e9
commit 8175cd0a28
6 changed files with 28 additions and 21 deletions

View file

@ -6,7 +6,6 @@
#include "FontEditor.h"
#include "GlyphEditorWidget.h"
#include "GlyphMapWidget.h"
#include "NewFontDialog.h"
#include <AK/StringBuilder.h>
#include <AK/UnicodeUtils.h>
@ -135,7 +134,7 @@ FontEditorWidget::FontEditorWidget()
m_font_metadata_groupbox = *find_descendant_of_type_named<GUI::GroupBox>("font_metadata_groupbox");
m_glyph_editor_widget = m_glyph_editor_container->add<GlyphEditorWidget>();
m_glyph_map_widget = glyph_map_container.add<GlyphMapWidget>();
m_glyph_map_widget = glyph_map_container.add<GUI::GlyphMapWidget>();
m_new_action = GUI::Action::create("&New Font...", { Mod_Ctrl, Key_N }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/filetype-font.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
if (!request_close())