summaryrefslogtreecommitdiff
path: root/Userland/Applications/HexEditor/HexEditorWindow.gml
blob: 10a271af1bc27a562c24573c3f973d927befa7b4 (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
@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"
        segment_count: 5
    }
}