summaryrefslogtreecommitdiffstats
path: root/scene/gui/popup.h
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2024-05-01 13:39:54 +0200
committerPedro J. Estébanez <pedrojrulez@gmail.com>2024-05-07 14:29:35 +0200
commiteb2bd41fb83cf22397a9b576d0e6b3a641eb2d03 (patch)
treeef7a9d832f82d39ff06e34304010494011010b40 /scene/gui/popup.h
parent259d576f6ead7decf74bb60126130f88af05f1bb (diff)
downloadredot-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.h12
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();
};