1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 20:58:11 +00:00

LibGUI: Add Yes/No and Yes/No/Cancel MessageBoxes

This commit is contained in:
thatlittlegit 2020-02-16 23:46:02 -05:00 committed by Andreas Kling
parent 48f7c28a5c
commit 4755f355c6
3 changed files with 35 additions and 21 deletions

View file

@ -36,7 +36,9 @@ public:
enum ExecResult {
ExecOK = 0,
ExecCancel = 1,
ExecAborted = 2
ExecAborted = 2,
ExecYes = 3,
ExecNo = 4,
};
virtual ~Dialog() override;