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

    @GUI::Layout::Spacer {}
}