1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 11:45:06 +00:00
serenity/Userland/Applications/MailSettings/MailSettingsWidget.gml
kleines Filmröllchen 6ee597369d Meta+Userland: Run the GML formatter on CI and pre-commit
Now that the GML formatter is both perserving comments and also mostly
agrees to the existing GML style, it can be used to auto-format all the
GML files in the system. This commit does not only contain the scripts
for running the formatting on CI and the pre-commit hook, but also
initially formats all the existing GML files so that the hook is
successfull.
2022-02-07 18:39:50 +01:00

137 lines
3.2 KiB
Text

@GUI::Frame {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [10]
spacing: 5
}
@GUI::GroupBox {
title: "Server Settings"
fixed_height: 170
layout: @GUI::VerticalBoxLayout {
margins: [6]
spacing: 2
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Label {
fixed_width: 32
fixed_height: 32
icon: "/res/graphics/mail-server-settings.png"
}
@GUI::Label {
text: "These settings specify the mail server from which you would like to fetch your mail."
text_alignment: "CenterLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Widget {
fixed_width: 32
}
@GUI::Label {
text: "Server Address:"
fixed_width: 80
name: "server_label"
text_alignment: "CenterLeft"
}
@GUI::TextBox {
name: "server_input"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Widget {
fixed_width: 32
}
@GUI::Label {
text: "Server Port:"
fixed_width: 80
name: "port_label"
text_alignment: "CenterLeft"
}
@GUI::ComboBox {
name: "port_input"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Widget {
fixed_width: 32
}
@GUI::CheckBox {
name: "tls_input"
text: "Use TLS"
}
}
}
@GUI::GroupBox {
title: "User Settings"
fixed_height: 110
layout: @GUI::VerticalBoxLayout {
margins: [6]
spacing: 2
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Label {
fixed_width: 32
fixed_height: 32
icon: "/res/graphics/mail-user-settings.png"
}
@GUI::Label {
text: "These settings specify the credentials which will be used to send and receive mail, and how you identify yourself to recipients."
text_alignment: "CenterLeft"
}
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Widget {
fixed_width: 32
}
@GUI::Label {
autosize: true
text: "Email Address:"
fixed_width: 80
text_alignment: "CenterLeft"
}
@GUI::TextBox {
name: "email_input"
}
}
}
}