Newer
Older
minerva / Userland / Applications / Browser / StorageWidget.gml
@minerva minerva on 13 Jul 1 KB Initial commit
@GUI::Widget {
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        margins: [4]
    }

    @GUI::TabWidget {
        name: "tab_widget"

        @GUI::Widget {
            title: "Cookies"
            layout: @GUI::VerticalBoxLayout {
                margins: [4]
            }

            @GUI::TextBox {
                name: "cookies_filter_textbox"
                placeholder: "Filter"
            }

            @GUI::GroupBox {
                layout: @GUI::VerticalBoxLayout {
                    margins: [6]
                }

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

        @GUI::Widget {
            title: "Local Storage"
            layout: @GUI::VerticalBoxLayout {
                margins: [4]
            }

            @GUI::TextBox {
                name: "local_storage_filter_textbox"
                placeholder: "Filter"
            }

            @GUI::GroupBox {
                layout: @GUI::VerticalBoxLayout {
                    margins: [6]
                }

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

        @GUI::Widget {
            title: "Session Storage"
            layout: @GUI::VerticalBoxLayout {
                margins: [4]
            }

            @GUI::TextBox {
                name: "session_storage_filter_textbox"
                placeholder: "Filter"
            }

            @GUI::GroupBox {
                layout: @GUI::VerticalBoxLayout {
                    margins: [6]
                }

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