Serenity Operating System
1@GUI::Frame {
2 fill_with_background_color: true
3 layout: @GUI::VerticalBoxLayout {}
4
5 @GUI::ToolbarContainer {
6 @GUI::Toolbar {
7 layout: @GUI::HorizontalBoxLayout {
8 spacing: 4
9 margins: [0, 0, 0, 4]
10 }
11 name: "toolbar"
12
13 @GUI::Label {
14 text: "Font: "
15 autosize: true
16 }
17
18 @GUI::Frame {
19 background_role: "Base"
20 fill_with_background_color: true
21 fixed_height: 20
22 layout: @GUI::VerticalBoxLayout {}
23
24 @GUI::Label {
25 name: "font_name"
26 text: "Cool Font 16 400"
27 }
28 }
29 }
30 }
31
32 @GUI::HorizontalSplitter {
33 opportunistic_resizee: "First"
34
35 @GUI::Widget {
36 layout: @GUI::VerticalBoxLayout {}
37
38 @GUI::GlyphMapWidget {
39 name: "glyph_map"
40 }
41
42 @GUI::Widget {
43 preferred_height: "fit"
44 layout: @GUI::HorizontalBoxLayout {
45 spacing: 4
46 margins: [0, 2, 0, 2]
47 }
48
49 @GUI::TextBox {
50 name: "output_box"
51 }
52
53 @GUI::Button {
54 name: "copy_output_button"
55 icon: "/res/icons/16x16/edit-copy.png"
56 fixed_width: 22
57 }
58 }
59 }
60
61 @GUI::ListView {
62 preferred_width: 175
63 name: "unicode_block_listview"
64 }
65 }
66
67 @GUI::Statusbar {
68 name: "statusbar"
69 }
70}