summaryrefslogtreecommitdiff
path: root/Userland/Applications/CharacterMap/CharacterMapWindow.gml
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-01-10 15:59:42 +0000
committerAndreas Kling <kling@serenityos.org>2022-01-16 11:17:03 +0100
commit2327ea897071a51322c42fc17ba0184ab49d4546 (patch)
treeee5d6ab563141eeeab993376082a76db02fceda6 /Userland/Applications/CharacterMap/CharacterMapWindow.gml
parent1d79e8cb0f3a27204921c5fe0ac022ec9d76b43f (diff)
downloadserenity-2327ea897071a51322c42fc17ba0184ab49d4546.zip
CharacterMap: Add new Character Map application :^)
Diffstat (limited to 'Userland/Applications/CharacterMap/CharacterMapWindow.gml')
-rw-r--r--Userland/Applications/CharacterMap/CharacterMapWindow.gml44
1 files changed, 44 insertions, 0 deletions
diff --git a/Userland/Applications/CharacterMap/CharacterMapWindow.gml b/Userland/Applications/CharacterMap/CharacterMapWindow.gml
new file mode 100644
index 0000000000..3824614848
--- /dev/null
+++ b/Userland/Applications/CharacterMap/CharacterMapWindow.gml
@@ -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"
+ }
+}