summaryrefslogtreecommitdiffstats
path: root/editor/gui
diff options
context:
space:
mode:
authorJayden Sipe <jayden.sipe@gmail.com>2024-10-30 15:33:40 -0400
committerJayden Sipe <jayden.sipe@gmail.com>2024-11-11 19:39:33 -0500
commit722d9324661760ccc7528716b42badafeda09171 (patch)
treec9a3a8ea252b55e9c8cfc6cb745f10fe72e8e741 /editor/gui
parentec6a1c0e792ac8be44990749800a4654a293b9ee (diff)
downloadredot-engine-722d9324661760ccc7528716b42badafeda09171.tar.gz
Expose toast notification methods
Diffstat (limited to 'editor/gui')
-rw-r--r--editor/gui/editor_toaster.cpp8
-rw-r--r--editor/gui/editor_toaster.h1
2 files changed, 9 insertions, 0 deletions
diff --git a/editor/gui/editor_toaster.cpp b/editor/gui/editor_toaster.cpp
index ffea1736a3..ff425ba65e 100644
--- a/editor/gui/editor_toaster.cpp
+++ b/editor/gui/editor_toaster.cpp
@@ -506,6 +506,14 @@ void EditorToaster::instant_close(Control *p_control) {
p_control->set_modulate(Color(1, 1, 1, 0));
}
+void EditorToaster::_bind_methods() {
+ ClassDB::bind_method(D_METHOD("push_toast", "message", "severity", "tooltip"), &EditorToaster::_popup_str, DEFVAL(EditorToaster::SEVERITY_INFO), DEFVAL(String()));
+
+ BIND_ENUM_CONSTANT(SEVERITY_INFO);
+ BIND_ENUM_CONSTANT(SEVERITY_WARNING);
+ BIND_ENUM_CONSTANT(SEVERITY_ERROR);
+}
+
EditorToaster *EditorToaster::get_singleton() {
return singleton;
}
diff --git a/editor/gui/editor_toaster.h b/editor/gui/editor_toaster.h
index 6fcc2ce3e9..0d0080945e 100644
--- a/editor/gui/editor_toaster.h
+++ b/editor/gui/editor_toaster.h
@@ -105,6 +105,7 @@ private:
void _toast_theme_changed(Control *p_control);
protected:
+ static void _bind_methods();
static EditorToaster *singleton;
void _notification(int p_what);