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
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
|
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
77 78 |
|
exec_button_clicked ¶
exec_button_clicked(checked: bool | None = None) -> None
Source code
71 72 73 74 75 |
|
get_notches ¶
get_notches() -> Notches
Source code
405 406 407 |
|
get_separator ¶
get_separator(horizontal: bool = False) -> QFrame
Source code
318 319 320 321 322 |
|
init_notches ¶
init_notches(main: MainWindow = ...) -> None
Source code
402 403 |
|
on_current_frame_changed ¶
on_current_frame_changed(frame: Frame) -> None
Source code
471 472 |
|
on_current_output_changed ¶
Source code
474 475 |
|
on_toggle ¶
on_toggle(new_state: bool) -> None
Source code
461 462 463 464 465 466 467 468 469 |
|
resize_main_window ¶
resize_main_window(expanding: bool) -> None
Source code
481 482 483 484 485 486 487 488 489 |
|
set_qobject_names ¶
set_qobject_names() -> None
Source code
279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
|
setup_ui ¶
setup_ui() -> None
Source code
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
test_button_clicked ¶
test_button_clicked(checked: bool | None = None) -> None
Source code
67 68 69 |
|
toggle_debug_logging ¶
toggle_debug_logging(checked: bool) -> None
Source code
80 81 82 83 84 85 |
|