summaryrefslogtreecommitdiff
path: root/Userland/DevTools/SQLStudio/SQLStudio.gml
blob: c08bffe0d7c84caff212eb1393a411a0a6d057c5 (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
@SQLStudio::MainWidget {
    layout: @GUI::VerticalBoxLayout {}
    fill_with_background_color: true

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

    @GUI::VerticalSplitter {
        @GUI::TabWidget {
            name: "script_tab_widget"
            reorder_allowed: true
            show_close_buttons: true
        }

        @GUI::TabWidget {
            name: "action_tab_widget"
            show_close_buttons: true
            visible: false
        }
    }

    @GUI::Statusbar {
        name: "statusbar"
        segment_count: 3
    }
}