toolbar ¶
Classes:
DebugToolbar ¶
DebugToolbar(main: MainWindow)
Bases: AbstractToolbar
Methods:
-
break_button_clicked– -
exec_button_clicked– -
get_notches– -
get_separator– -
init_notches– -
on_current_frame_changed– -
on_current_output_changed– -
on_toggle– -
resize_main_window– -
set_qobject_names– -
setup_ui– -
test_button_clicked– -
toggle_debug_logging–
Attributes:
-
class_storable_attrs– -
debug_logging_enabled– -
filter– -
hlayout(HBoxLayout) – -
is_notches_visible(bool) – -
main(MainWindow) – -
name(str) – -
notches_changed– -
num_keys– -
settings(DebugSettings) – -
storable_attrs– -
toggle_button– -
visibility– -
vlayout(VBoxLayout) –
Source code in vspreview/toolbars/debug/toolbar.py
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |
class_storable_attrs class-attribute instance-attribute ¶
num_keys class-attribute instance-attribute ¶
num_keys = [
Key_1,
Key_2,
Key_3,
Key_4,
Key_5,
Key_6,
Key_7,
Key_8,
Key_9,
Key_0,
]
toggle_button instance-attribute ¶
toggle_button = PushButton(name, self, checkable=True, clicked=on_toggle)
break_button_clicked ¶
break_button_clicked(checked: bool | None = None) -> None
Source code in vspreview/toolbars/debug/toolbar.py
83 84 | |
exec_button_clicked ¶
exec_button_clicked(checked: bool | None = None) -> None
Source code in vspreview/toolbars/debug/toolbar.py
77 78 79 80 81 | |
get_notches ¶
get_notches() -> Notches
Source code in vspreview/core/abstracts.py
405 406 407 | |
get_separator ¶
get_separator(horizontal: bool = False) -> QFrame
Source code in vspreview/core/abstracts.py
318 319 320 321 322 | |
init_notches ¶
init_notches(main: MainWindow = ...) -> None
Source code in vspreview/core/abstracts.py
402 403 | |
on_current_frame_changed ¶
on_current_frame_changed(frame: Frame) -> None
Source code in vspreview/core/abstracts.py
471 472 | |
on_current_output_changed ¶
Source code in vspreview/core/abstracts.py
474 475 | |
on_toggle ¶
on_toggle(new_state: bool) -> None
Source code in vspreview/core/abstracts.py
461 462 463 464 465 466 467 468 469 | |
resize_main_window ¶
resize_main_window(expanding: bool) -> None
Source code in vspreview/core/abstracts.py
481 482 483 484 485 486 487 488 489 | |
set_qobject_names ¶
set_qobject_names() -> None
Source code in vspreview/core/abstracts.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 | |
setup_ui ¶
setup_ui() -> None
Source code in vspreview/toolbars/debug/toolbar.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | |
test_button_clicked ¶
test_button_clicked(checked: bool | None = None) -> None
Source code in vspreview/toolbars/debug/toolbar.py
73 74 75 | |
toggle_debug_logging ¶
toggle_debug_logging(checked: bool) -> None
Source code in vspreview/toolbars/debug/toolbar.py
86 87 88 89 90 91 | |