Source code for simvx.editor.testing.demo_steps.handlers

"""Editor demo-step handlers grouped by interaction domain."""

from .inspector import (
    _handle_inspector_edit,
    _handle_inspector_rename,
    _handle_inspector_set_anchor_preset,
    _handle_inspector_set_colour,
)
from .menu import (
    _handle_click_add_button,
    _handle_click_bottom_tab,
    _handle_click_inspector_button,
    _handle_click_menu,
    _handle_click_toolbar,
    _handle_dialog_select,
    _handle_new_scene_select,
)
from .nodes import (
    _handle_add_node,
    _handle_assert_config,
    _handle_assert_property,
    _handle_assert_tree,
    _handle_click_tree_item,
    _handle_configure_node,
    _handle_place_node,
    _handle_play_scene,
    _handle_rename_node,
    _handle_select_node,
    _handle_set_property,
    _handle_set_script,
    _handle_stop_scene,
    _handle_switch_viewport,
)
from .viewport import (
    _handle_click_code_caret,
    _handle_click_game_node,
    _handle_click_viewport3d,
    _handle_double_click_file,
    _handle_drag_gizmo_axis,
    _handle_paste_in_editor,
)

__all__ = [
    "_handle_add_node",
    "_handle_assert_config",
    "_handle_assert_property",
    "_handle_assert_tree",
    "_handle_click_add_button",
    "_handle_click_bottom_tab",
    "_handle_click_code_caret",
    "_handle_click_game_node",
    "_handle_click_inspector_button",
    "_handle_click_menu",
    "_handle_click_toolbar",
    "_handle_click_tree_item",
    "_handle_click_viewport3d",
    "_handle_configure_node",
    "_handle_dialog_select",
    "_handle_double_click_file",
    "_handle_drag_gizmo_axis",
    "_handle_inspector_edit",
    "_handle_inspector_rename",
    "_handle_inspector_set_anchor_preset",
    "_handle_inspector_set_colour",
    "_handle_new_scene_select",
    "_handle_paste_in_editor",
    "_handle_place_node",
    "_handle_play_scene",
    "_handle_rename_node",
    "_handle_select_node",
    "_handle_set_property",
    "_handle_set_script",
    "_handle_stop_scene",
    "_handle_switch_viewport",
]