Creates a dialog box with the specified title and dimensions. This is the main container for all DCL controls.
The complete dialog definition that can be loaded with (load_dialog).
Creates a slider control that allows the user to select a value within a range by dragging a handle.
The slider control definition to be connected to a dialog.
The current value of the slider, ranging from Min to Max.
Creates a dropdown (popup_list) control that allows the user to select one item from a list of options.
The dropdown control definition to be connected to a dialog.
The selected item index (0-based) from the dropdown list.
The selected item text from the dropdown list.
Creates a checkbox control that allows the user to toggle a boolean value on or off.
The checkbox control definition to be connected to a dialog.
The boolean value of the checkbox (T or nil).
Creates a button control that triggers an action when clicked.
The button control definition to be connected to a dialog.
A signal that is triggered when the button is clicked.
Creates a text field control that allows the user to enter a string value.
The text field control definition to be connected to a dialog.
The text string entered by the user.