mirror of
https://github.com/RGBCube/serenity
synced 2025-05-22 11:45:08 +00:00
28 lines
532 B
Text
28 lines
532 B
Text
@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"
|
|
}
|
|
}
|