1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:37:34 +00:00

CharacterMap: Add a ListView to sort glyphs by their Unicode block

This commit is contained in:
thankyouverycool 2022-02-13 13:47:55 -05:00 committed by Tim Flynn
parent 170afc2f47
commit 6704bc0072
4 changed files with 59 additions and 18 deletions

View file

@ -29,25 +29,38 @@
}
}
@GUI::GlyphMapWidget {
name: "glyph_map"
}
@GUI::HorizontalSplitter {
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
spacing: 4
margins: [0, 2, 0, 2]
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
}
@GUI::GlyphMapWidget {
name: "glyph_map"
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
spacing: 4
margins: [0, 2, 0, 2]
}
@GUI::TextBox {
name: "output_box"
}
@GUI::Button {
name: "copy_output_button"
icon: "/res/icons/16x16/edit-copy.png"
fixed_width: 22
}
}
}
@GUI::TextBox {
name: "output_box"
}
@GUI::Button {
name: "copy_output_button"
icon: "/res/icons/16x16/edit-copy.png"
fixed_width: 22
@GUI::ListView {
max_width: 175
name: "unicode_block_listview"
}
}