mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:17:35 +00:00
FontEditor: Add a search box to filter Unicode blocks
This commit is contained in:
parent
bb23377b48
commit
0061af170f
3 changed files with 50 additions and 12 deletions
|
@ -10,6 +10,7 @@
|
|||
#include "UndoGlyph.h"
|
||||
#include <LibConfig/Listener.h>
|
||||
#include <LibGUI/ActionGroup.h>
|
||||
#include <LibGUI/FilteringProxyModel.h>
|
||||
#include <LibGUI/GlyphMapWidget.h>
|
||||
#include <LibGUI/UndoStack.h>
|
||||
#include <LibGUI/Widget.h>
|
||||
|
@ -111,6 +112,7 @@ private:
|
|||
RefPtr<GUI::Window> m_font_preview_window;
|
||||
RefPtr<GUI::Widget> m_left_column_container;
|
||||
RefPtr<GUI::Widget> m_glyph_editor_container;
|
||||
RefPtr<GUI::Widget> m_unicode_block_container;
|
||||
RefPtr<GUI::ComboBox> m_weight_combobox;
|
||||
RefPtr<GUI::ComboBox> m_slope_combobox;
|
||||
RefPtr<GUI::SpinBox> m_spacing_spinbox;
|
||||
|
@ -121,10 +123,12 @@ private:
|
|||
RefPtr<GUI::CheckBox> m_glyph_editor_present_checkbox;
|
||||
RefPtr<GUI::TextBox> m_name_textbox;
|
||||
RefPtr<GUI::TextBox> m_family_textbox;
|
||||
RefPtr<GUI::TextBox> m_search_textbox;
|
||||
RefPtr<GUI::CheckBox> m_fixed_width_checkbox;
|
||||
RefPtr<GUI::GroupBox> m_font_metadata_groupbox;
|
||||
RefPtr<GUI::ListView> m_unicode_block_listview;
|
||||
RefPtr<GUI::Model> m_unicode_block_model;
|
||||
RefPtr<GUI::FilteringProxyModel> m_filter_model;
|
||||
|
||||
String m_path;
|
||||
Vector<String> m_font_weight_list;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue