summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/EditBookmark.gml
blob: e7f7dd71699fb1a94e4a272dfa0e0744f41bd5a9 (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
@GUI::Widget {
    fixed_width: 260
    fixed_height: 85
    fill_with_background_color: true

    layout: @GUI::VerticalBoxLayout {
        margins: [4, 4, 4, 4]
    }


    @GUI::Widget {
        fixed_height: 24

        layout: @GUI::HorizontalBoxLayout {
        }

        @GUI::Label {
            text: "Title:"
            text_alignment: "CenterLeft"
            fixed_width: 30
        }

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

    @GUI::Widget {
        fixed_height: 24

        layout: @GUI::HorizontalBoxLayout {
        }

        @GUI::Label {
            text: "URL:"
            text_alignment: "CenterLeft"
            fixed_width: 30
        }

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


    @GUI::Widget {
        fixed_height: 24

        layout: @GUI::HorizontalBoxLayout {
        }

        @GUI::Widget {
        }

        @GUI::Button {
            name: "ok_button"
            text: "OK"
            fixed_width: 75
        }

        @GUI::Button {
            name: "cancel_button"
            text: "Cancel"
            fixed_width: 75
        }
    }
}