Newer
Older
minerva / Userland / Applications / ThemeEditor / Previews / WindowPreview.gml
@minerva minerva on 13 Jul 517 bytes Initial commit
@GUI::Frame {
    layout: @GUI::VerticalBoxLayout {}

    @GUI::Widget {
        layout: @GUI::VerticalBoxLayout {
            margins: [8, 100, 8, 8]
        }

        @GUI::Button {
            text: "Button"
        }

        @GUI::CheckBox {
            text: "Check box"
        }

        @GUI::RadioButton {
            text: "Radio button"
        }

        @GUI::TextEditor {
            text: "Text editor\nwith multiple\nlines."
        }
    }

    @GUI::Statusbar {
        text: "Status bar"
    }
}