-
-
Notifications
You must be signed in to change notification settings - Fork 21.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec6a1c0
commit 722d932
Showing
7 changed files
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<class name="EditorToaster" inherits="HBoxContainer" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd"> | ||
<brief_description> | ||
Manages toast notifications within the editor. | ||
</brief_description> | ||
<description> | ||
This object manages the functionality and display of toast notifications within the editor, ensuring timely and informative alerts are presented to users. | ||
[b]Note:[/b] This class shouldn't be instantiated directly. Instead, access the singleton using [method EditorInterface.get_editor_toaster]. | ||
</description> | ||
<tutorials> | ||
</tutorials> | ||
<methods> | ||
<method name="push_toast"> | ||
<return type="void" /> | ||
<param index="0" name="message" type="String" /> | ||
<param index="1" name="severity" type="int" enum="EditorToaster.Severity" default="0" /> | ||
<param index="2" name="tooltip" type="String" default="""" /> | ||
<description> | ||
Pushes a toast notification to the editor for display. | ||
</description> | ||
</method> | ||
</methods> | ||
<constants> | ||
<constant name="SEVERITY_INFO" value="0" enum="Severity"> | ||
Toast will display with an INFO severity. | ||
</constant> | ||
<constant name="SEVERITY_WARNING" value="1" enum="Severity"> | ||
Toast will display with a WARNING severity and have a corresponding color. | ||
</constant> | ||
<constant name="SEVERITY_ERROR" value="2" enum="Severity"> | ||
Toast will display with an ERROR severity and have a corresponding color. | ||
</constant> | ||
</constants> | ||
</class> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters