mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 14:19:48 +00:00
CharacterMap: Add a ListView to sort glyphs by their Unicode block
This commit is contained in:
parent
170afc2f47
commit
6704bc0072
Notes:
sideshowbarker
2024-07-17 18:45:36 +09:00
Author: https://github.com/thankyouverycool
Commit: 6704bc0072
Pull-request: https://github.com/SerenityOS/serenity/pull/12504
Reviewed-by: https://github.com/trflynn89 ✅
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