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:
parent
48f7c28a5c
commit
4755f355c6
3 changed files with 35 additions and 21 deletions
|
@ -36,7 +36,9 @@ public:
|
|||
enum ExecResult {
|
||||
ExecOK = 0,
|
||||
ExecCancel = 1,
|
||||
ExecAborted = 2
|
||||
ExecAborted = 2,
|
||||
ExecYes = 3,
|
||||
ExecNo = 4,
|
||||
};
|
||||
|
||||
virtual ~Dialog() override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue