seq
4.0.0-pre3
|
Public Member Functions | |
def | __attrs_post_init__ (self) |
setup object. More... | |
def | __call__ (self, resume=False) |
Executes node action. More... | |
def | checked (self) |
Release the checkbox allowing the Sequencer script to continue its execution. More... | |
![]() | |
def | make_sequence (self, parent_tpl=None) |
Not much to do here. More... | |
![]() | |
def | make_sequence (self) |
does nothing More... | |
def | make_task (self, node, input_list, resume) |
Creates the task object that executes the node. More... | |
def | pause (self) |
def | resume (self) |
Static Public Member Functions | |
def | create (msg, **kw) |
Checkbox node constructor. More... | |
Public Attributes | |
name | |
state | |
![]() | |
name | |
id | |
description | |
runtime_flags | |
in_error | |
t_start | |
skip | |
t_end | |
result | |
exception | |
Static Public Attributes | |
f = attr.ib(default=None, init=False) | |
checkmark | |
![]() | |
f = attr.ib(default=None, repr=False) | |
parent_tpl = attr.ib(default=None, repr=False) | |
current_node = cv.ContextVar("current_node", default=None) | |
![]() | |
id = attr.ib(default=None, kw_only=True) | |
name = attr.ib(default=None, kw_only=True) | |
runtime_flags = attr.ib(default=0, kw_only=True) | |
deps = attr.ib(default=attr.Factory(list), repr=False, kw_only=True, init=False) | |
description = attr.ib(default="", kw_only=True) | |
exception = attr.ib(init=False, default=None, repr=False) | |
can_skip = attr.ib(default=True, init=False) | |
hide = attr.ib(default=False, init=False) | |
t_start = attr.ib(init=False, default=None, repr=False) | |
t_end = attr.ib(init=False, default=None, repr=False) | |
running_checkpoint | |
serial_number = attr.ib(init=False) | |
Additional Inherited Members | |
![]() | |
context = property | |
Get context from the running Sequence. More... | |
state = property | |
full_state = property | |
![]() | |
result = property | |
Node's result. More... | |
end_node = property | |
start_node = property | |
state = property | |
Gets the node state. More... | |
full_state = property | |
Gets the node state. More... | |
in_error = property | |
skip = property | |
Checkbox ctor.
Checkbox node waits for user to confirm some condition.
msg | Checkbox message |
id | Unique id. If not provided an unique identifier is assigned. |
name | Node name. If not provided a name is assigned. |
def lib.nodes.checkbox.Checkbox.__attrs_post_init__ | ( | self | ) |
def lib.nodes.checkbox.Checkbox.__call__ | ( | self, | |
resume = False |
|||
) |
Executes node action.
If the action is a coroutine a task is created and passed to the asyncio loop for execution.
Reimplemented from lib.nodes.action.Action.
def lib.nodes.checkbox.Checkbox.checked | ( | self | ) |
Release the checkbox allowing the Sequencer script to continue its execution.
|
static |
Checkbox node constructor.
msg | Message to display along with the checkbox. *kw: standard sequencer node keywords. |
id | Node id |
name | node name |
|
static |
|
static |
lib.nodes.checkbox.Checkbox.name |
lib.nodes.checkbox.Checkbox.state |