summaryrefslogtreecommitdiff
path: root/Userland/Applications/Mail/MailWindow.gml
blob: f011048732dac3262fbed6eacd09728fe1f315de (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
@GUI::Widget {
    fill_with_background_color: true
    layout: @GUI::VerticalBoxLayout {
        spacing: 2
    }

    @GUI::HorizontalSplitter {
        @GUI::TreeView {
            name: "mailbox_list"
            fixed_width: 250
        }

        @GUI::VerticalSplitter {
            @GUI::TableView {
                name: "individual_mailbox_view"
            }

            @Web::OutOfProcessWebView {
                name: "web_view"
            }
        }
    }

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