summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/PasswordInputDialog.h
AgeCommit message (Collapse)Author
2022-05-13LibGUI+Userland: Make Dialog::ExecResult an enum classSam Atkins
2022-03-12Libraries: Use default constructors/destructors in LibGUILenny Maiorani
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
2021-08-02LibGUI: Add a simple GUI::PasswordInputDialogAndreas Kling
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. :^)