mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 11:42:38 +03:00
25 lines
575 B
C++
25 lines
575 B
C++
#pragma once
|
|
|
|
#include <AK/Function.h>
|
|
#include <LibGUI/GWidget.h>
|
|
|
|
class GlyphEditorWidget;
|
|
class GlyphMapWidget;
|
|
class GTextBox;
|
|
|
|
class FontEditorWidget final : public GWidget {
|
|
public:
|
|
FontEditorWidget(const String& path, RefPtr<Font>&&, GWidget* parent = nullptr);
|
|
virtual ~FontEditorWidget() override;
|
|
|
|
private:
|
|
RefPtr<Font> m_edited_font;
|
|
|
|
GlyphMapWidget* m_glyph_map_widget { nullptr };
|
|
GlyphEditorWidget* m_glyph_editor_widget { nullptr };
|
|
GTextBox* m_name_textbox { nullptr };
|
|
GTextBox* m_path_textbox { nullptr };
|
|
|
|
String m_path;
|
|
};
|