summaryrefslogtreecommitdiff
path: root/Userland/Applications/FontEditor/NewFontDialogPage1.gml
blob: d08c7f3531b23f20d37d4f6841a80b86a71bc8c5 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
@GUI::Widget {
    layout: @GUI::VerticalBoxLayout {
        margins: [20]
    }

    @GUI::Widget {
        fixed_height: 160
        layout: @GUI::VerticalBoxLayout {
        }

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

            @GUI::Label {
                fixed_width: 100
                text_alignment: "CenterLeft"
                text: "Name:"
            }

            @GUI::TextBox {
                name: "name_textbox"
            }
        }

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

            @GUI::Label {
                fixed_width: 100
                text_alignment: "CenterLeft"
                text: "Family:"
            }

            @GUI::TextBox {
                name: "family_textbox"
            }
        }

        @GUI::HorizontalSeparator {
            fixed_height: 22
        }

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

            @GUI::Label {
                text: "Weight:"
                fixed_width: 100
                text_alignment: "CenterLeft"
            }

            @GUI::ComboBox {
                name: "weight_combobox"
                fixed_width: 180
                model_only: true
            }
        }

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

            @GUI::Label {
                fixed_width: 100
                text_alignment: "CenterLeft"
                text: "Slope:"
            }

            @GUI::ComboBox {
                name: "slope_combobox"
                fixed_width: 180
                model_only: true
            }
        }

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

            @GUI::Label {
                fixed_width: 100
                text_alignment: "CenterLeft"
                text: "Presentation size:"
            }

            @GUI::SpinBox {
                name: "presentation_spinbox"
                min: 0
                max: 255
                fixed_width: 180
            }
        }
    }
}