summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor/FindDialog.gml
blob: 5afcea8a243f1510fae7b378be1ad93615c2366f (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
@GUI::Widget {
    name: "main"
    fixed_width: 280
    fixed_height: 146
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        spacing: 2
        margins: [4]
    }

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

        fixed_height: 22
        @GUI::Label {
            text: "Value to find"
            fixed_width: 80
            text_alignment: "CenterLeft"
        }

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

    @GUI::Widget {
        layout: @GUI::VerticalBoxLayout

        name: "radio_container"
    }

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

        fixed_height: 22
        @GUI::Button {
            name: "find_button"
            text: "Find"
        }

        @GUI::Button {
            name: "find_all_button"
            text: "Find All"
        }

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