summaryrefslogtreecommitdiff
path: root/Userland/Applications/PartitionEditor/PartitionEditorWindow.gml
blob: fb1341be0e0b4462a13fcadd3fb6d32dc04c8971 (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
@GUI::Widget {
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {}

    @GUI::ToolbarContainer {
        @GUI::Toolbar {
            layout: @GUI::HorizontalBoxLayout {
                margins: [0, 4]
            }

            @GUI::Label {
                text: "Device: "
                autosize: true
            }

            @GUI::ComboBox {
                name: "device_combobox"
                fixed_width: 100
            }
        }
    }

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