mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:07:45 +00:00
CharacterMap: Add a ListView to sort glyphs by their Unicode block
This commit is contained in:
parent
170afc2f47
commit
6704bc0072
4 changed files with 59 additions and 18 deletions
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue