diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-05-01 13:39:54 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2024-05-07 14:29:35 +0200 |
commit | eb2bd41fb83cf22397a9b576d0e6b3a641eb2d03 (patch) | |
tree | ef7a9d832f82d39ff06e34304010494011010b40 /scene/gui/popup.h | |
parent | 259d576f6ead7decf74bb60126130f88af05f1bb (diff) | |
download | redot-engine-eb2bd41fb83cf22397a9b576d0e6b3a641eb2d03.tar.gz |
Make handling of rename line-edit popups more robust
Diffstat (limited to 'scene/gui/popup.h')
-rw-r--r-- | scene/gui/popup.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scene/gui/popup.h b/scene/gui/popup.h index 48818686f7..69a81ad98c 100644 --- a/scene/gui/popup.h +++ b/scene/gui/popup.h @@ -43,6 +43,16 @@ class Popup : public Window { LocalVector<Window *> visible_parents; bool popped_up = false; +public: + enum HideReason { + HIDE_REASON_NONE, + HIDE_REASON_CANCELED, // E.g., because of rupture of UI flow (app unfocused). Includes closed programmatically. + HIDE_REASON_UNFOCUSED, // E.g., user clicked outside. + }; + +private: + HideReason hide_reason = HIDE_REASON_NONE; + void _initialize_visible_parents(); void _deinitialize_visible_parents(); @@ -60,6 +70,8 @@ protected: virtual void _post_popup() override; public: + HideReason get_hide_reason() const { return hide_reason; } + Popup(); ~Popup(); }; |