diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-04-20 15:13:21 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-05-15 19:49:28 +0200 |
commit | 17f492fb8223d80ed94a55d3df313579b841da97 (patch) | |
tree | 2ee90a95847d474dae583b5cebacd97d126e2d13 /editor/editor_interface.cpp | |
parent | 5c653c27cdf779e1e70a16ec9514435537a01779 (diff) | |
download | redot-engine-17f492fb8223d80ed94a55d3df313579b841da97.tar.gz |
Expose dialog parent-and-popup logic to the API
Diffstat (limited to 'editor/editor_interface.cpp')
-rw-r--r-- | editor/editor_interface.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/editor/editor_interface.cpp b/editor/editor_interface.cpp index 167a5a3dba..50833c3a09 100644 --- a/editor/editor_interface.cpp +++ b/editor/editor_interface.cpp @@ -42,6 +42,7 @@ #include "main/main.h" #include "scene/gui/box_container.h" #include "scene/gui/control.h" +#include "scene/main/window.h" EditorInterface *EditorInterface::singleton = nullptr; @@ -221,6 +222,22 @@ float EditorInterface::get_editor_scale() const { return EDSCALE; } +void EditorInterface::popup_dialog(Window *p_dialog, const Rect2i &p_screen_rect) { + p_dialog->popup_exclusive(EditorNode::get_singleton(), p_screen_rect); +} + +void EditorInterface::popup_dialog_centered(Window *p_dialog, const Size2i &p_minsize) { + p_dialog->popup_exclusive_centered(EditorNode::get_singleton(), p_minsize); +} + +void EditorInterface::popup_dialog_centered_ratio(Window *p_dialog, float p_ratio) { + p_dialog->popup_exclusive_centered_ratio(EditorNode::get_singleton(), p_ratio); +} + +void EditorInterface::popup_dialog_centered_clamped(Window *p_dialog, const Size2i &p_size, float p_fallback_ratio) { + p_dialog->popup_exclusive_centered_clamped(EditorNode::get_singleton(), p_size, p_fallback_ratio); +} + // Editor docks. FileSystemDock *EditorInterface::get_file_system_dock() const { @@ -380,6 +397,11 @@ void EditorInterface::_bind_methods() { ClassDB::bind_method(D_METHOD("get_editor_scale"), &EditorInterface::get_editor_scale); + ClassDB::bind_method(D_METHOD("popup_dialog", "dialog", "rect"), &EditorInterface::popup_dialog, DEFVAL(Rect2i())); + ClassDB::bind_method(D_METHOD("popup_dialog_centered", "dialog", "minsize"), &EditorInterface::popup_dialog_centered, DEFVAL(Size2i())); + ClassDB::bind_method(D_METHOD("popup_dialog_centered_ratio", "dialog", "ratio"), &EditorInterface::popup_dialog_centered_ratio, DEFVAL(0.8)); + ClassDB::bind_method(D_METHOD("popup_dialog_centered_clamped", "dialog", "minsize", "fallback_ratio"), &EditorInterface::popup_dialog_centered_clamped, DEFVAL(Size2i()), DEFVAL(0.75)); + ADD_PROPERTY(PropertyInfo(Variant::BOOL, "distraction_free_mode"), "set_distraction_free_mode", "is_distraction_free_mode_enabled"); // Editor docks. |