summaryrefslogtreecommitdiff
path: root/Userland/Applications/Mail/MailWindow.gml
blob: c6d8b473675c2b774a200ed3a616913bb5751237 (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
@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"
    }
}