summaryrefslogtreecommitdiffstats
path: root/scene/gui/popup.h
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2020-03-19 23:32:09 -0300
committerJuan Linietsky <reduzio@gmail.com>2020-03-26 15:49:44 +0100
commitb3080bc2f4d7bc5c15b3a0ff7b67690c4677577e (patch)
tree0487e2d739133015048b1e0dd1fd9abaf7bbb18a /scene/gui/popup.h
parent09ba290364aaa5b54528e82144ec0a40e10b497b (diff)
downloadredot-engine-b3080bc2f4d7bc5c15b3a0ff7b67690c4677577e.tar.gz
Popups have also been converted to windows
Controls using the old modal API have been replaced to use popups.
Diffstat (limited to 'scene/gui/popup.h')
-rw-r--r--scene/gui/popup.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/scene/gui/popup.h b/scene/gui/popup.h
index 20b355bc18..6cd2b4028f 100644
--- a/scene/gui/popup.h
+++ b/scene/gui/popup.h
@@ -41,9 +41,11 @@ class Popup : public Window {
void _input_from_window(const Ref<InputEvent> &p_event);
void _parent_focused();
- void _close_pressed();
protected:
+ void _close_pressed();
+ virtual Rect2i _popup_adjust_rect() const;
+
void _notification(int p_what);
static void _bind_methods();