summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor/HexEditorWindow.gml
blob: 467ff0176ada41979a92b329100b0716d61e74c1 (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
@GUI::Widget {
    name: "main"
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        spacing: 2
    }

    @GUI::ToolbarContainer {
        name: "toolbar_container"
        @GUI::Toolbar {
            name: "toolbar"
        }
    }

    @GUI::HorizontalSplitter {
        @HexEditor::HexEditor {
            name: "editor"
        }

        @GUI::Widget {
            name: "search_results_container"
            visible: false
            layout: @GUI::VerticalBoxLayout

            @GUI::TableView {
                name: "search_results"
            }
        }
    }

    @GUI::Statusbar {
        name: "statusbar"
        label_count: 5
    }
}