summaryrefslogtreecommitdiff
path: root/Userland/Applications/FontEditor/FontPreviewWindow.gml
blob: b91908d8826b54752d568c8ae093b773d052ea4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
@GUI::Widget {
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        margins: [2]
    }

    @GUI::Frame {
        layout: @GUI::VerticalBoxLayout {
            margins: [4]
        }
        shape: "Box"
        shadow: "Sunken"
        thickness: 2

        @GUI::Label {
            name: "preview_label"
        }
    }

    @GUI::Widget {
        layout: @GUI::HorizontalBoxLayout {}
        fixed_height: 22

        @GUI::TextBox {
            name: "preview_textbox"
            placeholder: "Preview text"
        }

        @GUI::Button {
            name: "reload_button"
            icon: "/res/icons/16x16/reload.png"
            fixed_width: 22
        }
    }
}