1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 11:55:12 +00:00
serenity/Userland/Applications/MailSettings/MailSettingsWindow.gml
Faeliore 8e3431d56d MailSettings: Add basic mail settings dialog
MailSettings: Add a GML file for Mail settings

MailSettings: Add an AF desktop file for Mail Settings

MailSettings: Unveil /res in mail settings, fix GML

MailSettings: Mail settings texteditor->textbox

MailSettings: Update mail username to correct category in settings

Modified Mail settings GML to properly represent ports >100

MailSettings: Update/fix mail settings GML

MailSettings: Adjust GML, add icons for mail settings

MailSettings: Change Okay button to OK

MailSettings: Change mail setting reset button to revert

MailSettings: Fix incorrect variable names in mail settings

MailSettings: Add newlines af EOF of all mail setting files

MailSettings: Mail settings linting issues fixed

MailSettings: Increase size of icon features
Code cleaning/styling changes as per gunnarbeutner review
Made settings descriptions more friendly per sin-ack review

MailSettings: Fixes as per PR comments

MailSettings: Fix checkbox weirdness

MailSettings: Adjust width of checkbox

MailSettings: Remove unneccessary update() call

MailSettings: Replace port SpinBox with ComboBox

MailSettings: Add colons to labels, remove port 110 option

MailSettings: Remove custom model, use ItemListModel

MailSettings: Change relative icon paths to absolute ones
2021-07-30 20:47:31 +02:00

146 lines
3.4 KiB
Text

@GUI::Frame {
fill_with_background_color: true
layout: @GUI::VerticalBoxLayout {
margins: [10, 10, 10, 10]
spacing: 5
}
@GUI::GroupBox {
title: "Server Settings"
fixed_height: 170
layout: @GUI::VerticalBoxLayout {
margins: [8, 16, 8, 8]
spacing: 2
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Label {
fixed_width: 32
fixed_height: 32
name: "server_settings_image_label"
}
@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::Label {
text: "Use TLS:"
fixed_width: 80
text_alignment: "CenterLeft"
name: "tls_label"
}
@GUI::CheckBox {
name: "tls_input"
fixed_width: 14
}
}
}
@GUI::GroupBox {
title: "User Settings"
fixed_height: 110
layout: @GUI::VerticalBoxLayout {
margins: [8, 16, 8, 8]
spacing: 2
}
@GUI::Widget {
layout: @GUI::HorizontalBoxLayout {
spacing: 16
}
@GUI::Label {
fixed_width: 32
fixed_height: 32
name: "user_settings_image_label"
}
@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"
}
}
}
}