mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:07:36 +00:00
CharacterMap: Add new Character Map application :^)
This commit is contained in:
parent
1d79e8cb0f
commit
2327ea8970
7 changed files with 278 additions and 0 deletions
44
Userland/Applications/CharacterMap/CharacterMapWindow.gml
Normal file
44
Userland/Applications/CharacterMap/CharacterMapWindow.gml
Normal file
|
@ -0,0 +1,44 @@
|
|||
@GUI::Frame {
|
||||
fill_with_background_color: true
|
||||
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::ToolbarContainer {
|
||||
@GUI::Toolbar {
|
||||
layout: @GUI::HorizontalBoxLayout {
|
||||
spacing: 4
|
||||
margins: [0, 0, 0, 4]
|
||||
}
|
||||
|
||||
name: "toolbar"
|
||||
|
||||
@GUI::Label {
|
||||
text: "Font: "
|
||||
autosize: true
|
||||
}
|
||||
|
||||
@GUI::Frame {
|
||||
background_role: "Base"
|
||||
fill_with_background_color: true
|
||||
fixed_height: 20
|
||||
|
||||
layout: @GUI::VerticalBoxLayout {
|
||||
}
|
||||
|
||||
@GUI::Label {
|
||||
name: "font_name"
|
||||
text: "Cool Font 16 400"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@GUI::GlyphMapWidget {
|
||||
name: "glyph_map"
|
||||
}
|
||||
|
||||
@GUI::Statusbar {
|
||||
name: "statusbar"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue