1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:57:44 +00:00

LibGUI: Add a simple GUI::PasswordInputDialog

Asking the user for a password is a fairly common thing, so let's have
a reusable GUI dialog for it! This first iteration only supports having
pre-filled "server" and "username" fields. This can obviously be made
more flexible as needs arise. :^)
This commit is contained in:
Andreas Kling 2021-08-02 10:09:59 +02:00
parent 46cec3a443
commit 1f51b72e6d
5 changed files with 209 additions and 0 deletions

View file

@ -0,0 +1,105 @@
@GUI::Widget {
fill_with_background_color: true
layout: @GUI::HorizontalBoxLayout {
margins: [8, 8, 8, 8]
spacing: 8
}
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::VerticalBoxLayout {
}
@GUI::Label {
name: "key_icon_label"
fixed_height: 32
fixed_width: 32
}
}
@GUI::Widget {
layout: @GUI::VerticalBoxLayout {
}
@GUI::Widget {
fixed_height: 24
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Server:"
fixed_width: 80
text_alignment: "CenterLeft"
}
@GUI::Label {
name: "server_label"
text: "server.ip"
text_alignment: "CenterLeft"
}
}
@GUI::Widget {
fixed_height: 24
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Username:"
fixed_width: 80
text_alignment: "CenterLeft"
}
@GUI::Label {
name: "username_label"
text: "username"
text_alignment: "CenterLeft"
}
}
@GUI::Widget {
fixed_height: 24
layout: @GUI::HorizontalBoxLayout {
}
@GUI::Label {
text: "Password:"
fixed_width: 80
text_alignment: "CenterLeft"
}
@GUI::PasswordBox {
name: "password_box"
}
}
@GUI::Widget
@GUI::Widget {
shrink_to_fit: true
layout: @GUI::HorizontalBoxLayout {
spacing: 6
}
@GUI::Widget {
}
@GUI::Button {
text: "OK"
name: "ok_button"
fixed_width: 75
}
@GUI::Button {
text: "Cancel"
name: "cancel_button"
fixed_width: 75
}
}
}
}