summaryrefslogtreecommitdiff
path: root/Userland/Demos/WidgetGallery/DemoWizardPage1.gml
blob: 7840a4c92e7bd97150172231f470cdafd6563d26 (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
@GUI::Widget {
    layout: @GUI::VerticalBoxLayout {
        margins: [20, 20, 20, 20]
    }

    @GUI::Label {
        text: "Please select an installation directory."
        text_alignment: "TopLeft"
        fixed_height: 32
    }

    @GUI::Widget {
        fixed_height: 25

        layout: @GUI::HorizontalBoxLayout {
        }

        @GUI::Label {
            text: "Location: "
            autosize: true
        }

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

        @GUI::Button {
            text: "Browse"
            fixed_width: 75
        }
    }

    // Spacer
    @GUI::Widget {

    }
}