Struct AcceptDialog

Base dialog for user notification.

struct AcceptDialog ;

This dialog is useful for small notifications to the user about an event. It can only be accepted or closed, with the same result.

Properties

NameTypeDescription
dialogAutowrap[get, set] boolSets autowrapping for the text in the dialog.
dialogHideOnOk[get, set] boolIf true, the dialog is hidden when the OK button is pressed. You can set it to false if you want to do e.g. input validation when receiving the confirmed signal, and handle hiding the dialog in your own logic. Note: Some nodes derived from this class can have a different default value, and potentially their own built-in logic overriding this setting. For example FileDialog defaults to false, and has its own input validation code that is called when you press OK, which eventually hides the dialog if the input is valid. As such, this property can't be used in FileDialog to disable hiding the dialog when pressing OK.
dialogText[get, set] StringThe text displayed by the dialog.

Methods

NameDescription
_builtinTextEntered
_customAction
_ok
addButton Adds a button with label text and a custom action to the dialog and returns the created button. action will be passed to the customAction signal when pressed. If true, right will place the button to the right of any sibling buttons.
addCancel Adds a button with label name and a cancel action to the dialog and returns the created button.
getHideOnOk
getLabel Returns the label used for built-in text.
getOk Returns the OK Button instance.
getText
hasAutowrap
registerTextEnter Registers a LineEdit in the dialog. When the enter key is pressed, the dialog will be accepted.
setAutowrap
setHideOnOk
setText