fake-bpy-module 20250612__py3-none-any.whl → 20260118__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_calltip/__init__.pyi +0 -13
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_import/__init__.pyi +0 -5
- {bl_console_utils → _bl_console_utils}/autocomplete/complete_namespace/__init__.pyi +0 -11
- {bl_console_utils → _bl_console_utils}/autocomplete/intellisense/__init__.pyi +0 -10
- {bl_i18n_utils → _bl_i18n_utils}/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/bl_extract_messages/__init__.pyi +1 -0
- {bl_i18n_utils → _bl_i18n_utils}/settings/__init__.pyi +3 -1
- {bl_i18n_utils → _bl_i18n_utils}/utils/__init__.pyi +4 -4
- _bl_i18n_utils/utils_spell_check/__init__.pyi +22 -0
- {bl_ui_utils → _bl_ui_utils}/__init__.pyi +1 -0
- _blendfile_header/__init__.pyi +48 -0
- _bpy_internal/__init__.pyi +4 -1
- _bpy_internal/assets/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/__init__.pyi +5 -0
- _bpy_internal/assets/remote_library_listing/blender_asset_library_openapi/__init__.pyi +13 -0
- _bpy_internal/disk_file_hash_service/__init__.pyi +19 -0
- _bpy_internal/disk_file_hash_service/backend_sqlite/__init__.pyi +48 -0
- _bpy_internal/disk_file_hash_service/hash_service/__init__.pyi +64 -0
- _bpy_internal/disk_file_hash_service/types/__init__.pyi +53 -0
- _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
- _bpy_internal/filesystem/__init__.pyi +5 -0
- _bpy_internal/filesystem/locking/__init__.pyi +28 -0
- _bpy_internal/grease_pencil/stroke/__init__.pyi +2 -2
- _bpy_internal/platform/__init__.pyi +5 -0
- _bpy_types/__init__.pyi +1592 -0
- {keyingsets_utils → _keyingsets_utils}/__init__.pyi +2 -0
- {rna_info → _rna_info}/__init__.pyi +4 -2
- addon_utils/__init__.pyi +0 -13
- aud/__init__.pyi +122 -145
- bl_app_templates_system/Storyboarding/__init__.pyi +11 -0
- bl_app_templates_system/__init__.pyi +5 -0
- bl_app_templates_system/py.typed +0 -0
- bl_math/__init__.pyi +3 -13
- bl_operators/__init__.pyi +1 -0
- bl_operators/add_mesh_torus/__init__.pyi +2 -3
- bl_operators/anim/__init__.pyi +62 -38
- bl_operators/assets/__init__.pyi +4 -9
- bl_operators/bone_selection_sets/__init__.pyi +15 -42
- bl_operators/clip/__init__.pyi +12 -31
- bl_operators/connect_to_output/__init__.pyi +2 -3
- bl_operators/console/__init__.pyi +6 -15
- bl_operators/constraint/__init__.pyi +6 -13
- bl_operators/copy_global_transform/__init__.pyi +261 -0
- bl_operators/file/__init__.pyi +6 -11
- bl_operators/freestyle/__init__.pyi +5 -12
- bl_operators/geometry_nodes/__init__.pyi +5 -12
- bl_operators/grease_pencil/__init__.pyi +2 -3
- bl_operators/image/__init__.pyi +6 -15
- bl_operators/image_as_planes/__init__.pyi +3 -10
- bl_operators/mesh/__init__.pyi +3 -49
- bl_operators/node/__init__.pyi +294 -73
- bl_operators/object/__init__.pyi +17 -53
- bl_operators/object_align/__init__.pyi +2 -3
- bl_operators/object_quick_effects/__init__.pyi +5 -12
- bl_operators/object_randomize_transform/__init__.pyi +2 -3
- bl_operators/presets/__init__.pyi +27 -76
- bl_operators/rigidbody/__init__.pyi +4 -9
- bl_operators/screen_play_rendered_anim/__init__.pyi +2 -3
- bl_operators/sequencer/__init__.pyi +12 -27
- bl_operators/spreadsheet/__init__.pyi +2 -3
- bl_operators/userpref/__init__.pyi +26 -75
- bl_operators/uvcalc_follow_active/__init__.pyi +3 -4
- bl_operators/uvcalc_lightmap/__init__.pyi +3 -4
- bl_operators/uvcalc_transform/__init__.pyi +26 -16
- bl_operators/vertexpaint_dirt/__init__.pyi +2 -3
- bl_operators/view3d/__init__.pyi +9 -24
- bl_operators/wm/__init__.pyi +48 -139
- bl_operators/world/__init__.pyi +3 -4
- bl_ui/__init__.pyi +7 -7
- bl_ui/anim/__init__.pyi +2 -3
- bl_ui/asset_shelf/__init__.pyi +2 -3
- bl_ui/generic_ui_list/__init__.pyi +4 -19
- bl_ui/node_add_menu/__init__.pyi +263 -7
- bl_ui/node_add_menu_compositor/__init__.pyi +96 -79
- bl_ui/node_add_menu_geometry/__init__.pyi +309 -270
- bl_ui/node_add_menu_shader/__init__.pyi +49 -49
- bl_ui/node_add_menu_texture/__init__.pyi +17 -62
- bl_ui/properties_collection/__init__.pyi +9 -22
- bl_ui/properties_constraint/__init__.pyi +129 -282
- bl_ui/properties_data_armature/__init__.pyi +22 -57
- bl_ui/properties_data_bone/__init__.pyi +12 -31
- bl_ui/properties_data_camera/__init__.pyi +18 -47
- bl_ui/properties_data_curve/__init__.pyi +18 -47
- bl_ui/properties_data_curves/__init__.pyi +11 -26
- bl_ui/properties_data_empty/__init__.pyi +3 -6
- bl_ui/properties_data_grease_pencil/__init__.pyi +23 -62
- bl_ui/properties_data_lattice/__init__.pyi +7 -14
- bl_ui/properties_data_light/__init__.pyi +13 -32
- bl_ui/properties_data_lightprobe/__init__.pyi +16 -43
- bl_ui/properties_data_mesh/__init__.pyi +47 -62
- bl_ui/properties_data_metaball/__init__.pyi +9 -20
- bl_ui/properties_data_modifier/__init__.pyi +22 -28
- bl_ui/properties_data_pointcloud/__init__.pyi +8 -19
- bl_ui/properties_data_shaderfx/__init__.pyi +2 -3
- bl_ui/properties_data_speaker/__init__.pyi +9 -20
- bl_ui/properties_data_volume/__init__.pyi +12 -29
- bl_ui/properties_freestyle/__init__.pyi +27 -76
- bl_ui/properties_grease_pencil_common/__init__.pyi +10 -168
- bl_ui/properties_mask_common/__init__.pyi +8 -21
- bl_ui/properties_material/__init__.pyi +26 -86
- bl_ui/properties_material_gpencil/__init__.pyi +36 -57
- bl_ui/properties_object/__init__.pyi +59 -65
- bl_ui/properties_output/__init__.pyi +21 -60
- bl_ui/properties_paint_common/__init__.pyi +30 -22
- bl_ui/properties_particle/__init__.pyi +58 -161
- bl_ui/properties_physics_cloth/__init__.pyi +15 -42
- bl_ui/properties_physics_common/__init__.pyi +2 -3
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +23 -66
- bl_ui/properties_physics_field/__init__.pyi +11 -30
- bl_ui/properties_physics_fluid/__init__.pyi +29 -84
- bl_ui/properties_physics_geometry_nodes/__init__.pyi +2 -3
- bl_ui/properties_physics_rigidbody/__init__.pyi +9 -24
- bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +14 -39
- bl_ui/properties_physics_softbody/__init__.pyi +16 -45
- bl_ui/properties_render/__init__.pyi +139 -197
- bl_ui/properties_scene/__init__.pyi +46 -50
- bl_ui/properties_strip/__init__.pyi +744 -0
- bl_ui/properties_strip_modifier/__init__.pyi +45 -0
- bl_ui/properties_texture/__init__.pyi +30 -83
- bl_ui/properties_view_layer/__init__.pyi +84 -39
- bl_ui/properties_workspace/__init__.pyi +6 -13
- bl_ui/properties_world/__init__.pyi +14 -35
- bl_ui/space_clip/__init__.pyi +150 -231
- bl_ui/space_console/__init__.pyi +7 -18
- bl_ui/space_dopesheet/__init__.pyi +143 -100
- bl_ui/space_filebrowser/__init__.pyi +33 -90
- bl_ui/space_graph/__init__.pyi +48 -85
- bl_ui/space_image/__init__.pyi +111 -229
- bl_ui/space_info/__init__.pyi +7 -18
- bl_ui/space_nla/__init__.pyi +44 -73
- bl_ui/space_node/__init__.pyi +161 -123
- bl_ui/space_outliner/__init__.pyi +16 -45
- bl_ui/space_properties/__init__.pyi +34 -10
- bl_ui/space_sequencer/__init__.pyi +164 -901
- bl_ui/space_spreadsheet/__init__.pyi +4 -9
- bl_ui/space_statusbar/__init__.pyi +2 -3
- bl_ui/space_text/__init__.pyi +17 -48
- bl_ui/space_time/__init__.pyi +25 -71
- bl_ui/space_toolsystem_common/__init__.pyi +2 -2
- bl_ui/space_toolsystem_toolbar/__init__.pyi +30 -7
- bl_ui/space_topbar/__init__.pyi +35 -79
- bl_ui/space_userpref/__init__.pyi +185 -321
- bl_ui/space_view3d/__init__.pyi +337 -817
- bl_ui/space_view3d_sidebar/__init__.pyi +127 -0
- bl_ui/space_view3d_toolbar/__init__.pyi +110 -880
- bl_ui/utils/__init__.pyi +0 -17
- blend_render_info/__init__.pyi +1 -0
- blf/__init__.pyi +8 -54
- bmesh/__init__.pyi +2 -9
- bmesh/geometry/__init__.pyi +1 -4
- bmesh/ops/__init__.pyi +125 -508
- bmesh/types/__init__.pyi +318 -664
- bmesh/utils/__init__.pyi +17 -43
- bpy/__init__.pyi +1 -1
- bpy/app/__init__.pyi +93 -88
- bpy/app/handlers/__init__.pyi +19 -19
- bpy/app/icons/__init__.pyi +0 -6
- bpy/app/timers/__init__.pyi +2 -7
- bpy/app/translations/__init__.pyi +8 -23
- bpy/msgbus/__init__.pyi +4 -6
- bpy/ops/action/__init__.pyi +68 -199
- bpy/ops/anim/__init__.pyi +142 -299
- bpy/ops/armature/__init__.pyi +78 -209
- bpy/ops/asset/__init__.pyi +46 -108
- bpy/ops/boid/__init__.pyi +28 -45
- bpy/ops/brush/__init__.pyi +13 -108
- bpy/ops/buttons/__init__.pyi +16 -75
- bpy/ops/cachefile/__init__.pyi +8 -65
- bpy/ops/camera/__init__.pyi +0 -11
- bpy/ops/clip/__init__.pyi +173 -471
- bpy/ops/cloth/__init__.pyi +0 -5
- bpy/ops/collection/__init__.pyi +23 -36
- bpy/ops/console/__init__.pyi +40 -98
- bpy/ops/constraint/__init__.pyi +14 -85
- bpy/ops/curve/__init__.pyi +94 -277
- bpy/ops/curves/__init__.pyi +119 -166
- bpy/ops/cycles/__init__.pyi +4 -15
- bpy/ops/dpaint/__init__.pyi +14 -24
- bpy/ops/ed/__init__.pyi +44 -92
- bpy/ops/export_anim/__init__.pyi +2 -10
- bpy/ops/export_scene/__init__.pyi +16 -170
- bpy/ops/extensions/__init__.pyi +60 -165
- bpy/ops/file/__init__.pyi +110 -246
- bpy/ops/fluid/__init__.pyi +52 -83
- bpy/ops/font/__init__.pyi +40 -144
- bpy/ops/geometry/__init__.pyi +12 -127
- bpy/ops/gizmogroup/__init__.pyi +4 -13
- bpy/ops/gpencil/__init__.pyi +22 -54
- bpy/ops/graph/__init__.pyi +92 -343
- bpy/ops/grease_pencil/__init__.pyi +218 -550
- bpy/ops/image/__init__.pyi +85 -435
- bpy/ops/import_anim/__init__.pyi +3 -17
- bpy/ops/import_curve/__init__.pyi +2 -5
- bpy/ops/import_scene/__init__.pyi +15 -49
- bpy/ops/info/__init__.pyi +16 -39
- bpy/ops/lattice/__init__.pyi +12 -36
- bpy/ops/marker/__init__.pyi +12 -51
- bpy/ops/mask/__init__.pyi +68 -193
- bpy/ops/material/__init__.pyi +18 -18
- bpy/ops/mball/__init__.pyi +4 -31
- bpy/ops/mesh/__init__.pyi +140 -967
- bpy/ops/nla/__init__.pyi +87 -206
- bpy/ops/node/__init__.pyi +714 -744
- bpy/ops/object/__init__.pyi +461 -1341
- bpy/ops/outliner/__init__.pyi +192 -376
- bpy/ops/paint/__init__.pyi +94 -319
- bpy/ops/paintcurve/__init__.pyi +20 -40
- bpy/ops/palette/__init__.pyi +14 -30
- bpy/ops/particle/__init__.pyi +86 -184
- bpy/ops/pointcloud/__init__.pyi +12 -38
- bpy/ops/pose/__init__.pyi +108 -261
- bpy/ops/poselib/__init__.pyi +32 -67
- bpy/ops/preferences/__init__.pyi +37 -187
- bpy/ops/ptcache/__init__.pyi +22 -36
- bpy/ops/render/__init__.pyi +20 -72
- bpy/ops/rigidbody/__init__.pyi +25 -63
- bpy/ops/scene/__init__.pyi +122 -181
- bpy/ops/screen/__init__.pyi +93 -221
- bpy/ops/script/__init__.pyi +4 -13
- bpy/ops/sculpt/__init__.pyi +69 -324
- bpy/ops/sculpt_curves/__init__.pyi +10 -23
- bpy/ops/sequencer/__init__.pyi +410 -730
- bpy/ops/sound/__init__.pyi +16 -114
- bpy/ops/spreadsheet/__init__.pyi +20 -37
- bpy/ops/surface/__init__.pyi +0 -48
- bpy/ops/text/__init__.pyi +112 -250
- bpy/ops/text_editor/__init__.pyi +0 -5
- bpy/ops/texture/__init__.pyi +14 -21
- bpy/ops/transform/__init__.pyi +18 -386
- bpy/ops/ui/__init__.pyi +117 -188
- bpy/ops/uilist/__init__.pyi +0 -13
- bpy/ops/uv/__init__.pyi +238 -305
- bpy/ops/view2d/__init__.pyi +16 -76
- bpy/ops/view3d/__init__.pyi +153 -377
- bpy/ops/wm/__init__.pyi +277 -1397
- bpy/ops/workspace/__init__.pyi +32 -39
- bpy/ops/world/__init__.pyi +10 -12
- bpy/path/__init__.pyi +1 -35
- bpy/props/__init__.pyi +347 -218
- bpy/stub_internal/rna_enums/__init__.pyi +142 -108
- bpy/types/__init__.pyi +77367 -101305
- bpy/utils/__init__.pyi +11 -82
- bpy/utils/previews/__init__.pyi +2 -11
- bpy/utils/units/__init__.pyi +5 -15
- bpy_extras/anim_utils/__init__.pyi +24 -16
- bpy_extras/bmesh_utils/__init__.pyi +0 -1
- bpy_extras/id_map_utils/__init__.pyi +14 -6
- bpy_extras/image_utils/__init__.pyi +2 -11
- bpy_extras/io_utils/__init__.pyi +8 -27
- bpy_extras/keyconfig_utils/__init__.pyi +1 -1
- bpy_extras/mesh_utils/__init__.pyi +0 -12
- bpy_extras/node_shader_utils/__init__.pyi +1 -9
- bpy_extras/object_utils/__init__.pyi +1 -15
- bpy_extras/view3d_utils/__init__.pyi +0 -18
- bpy_extras/wm_utils/progress_report/__init__.pyi +1 -1
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/METADATA +4 -1
- fake_bpy_module-20260118.dist-info/RECORD +385 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/top_level.txt +17 -16
- freestyle/chainingiterators/__init__.pyi +5 -27
- freestyle/functions/__init__.pyi +0 -139
- freestyle/predicates/__init__.pyi +2 -53
- freestyle/shaders/__init__.pyi +15 -81
- freestyle/types/__init__.pyi +159 -799
- freestyle/utils/ContextFunctions/__init__.pyi +0 -23
- freestyle/utils/__init__.pyi +5 -11
- gpu/capabilities/__init__.pyi +0 -21
- gpu/matrix/__init__.pyi +1 -10
- gpu/platform/__init__.pyi +2 -7
- gpu/shader/__init__.pyi +26 -9
- gpu/state/__init__.pyi +60 -39
- gpu/texture/__init__.pyi +3 -5
- gpu/types/__init__.pyi +116 -184
- gpu_extras/batch/__init__.pyi +1 -5
- gpu_extras/presets/__init__.pyi +6 -8
- idprop/types/__init__.pyi +6 -6
- imbuf/__init__.pyi +3 -10
- imbuf/types/__init__.pyi +7 -21
- keyingsets_builtins/__init__.pyi +24 -67
- mathutils/__init__.pyi +241 -2207
- mathutils/bvhtree/__init__.pyi +18 -26
- mathutils/geometry/__init__.pyi +82 -132
- mathutils/interpolate/__init__.pyi +6 -5
- mathutils/kdtree/__init__.pyi +1 -11
- mathutils/noise/__init__.pyi +61 -106
- rna_prop_ui/__init__.pyi +1 -1
- bgl/__init__.pyi +0 -4256
- bpy_types/__init__.pyi +0 -30
- fake_bpy_module-20250612.dist-info/RECORD +0 -367
- {animsys_refactor → _animsys_refactor}/__init__.pyi +0 -0
- {animsys_refactor → _animsys_refactor}/py.typed +0 -0
- {bl_console_utils → _bl_console_utils}/__init__.pyi +0 -0
- {bl_console_utils → _bl_console_utils}/autocomplete/__init__.pyi +0 -0
- {bgl → _bl_console_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/merge_po/__init__.pyi +0 -0
- {bl_console_utils → _bl_i18n_utils}/py.typed +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_cli/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_languages_menu/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_i18n_utils}/utils_rtl/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/__init__.pyi +0 -0
- {bl_previews_utils → _bl_previews_utils}/bl_previews_render/__init__.pyi +0 -0
- {bl_i18n_utils → _bl_previews_utils}/py.typed +0 -0
- {bl_rna_utils → _bl_rna_utils}/__init__.pyi +0 -0
- {bl_rna_utils → _bl_rna_utils}/data_path/__init__.pyi +0 -0
- {bl_previews_utils → _bl_rna_utils}/py.typed +0 -0
- {bl_text_utils → _bl_text_utils}/__init__.pyi +0 -0
- {bl_text_utils → _bl_text_utils}/external_editor/__init__.pyi +0 -0
- {bl_rna_utils → _bl_text_utils}/py.typed +0 -0
- {bl_ui_utils → _bl_ui_utils}/layout/__init__.pyi +0 -0
- {bl_text_utils → _bl_ui_utils}/py.typed +0 -0
- {bl_ui_utils → _blendfile_header}/py.typed +0 -0
- /_bpy_internal/{freedesktop → platform/freedesktop}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/__init__.pyi +0 -0
- {bpy_restrict_state → _bpy_restrict_state}/py.typed +0 -0
- {bpy_types → _bpy_types}/py.typed +0 -0
- {console_python → _console_python}/__init__.pyi +0 -0
- {console_python → _console_python}/py.typed +0 -0
- {console_shell → _console_shell}/__init__.pyi +0 -0
- {console_shell → _console_shell}/py.typed +0 -0
- {graphviz_export → _graphviz_export}/__init__.pyi +0 -0
- {graphviz_export → _graphviz_export}/py.typed +0 -0
- {keyingsets_utils → _keyingsets_utils}/py.typed +0 -0
- {rna_info → _rna_info}/py.typed +0 -0
- {rna_xml → _rna_xml}/__init__.pyi +0 -0
- {rna_xml → _rna_xml}/py.typed +0 -0
- {fake_bpy_module-20250612.dist-info → fake_bpy_module-20260118.dist-info}/WHEEL +0 -0
|
@@ -2,13 +2,13 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
4
|
import numpy.typing as npt
|
|
5
|
+
import _bpy_types
|
|
5
6
|
import bl_ui.properties_grease_pencil_common
|
|
6
7
|
import bl_ui.space_toolsystem_common
|
|
7
|
-
import bl_ui.utils
|
|
8
8
|
import bpy.types
|
|
9
9
|
import rna_prop_ui
|
|
10
10
|
|
|
11
|
-
class SEQUENCER_HT_header(
|
|
11
|
+
class SEQUENCER_HT_header(_bpy_types.Header):
|
|
12
12
|
bl_rna: typing.Any
|
|
13
13
|
bl_space_type: typing.Any
|
|
14
14
|
id_data: typing.Any
|
|
@@ -17,14 +17,12 @@ class SEQUENCER_HT_header(bpy.types.Header):
|
|
|
17
17
|
"""
|
|
18
18
|
|
|
19
19
|
:return: The RNA type or default when not found.
|
|
20
|
-
:rtype: bpy.types.Struct
|
|
21
20
|
"""
|
|
22
21
|
|
|
23
22
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
24
23
|
"""
|
|
25
24
|
|
|
26
25
|
:return: The class or default when not found.
|
|
27
|
-
:rtype: typing.Any
|
|
28
26
|
"""
|
|
29
27
|
|
|
30
28
|
def draw(self, context) -> None:
|
|
@@ -33,7 +31,7 @@ class SEQUENCER_HT_header(bpy.types.Header):
|
|
|
33
31
|
:param context:
|
|
34
32
|
"""
|
|
35
33
|
|
|
36
|
-
class
|
|
34
|
+
class SEQUENCER_HT_playback_controls(_bpy_types.Header):
|
|
37
35
|
bl_region_type: typing.Any
|
|
38
36
|
bl_rna: typing.Any
|
|
39
37
|
bl_space_type: typing.Any
|
|
@@ -43,14 +41,12 @@ class SEQUENCER_HT_tool_header(bpy.types.Header):
|
|
|
43
41
|
"""
|
|
44
42
|
|
|
45
43
|
:return: The RNA type or default when not found.
|
|
46
|
-
:rtype: bpy.types.Struct
|
|
47
44
|
"""
|
|
48
45
|
|
|
49
46
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
50
47
|
"""
|
|
51
48
|
|
|
52
49
|
:return: The class or default when not found.
|
|
53
|
-
:rtype: typing.Any
|
|
54
50
|
"""
|
|
55
51
|
|
|
56
52
|
def draw(self, context) -> None:
|
|
@@ -59,31 +55,22 @@ class SEQUENCER_HT_tool_header(bpy.types.Header):
|
|
|
59
55
|
:param context:
|
|
60
56
|
"""
|
|
61
57
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
:param context:
|
|
66
|
-
"""
|
|
67
|
-
|
|
68
|
-
class SEQUENCER_MT_add(bpy.types.Menu):
|
|
69
|
-
bl_label: typing.Any
|
|
70
|
-
bl_options: typing.Any
|
|
58
|
+
class SEQUENCER_HT_tool_header(_bpy_types.Header):
|
|
59
|
+
bl_region_type: typing.Any
|
|
71
60
|
bl_rna: typing.Any
|
|
72
|
-
|
|
61
|
+
bl_space_type: typing.Any
|
|
73
62
|
id_data: typing.Any
|
|
74
63
|
|
|
75
64
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
76
65
|
"""
|
|
77
66
|
|
|
78
67
|
:return: The RNA type or default when not found.
|
|
79
|
-
:rtype: bpy.types.Struct
|
|
80
68
|
"""
|
|
81
69
|
|
|
82
70
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
83
71
|
"""
|
|
84
72
|
|
|
85
73
|
:return: The class or default when not found.
|
|
86
|
-
:rtype: typing.Any
|
|
87
74
|
"""
|
|
88
75
|
|
|
89
76
|
def draw(self, context) -> None:
|
|
@@ -92,23 +79,29 @@ class SEQUENCER_MT_add(bpy.types.Menu):
|
|
|
92
79
|
:param context:
|
|
93
80
|
"""
|
|
94
81
|
|
|
95
|
-
|
|
82
|
+
def draw_tool_settings(self, context) -> None:
|
|
83
|
+
"""
|
|
84
|
+
|
|
85
|
+
:param context:
|
|
86
|
+
"""
|
|
87
|
+
|
|
88
|
+
class SEQUENCER_MT_add(_bpy_types.Menu):
|
|
96
89
|
bl_label: typing.Any
|
|
90
|
+
bl_options: typing.Any
|
|
97
91
|
bl_rna: typing.Any
|
|
92
|
+
bl_translation_context: typing.Any
|
|
98
93
|
id_data: typing.Any
|
|
99
94
|
|
|
100
95
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
101
96
|
"""
|
|
102
97
|
|
|
103
98
|
:return: The RNA type or default when not found.
|
|
104
|
-
:rtype: bpy.types.Struct
|
|
105
99
|
"""
|
|
106
100
|
|
|
107
101
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
108
102
|
"""
|
|
109
103
|
|
|
110
104
|
:return: The class or default when not found.
|
|
111
|
-
:rtype: typing.Any
|
|
112
105
|
"""
|
|
113
106
|
|
|
114
107
|
def draw(self, context) -> None:
|
|
@@ -117,7 +110,7 @@ class SEQUENCER_MT_add_effect(bpy.types.Menu):
|
|
|
117
110
|
:param context:
|
|
118
111
|
"""
|
|
119
112
|
|
|
120
|
-
class
|
|
113
|
+
class SEQUENCER_MT_add_effect(_bpy_types.Menu):
|
|
121
114
|
bl_label: typing.Any
|
|
122
115
|
bl_rna: typing.Any
|
|
123
116
|
id_data: typing.Any
|
|
@@ -126,49 +119,44 @@ class SEQUENCER_MT_add_empty(bpy.types.Menu):
|
|
|
126
119
|
"""
|
|
127
120
|
|
|
128
121
|
:return: The RNA type or default when not found.
|
|
129
|
-
:rtype: bpy.types.Struct
|
|
130
122
|
"""
|
|
131
123
|
|
|
132
124
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
133
125
|
"""
|
|
134
126
|
|
|
135
127
|
:return: The class or default when not found.
|
|
136
|
-
:rtype: typing.Any
|
|
137
128
|
"""
|
|
138
129
|
|
|
139
|
-
def draw(self,
|
|
130
|
+
def draw(self, context) -> None:
|
|
140
131
|
"""
|
|
141
132
|
|
|
142
|
-
:param
|
|
133
|
+
:param context:
|
|
143
134
|
"""
|
|
144
135
|
|
|
145
|
-
class
|
|
136
|
+
class SEQUENCER_MT_add_empty(_bpy_types.Menu):
|
|
146
137
|
bl_label: typing.Any
|
|
147
138
|
bl_rna: typing.Any
|
|
148
|
-
bl_translation_context: typing.Any
|
|
149
139
|
id_data: typing.Any
|
|
150
140
|
|
|
151
141
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
152
142
|
"""
|
|
153
143
|
|
|
154
144
|
:return: The RNA type or default when not found.
|
|
155
|
-
:rtype: bpy.types.Struct
|
|
156
145
|
"""
|
|
157
146
|
|
|
158
147
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
159
148
|
"""
|
|
160
149
|
|
|
161
150
|
:return: The class or default when not found.
|
|
162
|
-
:rtype: typing.Any
|
|
163
151
|
"""
|
|
164
152
|
|
|
165
|
-
def draw(self,
|
|
153
|
+
def draw(self, _context) -> None:
|
|
166
154
|
"""
|
|
167
155
|
|
|
168
|
-
:param
|
|
156
|
+
:param _context:
|
|
169
157
|
"""
|
|
170
158
|
|
|
171
|
-
class SEQUENCER_MT_add_transitions(
|
|
159
|
+
class SEQUENCER_MT_add_transitions(_bpy_types.Menu):
|
|
172
160
|
bl_label: typing.Any
|
|
173
161
|
bl_rna: typing.Any
|
|
174
162
|
id_data: typing.Any
|
|
@@ -177,14 +165,12 @@ class SEQUENCER_MT_add_transitions(bpy.types.Menu):
|
|
|
177
165
|
"""
|
|
178
166
|
|
|
179
167
|
:return: The RNA type or default when not found.
|
|
180
|
-
:rtype: bpy.types.Struct
|
|
181
168
|
"""
|
|
182
169
|
|
|
183
170
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
184
171
|
"""
|
|
185
172
|
|
|
186
173
|
:return: The class or default when not found.
|
|
187
|
-
:rtype: typing.Any
|
|
188
174
|
"""
|
|
189
175
|
|
|
190
176
|
def draw(self, context) -> None:
|
|
@@ -193,7 +179,7 @@ class SEQUENCER_MT_add_transitions(bpy.types.Menu):
|
|
|
193
179
|
:param context:
|
|
194
180
|
"""
|
|
195
181
|
|
|
196
|
-
class SEQUENCER_MT_change(
|
|
182
|
+
class SEQUENCER_MT_change(_bpy_types.Menu):
|
|
197
183
|
bl_label: typing.Any
|
|
198
184
|
bl_rna: typing.Any
|
|
199
185
|
id_data: typing.Any
|
|
@@ -202,14 +188,12 @@ class SEQUENCER_MT_change(bpy.types.Menu):
|
|
|
202
188
|
"""
|
|
203
189
|
|
|
204
190
|
:return: The RNA type or default when not found.
|
|
205
|
-
:rtype: bpy.types.Struct
|
|
206
191
|
"""
|
|
207
192
|
|
|
208
193
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
209
194
|
"""
|
|
210
195
|
|
|
211
196
|
:return: The class or default when not found.
|
|
212
|
-
:rtype: typing.Any
|
|
213
197
|
"""
|
|
214
198
|
|
|
215
199
|
def draw(self, context) -> None:
|
|
@@ -218,7 +202,7 @@ class SEQUENCER_MT_change(bpy.types.Menu):
|
|
|
218
202
|
:param context:
|
|
219
203
|
"""
|
|
220
204
|
|
|
221
|
-
class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker,
|
|
205
|
+
class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, _bpy_types.Menu):
|
|
222
206
|
bl_label: typing.Any
|
|
223
207
|
bl_region_type: typing.Any
|
|
224
208
|
bl_rna: typing.Any
|
|
@@ -229,14 +213,12 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy.types.Menu):
|
|
|
229
213
|
"""
|
|
230
214
|
|
|
231
215
|
:return: The RNA type or default when not found.
|
|
232
|
-
:rtype: bpy.types.Struct
|
|
233
216
|
"""
|
|
234
217
|
|
|
235
218
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
236
219
|
"""
|
|
237
220
|
|
|
238
221
|
:return: The class or default when not found.
|
|
239
|
-
:rtype: typing.Any
|
|
240
222
|
"""
|
|
241
223
|
|
|
242
224
|
def draw(self, _context) -> None:
|
|
@@ -245,7 +227,7 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy.types.Menu):
|
|
|
245
227
|
:param _context:
|
|
246
228
|
"""
|
|
247
229
|
|
|
248
|
-
class SEQUENCER_MT_context_menu(
|
|
230
|
+
class SEQUENCER_MT_context_menu(_bpy_types.Menu):
|
|
249
231
|
bl_label: typing.Any
|
|
250
232
|
bl_rna: typing.Any
|
|
251
233
|
id_data: typing.Any
|
|
@@ -254,14 +236,12 @@ class SEQUENCER_MT_context_menu(bpy.types.Menu):
|
|
|
254
236
|
"""
|
|
255
237
|
|
|
256
238
|
:return: The RNA type or default when not found.
|
|
257
|
-
:rtype: bpy.types.Struct
|
|
258
239
|
"""
|
|
259
240
|
|
|
260
241
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
261
242
|
"""
|
|
262
243
|
|
|
263
244
|
:return: The class or default when not found.
|
|
264
|
-
:rtype: typing.Any
|
|
265
245
|
"""
|
|
266
246
|
|
|
267
247
|
def draw(self, context) -> None:
|
|
@@ -282,7 +262,7 @@ class SEQUENCER_MT_context_menu(bpy.types.Menu):
|
|
|
282
262
|
:param context:
|
|
283
263
|
"""
|
|
284
264
|
|
|
285
|
-
class SEQUENCER_MT_editor_menus(
|
|
265
|
+
class SEQUENCER_MT_editor_menus(_bpy_types.Menu):
|
|
286
266
|
bl_idname: typing.Any
|
|
287
267
|
bl_label: typing.Any
|
|
288
268
|
bl_rna: typing.Any
|
|
@@ -292,14 +272,12 @@ class SEQUENCER_MT_editor_menus(bpy.types.Menu):
|
|
|
292
272
|
"""
|
|
293
273
|
|
|
294
274
|
:return: The RNA type or default when not found.
|
|
295
|
-
:rtype: bpy.types.Struct
|
|
296
275
|
"""
|
|
297
276
|
|
|
298
277
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
299
278
|
"""
|
|
300
279
|
|
|
301
280
|
:return: The class or default when not found.
|
|
302
|
-
:rtype: typing.Any
|
|
303
281
|
"""
|
|
304
282
|
|
|
305
283
|
def draw(self, context) -> None:
|
|
@@ -308,7 +286,7 @@ class SEQUENCER_MT_editor_menus(bpy.types.Menu):
|
|
|
308
286
|
:param context:
|
|
309
287
|
"""
|
|
310
288
|
|
|
311
|
-
class SEQUENCER_MT_image(
|
|
289
|
+
class SEQUENCER_MT_image(_bpy_types.Menu):
|
|
312
290
|
bl_label: typing.Any
|
|
313
291
|
bl_rna: typing.Any
|
|
314
292
|
id_data: typing.Any
|
|
@@ -317,14 +295,12 @@ class SEQUENCER_MT_image(bpy.types.Menu):
|
|
|
317
295
|
"""
|
|
318
296
|
|
|
319
297
|
:return: The RNA type or default when not found.
|
|
320
|
-
:rtype: bpy.types.Struct
|
|
321
298
|
"""
|
|
322
299
|
|
|
323
300
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
324
301
|
"""
|
|
325
302
|
|
|
326
303
|
:return: The class or default when not found.
|
|
327
|
-
:rtype: typing.Any
|
|
328
304
|
"""
|
|
329
305
|
|
|
330
306
|
def draw(self, context) -> None:
|
|
@@ -333,7 +309,7 @@ class SEQUENCER_MT_image(bpy.types.Menu):
|
|
|
333
309
|
:param context:
|
|
334
310
|
"""
|
|
335
311
|
|
|
336
|
-
class SEQUENCER_MT_image_apply(
|
|
312
|
+
class SEQUENCER_MT_image_apply(_bpy_types.Menu):
|
|
337
313
|
bl_label: typing.Any
|
|
338
314
|
bl_rna: typing.Any
|
|
339
315
|
id_data: typing.Any
|
|
@@ -342,14 +318,12 @@ class SEQUENCER_MT_image_apply(bpy.types.Menu):
|
|
|
342
318
|
"""
|
|
343
319
|
|
|
344
320
|
:return: The RNA type or default when not found.
|
|
345
|
-
:rtype: bpy.types.Struct
|
|
346
321
|
"""
|
|
347
322
|
|
|
348
323
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
349
324
|
"""
|
|
350
325
|
|
|
351
326
|
:return: The class or default when not found.
|
|
352
|
-
:rtype: typing.Any
|
|
353
327
|
"""
|
|
354
328
|
|
|
355
329
|
def draw(self, _context) -> None:
|
|
@@ -358,7 +332,7 @@ class SEQUENCER_MT_image_apply(bpy.types.Menu):
|
|
|
358
332
|
:param _context:
|
|
359
333
|
"""
|
|
360
334
|
|
|
361
|
-
class SEQUENCER_MT_image_clear(
|
|
335
|
+
class SEQUENCER_MT_image_clear(_bpy_types.Menu):
|
|
362
336
|
bl_label: typing.Any
|
|
363
337
|
bl_rna: typing.Any
|
|
364
338
|
id_data: typing.Any
|
|
@@ -367,14 +341,12 @@ class SEQUENCER_MT_image_clear(bpy.types.Menu):
|
|
|
367
341
|
"""
|
|
368
342
|
|
|
369
343
|
:return: The RNA type or default when not found.
|
|
370
|
-
:rtype: bpy.types.Struct
|
|
371
344
|
"""
|
|
372
345
|
|
|
373
346
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
374
347
|
"""
|
|
375
348
|
|
|
376
349
|
:return: The class or default when not found.
|
|
377
|
-
:rtype: typing.Any
|
|
378
350
|
"""
|
|
379
351
|
|
|
380
352
|
def draw(self, _context) -> None:
|
|
@@ -383,7 +355,7 @@ class SEQUENCER_MT_image_clear(bpy.types.Menu):
|
|
|
383
355
|
:param _context:
|
|
384
356
|
"""
|
|
385
357
|
|
|
386
|
-
class SEQUENCER_MT_image_transform(
|
|
358
|
+
class SEQUENCER_MT_image_transform(_bpy_types.Menu):
|
|
387
359
|
bl_label: typing.Any
|
|
388
360
|
bl_rna: typing.Any
|
|
389
361
|
id_data: typing.Any
|
|
@@ -392,23 +364,21 @@ class SEQUENCER_MT_image_transform(bpy.types.Menu):
|
|
|
392
364
|
"""
|
|
393
365
|
|
|
394
366
|
:return: The RNA type or default when not found.
|
|
395
|
-
:rtype: bpy.types.Struct
|
|
396
367
|
"""
|
|
397
368
|
|
|
398
369
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
399
370
|
"""
|
|
400
371
|
|
|
401
372
|
:return: The class or default when not found.
|
|
402
|
-
:rtype: typing.Any
|
|
403
373
|
"""
|
|
404
374
|
|
|
405
|
-
def draw(self,
|
|
375
|
+
def draw(self, context) -> None:
|
|
406
376
|
"""
|
|
407
377
|
|
|
408
|
-
:param
|
|
378
|
+
:param context:
|
|
409
379
|
"""
|
|
410
380
|
|
|
411
|
-
class SEQUENCER_MT_marker(
|
|
381
|
+
class SEQUENCER_MT_marker(_bpy_types.Menu):
|
|
412
382
|
bl_label: typing.Any
|
|
413
383
|
bl_rna: typing.Any
|
|
414
384
|
id_data: typing.Any
|
|
@@ -417,14 +387,12 @@ class SEQUENCER_MT_marker(bpy.types.Menu):
|
|
|
417
387
|
"""
|
|
418
388
|
|
|
419
389
|
:return: The RNA type or default when not found.
|
|
420
|
-
:rtype: bpy.types.Struct
|
|
421
390
|
"""
|
|
422
391
|
|
|
423
392
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
424
393
|
"""
|
|
425
394
|
|
|
426
395
|
:return: The class or default when not found.
|
|
427
|
-
:rtype: typing.Any
|
|
428
396
|
"""
|
|
429
397
|
|
|
430
398
|
def draw(self, context) -> None:
|
|
@@ -433,8 +401,12 @@ class SEQUENCER_MT_marker(bpy.types.Menu):
|
|
|
433
401
|
:param context:
|
|
434
402
|
"""
|
|
435
403
|
|
|
436
|
-
class
|
|
404
|
+
class SEQUENCER_MT_modifier_add(_bpy_types.Menu):
|
|
405
|
+
MODIFIER_TYPES_I18N_CONTEXT: typing.Any
|
|
406
|
+
MODIFIER_TYPES_TO_ICONS: typing.Any
|
|
407
|
+
MODIFIER_TYPES_TO_LABELS: typing.Any
|
|
437
408
|
bl_label: typing.Any
|
|
409
|
+
bl_options: typing.Any
|
|
438
410
|
bl_rna: typing.Any
|
|
439
411
|
id_data: typing.Any
|
|
440
412
|
|
|
@@ -442,48 +414,29 @@ class SEQUENCER_MT_navigation(bpy.types.Menu):
|
|
|
442
414
|
"""
|
|
443
415
|
|
|
444
416
|
:return: The RNA type or default when not found.
|
|
445
|
-
:rtype: bpy.types.Struct
|
|
446
417
|
"""
|
|
447
418
|
|
|
448
419
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
449
420
|
"""
|
|
450
421
|
|
|
451
422
|
:return: The class or default when not found.
|
|
452
|
-
:rtype: typing.Any
|
|
453
|
-
"""
|
|
454
|
-
|
|
455
|
-
def draw(self, _context) -> None:
|
|
456
|
-
"""
|
|
457
|
-
|
|
458
|
-
:param _context:
|
|
459
|
-
"""
|
|
460
|
-
|
|
461
|
-
class SEQUENCER_MT_pivot_pie(bpy.types.Menu):
|
|
462
|
-
bl_label: typing.Any
|
|
463
|
-
bl_rna: typing.Any
|
|
464
|
-
id_data: typing.Any
|
|
465
|
-
|
|
466
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
467
|
-
"""
|
|
468
|
-
|
|
469
|
-
:return: The RNA type or default when not found.
|
|
470
|
-
:rtype: bpy.types.Struct
|
|
471
423
|
"""
|
|
472
424
|
|
|
473
|
-
def
|
|
425
|
+
def draw(self, context) -> None:
|
|
474
426
|
"""
|
|
475
427
|
|
|
476
|
-
:
|
|
477
|
-
:rtype: typing.Any
|
|
428
|
+
:param context:
|
|
478
429
|
"""
|
|
479
430
|
|
|
480
|
-
|
|
431
|
+
@classmethod
|
|
432
|
+
def operator_modifier_add(cls, layout, mod_type) -> None:
|
|
481
433
|
"""
|
|
482
434
|
|
|
483
|
-
:param
|
|
435
|
+
:param layout:
|
|
436
|
+
:param mod_type:
|
|
484
437
|
"""
|
|
485
438
|
|
|
486
|
-
class
|
|
439
|
+
class SEQUENCER_MT_navigation(_bpy_types.Menu):
|
|
487
440
|
bl_label: typing.Any
|
|
488
441
|
bl_rna: typing.Any
|
|
489
442
|
id_data: typing.Any
|
|
@@ -492,23 +445,21 @@ class SEQUENCER_MT_preview_context_menu(bpy.types.Menu):
|
|
|
492
445
|
"""
|
|
493
446
|
|
|
494
447
|
:return: The RNA type or default when not found.
|
|
495
|
-
:rtype: bpy.types.Struct
|
|
496
448
|
"""
|
|
497
449
|
|
|
498
450
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
499
451
|
"""
|
|
500
452
|
|
|
501
453
|
:return: The class or default when not found.
|
|
502
|
-
:rtype: typing.Any
|
|
503
454
|
"""
|
|
504
455
|
|
|
505
|
-
def draw(self,
|
|
456
|
+
def draw(self, _context) -> None:
|
|
506
457
|
"""
|
|
507
458
|
|
|
508
|
-
:param
|
|
459
|
+
:param _context:
|
|
509
460
|
"""
|
|
510
461
|
|
|
511
|
-
class
|
|
462
|
+
class SEQUENCER_MT_pivot_pie(_bpy_types.Menu):
|
|
512
463
|
bl_label: typing.Any
|
|
513
464
|
bl_rna: typing.Any
|
|
514
465
|
id_data: typing.Any
|
|
@@ -517,23 +468,21 @@ class SEQUENCER_MT_preview_view_pie(bpy.types.Menu):
|
|
|
517
468
|
"""
|
|
518
469
|
|
|
519
470
|
:return: The RNA type or default when not found.
|
|
520
|
-
:rtype: bpy.types.Struct
|
|
521
471
|
"""
|
|
522
472
|
|
|
523
473
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
524
474
|
"""
|
|
525
475
|
|
|
526
476
|
:return: The class or default when not found.
|
|
527
|
-
:rtype: typing.Any
|
|
528
477
|
"""
|
|
529
478
|
|
|
530
|
-
def draw(self,
|
|
479
|
+
def draw(self, context) -> None:
|
|
531
480
|
"""
|
|
532
481
|
|
|
533
|
-
:param
|
|
482
|
+
:param context:
|
|
534
483
|
"""
|
|
535
484
|
|
|
536
|
-
class
|
|
485
|
+
class SEQUENCER_MT_preview_context_menu(_bpy_types.Menu):
|
|
537
486
|
bl_label: typing.Any
|
|
538
487
|
bl_rna: typing.Any
|
|
539
488
|
id_data: typing.Any
|
|
@@ -542,14 +491,12 @@ class SEQUENCER_MT_preview_zoom(bpy.types.Menu):
|
|
|
542
491
|
"""
|
|
543
492
|
|
|
544
493
|
:return: The RNA type or default when not found.
|
|
545
|
-
:rtype: bpy.types.Struct
|
|
546
494
|
"""
|
|
547
495
|
|
|
548
496
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
549
497
|
"""
|
|
550
498
|
|
|
551
499
|
:return: The class or default when not found.
|
|
552
|
-
:rtype: typing.Any
|
|
553
500
|
"""
|
|
554
501
|
|
|
555
502
|
def draw(self, context) -> None:
|
|
@@ -558,7 +505,7 @@ class SEQUENCER_MT_preview_zoom(bpy.types.Menu):
|
|
|
558
505
|
:param context:
|
|
559
506
|
"""
|
|
560
507
|
|
|
561
|
-
class
|
|
508
|
+
class SEQUENCER_MT_preview_view_pie(_bpy_types.Menu):
|
|
562
509
|
bl_label: typing.Any
|
|
563
510
|
bl_rna: typing.Any
|
|
564
511
|
id_data: typing.Any
|
|
@@ -567,23 +514,21 @@ class SEQUENCER_MT_proxy(bpy.types.Menu):
|
|
|
567
514
|
"""
|
|
568
515
|
|
|
569
516
|
:return: The RNA type or default when not found.
|
|
570
|
-
:rtype: bpy.types.Struct
|
|
571
517
|
"""
|
|
572
518
|
|
|
573
519
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
574
520
|
"""
|
|
575
521
|
|
|
576
522
|
:return: The class or default when not found.
|
|
577
|
-
:rtype: typing.Any
|
|
578
523
|
"""
|
|
579
524
|
|
|
580
|
-
def draw(self,
|
|
525
|
+
def draw(self, _context) -> None:
|
|
581
526
|
"""
|
|
582
527
|
|
|
583
|
-
:param
|
|
528
|
+
:param _context:
|
|
584
529
|
"""
|
|
585
530
|
|
|
586
|
-
class
|
|
531
|
+
class SEQUENCER_MT_preview_zoom(_bpy_types.Menu):
|
|
587
532
|
bl_label: typing.Any
|
|
588
533
|
bl_rna: typing.Any
|
|
589
534
|
id_data: typing.Any
|
|
@@ -592,40 +537,35 @@ class SEQUENCER_MT_range(bpy.types.Menu):
|
|
|
592
537
|
"""
|
|
593
538
|
|
|
594
539
|
:return: The RNA type or default when not found.
|
|
595
|
-
:rtype: bpy.types.Struct
|
|
596
540
|
"""
|
|
597
541
|
|
|
598
542
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
599
543
|
"""
|
|
600
544
|
|
|
601
545
|
:return: The class or default when not found.
|
|
602
|
-
:rtype: typing.Any
|
|
603
546
|
"""
|
|
604
547
|
|
|
605
|
-
def draw(self,
|
|
548
|
+
def draw(self, context) -> None:
|
|
606
549
|
"""
|
|
607
550
|
|
|
608
|
-
:param
|
|
551
|
+
:param context:
|
|
609
552
|
"""
|
|
610
553
|
|
|
611
|
-
class
|
|
554
|
+
class SEQUENCER_MT_proxy(_bpy_types.Menu):
|
|
612
555
|
bl_label: typing.Any
|
|
613
556
|
bl_rna: typing.Any
|
|
614
|
-
bl_translation_context: typing.Any
|
|
615
557
|
id_data: typing.Any
|
|
616
558
|
|
|
617
559
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
618
560
|
"""
|
|
619
561
|
|
|
620
562
|
:return: The RNA type or default when not found.
|
|
621
|
-
:rtype: bpy.types.Struct
|
|
622
563
|
"""
|
|
623
564
|
|
|
624
565
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
625
566
|
"""
|
|
626
567
|
|
|
627
568
|
:return: The class or default when not found.
|
|
628
|
-
:rtype: typing.Any
|
|
629
569
|
"""
|
|
630
570
|
|
|
631
571
|
def draw(self, context) -> None:
|
|
@@ -634,7 +574,7 @@ class SEQUENCER_MT_retiming(bpy.types.Menu):
|
|
|
634
574
|
:param context:
|
|
635
575
|
"""
|
|
636
576
|
|
|
637
|
-
class
|
|
577
|
+
class SEQUENCER_MT_range(_bpy_types.Menu):
|
|
638
578
|
bl_label: typing.Any
|
|
639
579
|
bl_rna: typing.Any
|
|
640
580
|
id_data: typing.Any
|
|
@@ -643,48 +583,45 @@ class SEQUENCER_MT_select(bpy.types.Menu):
|
|
|
643
583
|
"""
|
|
644
584
|
|
|
645
585
|
:return: The RNA type or default when not found.
|
|
646
|
-
:rtype: bpy.types.Struct
|
|
647
586
|
"""
|
|
648
587
|
|
|
649
588
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
650
589
|
"""
|
|
651
590
|
|
|
652
591
|
:return: The class or default when not found.
|
|
653
|
-
:rtype: typing.Any
|
|
654
592
|
"""
|
|
655
593
|
|
|
656
|
-
def draw(self,
|
|
594
|
+
def draw(self, _context) -> None:
|
|
657
595
|
"""
|
|
658
596
|
|
|
659
|
-
:param
|
|
597
|
+
:param _context:
|
|
660
598
|
"""
|
|
661
599
|
|
|
662
|
-
class
|
|
600
|
+
class SEQUENCER_MT_retiming(_bpy_types.Menu):
|
|
663
601
|
bl_label: typing.Any
|
|
664
602
|
bl_rna: typing.Any
|
|
603
|
+
bl_translation_context: typing.Any
|
|
665
604
|
id_data: typing.Any
|
|
666
605
|
|
|
667
606
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
668
607
|
"""
|
|
669
608
|
|
|
670
609
|
:return: The RNA type or default when not found.
|
|
671
|
-
:rtype: bpy.types.Struct
|
|
672
610
|
"""
|
|
673
611
|
|
|
674
612
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
675
613
|
"""
|
|
676
614
|
|
|
677
615
|
:return: The class or default when not found.
|
|
678
|
-
:rtype: typing.Any
|
|
679
616
|
"""
|
|
680
617
|
|
|
681
|
-
def draw(self,
|
|
618
|
+
def draw(self, context) -> None:
|
|
682
619
|
"""
|
|
683
620
|
|
|
684
|
-
:param
|
|
621
|
+
:param context:
|
|
685
622
|
"""
|
|
686
623
|
|
|
687
|
-
class
|
|
624
|
+
class SEQUENCER_MT_select(_bpy_types.Menu):
|
|
688
625
|
bl_label: typing.Any
|
|
689
626
|
bl_rna: typing.Any
|
|
690
627
|
id_data: typing.Any
|
|
@@ -693,23 +630,21 @@ class SEQUENCER_MT_select_handle(bpy.types.Menu):
|
|
|
693
630
|
"""
|
|
694
631
|
|
|
695
632
|
:return: The RNA type or default when not found.
|
|
696
|
-
:rtype: bpy.types.Struct
|
|
697
633
|
"""
|
|
698
634
|
|
|
699
635
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
700
636
|
"""
|
|
701
637
|
|
|
702
638
|
:return: The class or default when not found.
|
|
703
|
-
:rtype: typing.Any
|
|
704
639
|
"""
|
|
705
640
|
|
|
706
|
-
def draw(self,
|
|
641
|
+
def draw(self, context) -> None:
|
|
707
642
|
"""
|
|
708
643
|
|
|
709
|
-
:param
|
|
644
|
+
:param context:
|
|
710
645
|
"""
|
|
711
646
|
|
|
712
|
-
class
|
|
647
|
+
class SEQUENCER_MT_select_channel(_bpy_types.Menu):
|
|
713
648
|
bl_label: typing.Any
|
|
714
649
|
bl_rna: typing.Any
|
|
715
650
|
id_data: typing.Any
|
|
@@ -718,23 +653,21 @@ class SEQUENCER_MT_strip(bpy.types.Menu):
|
|
|
718
653
|
"""
|
|
719
654
|
|
|
720
655
|
:return: The RNA type or default when not found.
|
|
721
|
-
:rtype: bpy.types.Struct
|
|
722
656
|
"""
|
|
723
657
|
|
|
724
658
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
725
659
|
"""
|
|
726
660
|
|
|
727
661
|
:return: The class or default when not found.
|
|
728
|
-
:rtype: typing.Any
|
|
729
662
|
"""
|
|
730
663
|
|
|
731
|
-
def draw(self,
|
|
664
|
+
def draw(self, _context) -> None:
|
|
732
665
|
"""
|
|
733
666
|
|
|
734
|
-
:param
|
|
667
|
+
:param _context:
|
|
735
668
|
"""
|
|
736
669
|
|
|
737
|
-
class
|
|
670
|
+
class SEQUENCER_MT_select_handle(_bpy_types.Menu):
|
|
738
671
|
bl_label: typing.Any
|
|
739
672
|
bl_rna: typing.Any
|
|
740
673
|
id_data: typing.Any
|
|
@@ -743,14 +676,12 @@ class SEQUENCER_MT_strip_effect(bpy.types.Menu):
|
|
|
743
676
|
"""
|
|
744
677
|
|
|
745
678
|
:return: The RNA type or default when not found.
|
|
746
|
-
:rtype: bpy.types.Struct
|
|
747
679
|
"""
|
|
748
680
|
|
|
749
681
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
750
682
|
"""
|
|
751
683
|
|
|
752
684
|
:return: The class or default when not found.
|
|
753
|
-
:rtype: typing.Any
|
|
754
685
|
"""
|
|
755
686
|
|
|
756
687
|
def draw(self, _context) -> None:
|
|
@@ -759,7 +690,7 @@ class SEQUENCER_MT_strip_effect(bpy.types.Menu):
|
|
|
759
690
|
:param _context:
|
|
760
691
|
"""
|
|
761
692
|
|
|
762
|
-
class
|
|
693
|
+
class SEQUENCER_MT_strip(_bpy_types.Menu):
|
|
763
694
|
bl_label: typing.Any
|
|
764
695
|
bl_rna: typing.Any
|
|
765
696
|
id_data: typing.Any
|
|
@@ -768,14 +699,12 @@ class SEQUENCER_MT_strip_effect_change(bpy.types.Menu):
|
|
|
768
699
|
"""
|
|
769
700
|
|
|
770
701
|
:return: The RNA type or default when not found.
|
|
771
|
-
:rtype: bpy.types.Struct
|
|
772
702
|
"""
|
|
773
703
|
|
|
774
704
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
775
705
|
"""
|
|
776
706
|
|
|
777
707
|
:return: The class or default when not found.
|
|
778
|
-
:rtype: typing.Any
|
|
779
708
|
"""
|
|
780
709
|
|
|
781
710
|
def draw(self, context) -> None:
|
|
@@ -784,7 +713,7 @@ class SEQUENCER_MT_strip_effect_change(bpy.types.Menu):
|
|
|
784
713
|
:param context:
|
|
785
714
|
"""
|
|
786
715
|
|
|
787
|
-
class
|
|
716
|
+
class SEQUENCER_MT_strip_animation(_bpy_types.Menu):
|
|
788
717
|
bl_label: typing.Any
|
|
789
718
|
bl_rna: typing.Any
|
|
790
719
|
id_data: typing.Any
|
|
@@ -793,14 +722,12 @@ class SEQUENCER_MT_strip_input(bpy.types.Menu):
|
|
|
793
722
|
"""
|
|
794
723
|
|
|
795
724
|
:return: The RNA type or default when not found.
|
|
796
|
-
:rtype: bpy.types.Struct
|
|
797
725
|
"""
|
|
798
726
|
|
|
799
727
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
800
728
|
"""
|
|
801
729
|
|
|
802
730
|
:return: The class or default when not found.
|
|
803
|
-
:rtype: typing.Any
|
|
804
731
|
"""
|
|
805
732
|
|
|
806
733
|
def draw(self, context) -> None:
|
|
@@ -809,7 +736,7 @@ class SEQUENCER_MT_strip_input(bpy.types.Menu):
|
|
|
809
736
|
:param context:
|
|
810
737
|
"""
|
|
811
738
|
|
|
812
|
-
class
|
|
739
|
+
class SEQUENCER_MT_strip_effect(_bpy_types.Menu):
|
|
813
740
|
bl_label: typing.Any
|
|
814
741
|
bl_rna: typing.Any
|
|
815
742
|
id_data: typing.Any
|
|
@@ -818,14 +745,12 @@ class SEQUENCER_MT_strip_lock_mute(bpy.types.Menu):
|
|
|
818
745
|
"""
|
|
819
746
|
|
|
820
747
|
:return: The RNA type or default when not found.
|
|
821
|
-
:rtype: bpy.types.Struct
|
|
822
748
|
"""
|
|
823
749
|
|
|
824
750
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
825
751
|
"""
|
|
826
752
|
|
|
827
753
|
:return: The class or default when not found.
|
|
828
|
-
:rtype: typing.Any
|
|
829
754
|
"""
|
|
830
755
|
|
|
831
756
|
def draw(self, _context) -> None:
|
|
@@ -834,7 +759,7 @@ class SEQUENCER_MT_strip_lock_mute(bpy.types.Menu):
|
|
|
834
759
|
:param _context:
|
|
835
760
|
"""
|
|
836
761
|
|
|
837
|
-
class
|
|
762
|
+
class SEQUENCER_MT_strip_effect_change(_bpy_types.Menu):
|
|
838
763
|
bl_label: typing.Any
|
|
839
764
|
bl_rna: typing.Any
|
|
840
765
|
id_data: typing.Any
|
|
@@ -843,23 +768,21 @@ class SEQUENCER_MT_strip_movie(bpy.types.Menu):
|
|
|
843
768
|
"""
|
|
844
769
|
|
|
845
770
|
:return: The RNA type or default when not found.
|
|
846
|
-
:rtype: bpy.types.Struct
|
|
847
771
|
"""
|
|
848
772
|
|
|
849
773
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
850
774
|
"""
|
|
851
775
|
|
|
852
776
|
:return: The class or default when not found.
|
|
853
|
-
:rtype: typing.Any
|
|
854
777
|
"""
|
|
855
778
|
|
|
856
|
-
def draw(self,
|
|
779
|
+
def draw(self, context) -> None:
|
|
857
780
|
"""
|
|
858
781
|
|
|
859
|
-
:param
|
|
782
|
+
:param context:
|
|
860
783
|
"""
|
|
861
784
|
|
|
862
|
-
class
|
|
785
|
+
class SEQUENCER_MT_strip_input(_bpy_types.Menu):
|
|
863
786
|
bl_label: typing.Any
|
|
864
787
|
bl_rna: typing.Any
|
|
865
788
|
id_data: typing.Any
|
|
@@ -868,14 +791,12 @@ class SEQUENCER_MT_strip_retiming(bpy.types.Menu):
|
|
|
868
791
|
"""
|
|
869
792
|
|
|
870
793
|
:return: The RNA type or default when not found.
|
|
871
|
-
:rtype: bpy.types.Struct
|
|
872
794
|
"""
|
|
873
795
|
|
|
874
796
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
875
797
|
"""
|
|
876
798
|
|
|
877
799
|
:return: The class or default when not found.
|
|
878
|
-
:rtype: typing.Any
|
|
879
800
|
"""
|
|
880
801
|
|
|
881
802
|
def draw(self, context) -> None:
|
|
@@ -884,7 +805,7 @@ class SEQUENCER_MT_strip_retiming(bpy.types.Menu):
|
|
|
884
805
|
:param context:
|
|
885
806
|
"""
|
|
886
807
|
|
|
887
|
-
class
|
|
808
|
+
class SEQUENCER_MT_strip_lock_mute(_bpy_types.Menu):
|
|
888
809
|
bl_label: typing.Any
|
|
889
810
|
bl_rna: typing.Any
|
|
890
811
|
id_data: typing.Any
|
|
@@ -893,14 +814,12 @@ class SEQUENCER_MT_strip_show_hide(bpy.types.Menu):
|
|
|
893
814
|
"""
|
|
894
815
|
|
|
895
816
|
:return: The RNA type or default when not found.
|
|
896
|
-
:rtype: bpy.types.Struct
|
|
897
817
|
"""
|
|
898
818
|
|
|
899
819
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
900
820
|
"""
|
|
901
821
|
|
|
902
822
|
:return: The class or default when not found.
|
|
903
|
-
:rtype: typing.Any
|
|
904
823
|
"""
|
|
905
824
|
|
|
906
825
|
def draw(self, _context) -> None:
|
|
@@ -909,7 +828,7 @@ class SEQUENCER_MT_strip_show_hide(bpy.types.Menu):
|
|
|
909
828
|
:param _context:
|
|
910
829
|
"""
|
|
911
830
|
|
|
912
|
-
class
|
|
831
|
+
class SEQUENCER_MT_strip_mirror(_bpy_types.Menu):
|
|
913
832
|
bl_label: typing.Any
|
|
914
833
|
bl_rna: typing.Any
|
|
915
834
|
id_data: typing.Any
|
|
@@ -918,14 +837,12 @@ class SEQUENCER_MT_strip_text(bpy.types.Menu):
|
|
|
918
837
|
"""
|
|
919
838
|
|
|
920
839
|
:return: The RNA type or default when not found.
|
|
921
|
-
:rtype: bpy.types.Struct
|
|
922
840
|
"""
|
|
923
841
|
|
|
924
842
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
925
843
|
"""
|
|
926
844
|
|
|
927
845
|
:return: The class or default when not found.
|
|
928
|
-
:rtype: typing.Any
|
|
929
846
|
"""
|
|
930
847
|
|
|
931
848
|
def draw(self, context) -> None:
|
|
@@ -934,7 +851,7 @@ class SEQUENCER_MT_strip_text(bpy.types.Menu):
|
|
|
934
851
|
:param context:
|
|
935
852
|
"""
|
|
936
853
|
|
|
937
|
-
class
|
|
854
|
+
class SEQUENCER_MT_strip_modifiers(_bpy_types.Menu):
|
|
938
855
|
bl_label: typing.Any
|
|
939
856
|
bl_rna: typing.Any
|
|
940
857
|
id_data: typing.Any
|
|
@@ -943,23 +860,21 @@ class SEQUENCER_MT_strip_transform(bpy.types.Menu):
|
|
|
943
860
|
"""
|
|
944
861
|
|
|
945
862
|
:return: The RNA type or default when not found.
|
|
946
|
-
:rtype: bpy.types.Struct
|
|
947
863
|
"""
|
|
948
864
|
|
|
949
865
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
950
866
|
"""
|
|
951
867
|
|
|
952
868
|
:return: The class or default when not found.
|
|
953
|
-
:rtype: typing.Any
|
|
954
869
|
"""
|
|
955
870
|
|
|
956
|
-
def draw(self,
|
|
871
|
+
def draw(self, _context) -> None:
|
|
957
872
|
"""
|
|
958
873
|
|
|
959
|
-
:param
|
|
874
|
+
:param _context:
|
|
960
875
|
"""
|
|
961
876
|
|
|
962
|
-
class
|
|
877
|
+
class SEQUENCER_MT_strip_movie(_bpy_types.Menu):
|
|
963
878
|
bl_label: typing.Any
|
|
964
879
|
bl_rna: typing.Any
|
|
965
880
|
id_data: typing.Any
|
|
@@ -968,23 +883,21 @@ class SEQUENCER_MT_view(bpy.types.Menu):
|
|
|
968
883
|
"""
|
|
969
884
|
|
|
970
885
|
:return: The RNA type or default when not found.
|
|
971
|
-
:rtype: bpy.types.Struct
|
|
972
886
|
"""
|
|
973
887
|
|
|
974
888
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
975
889
|
"""
|
|
976
890
|
|
|
977
891
|
:return: The class or default when not found.
|
|
978
|
-
:rtype: typing.Any
|
|
979
892
|
"""
|
|
980
893
|
|
|
981
|
-
def draw(self,
|
|
894
|
+
def draw(self, _context) -> None:
|
|
982
895
|
"""
|
|
983
896
|
|
|
984
|
-
:param
|
|
897
|
+
:param _context:
|
|
985
898
|
"""
|
|
986
899
|
|
|
987
|
-
class
|
|
900
|
+
class SEQUENCER_MT_strip_retiming(_bpy_types.Menu):
|
|
988
901
|
bl_label: typing.Any
|
|
989
902
|
bl_rna: typing.Any
|
|
990
903
|
id_data: typing.Any
|
|
@@ -993,14 +906,12 @@ class SEQUENCER_MT_view_pie(bpy.types.Menu):
|
|
|
993
906
|
"""
|
|
994
907
|
|
|
995
908
|
:return: The RNA type or default when not found.
|
|
996
|
-
:rtype: bpy.types.Struct
|
|
997
909
|
"""
|
|
998
910
|
|
|
999
911
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1000
912
|
"""
|
|
1001
913
|
|
|
1002
914
|
:return: The class or default when not found.
|
|
1003
|
-
:rtype: typing.Any
|
|
1004
915
|
"""
|
|
1005
916
|
|
|
1006
917
|
def draw(self, context) -> None:
|
|
@@ -1009,51 +920,44 @@ class SEQUENCER_MT_view_pie(bpy.types.Menu):
|
|
|
1009
920
|
:param context:
|
|
1010
921
|
"""
|
|
1011
922
|
|
|
1012
|
-
class
|
|
1013
|
-
bl_ui.space_toolsystem_common.ToolActivePanelHelper, bpy.types.Panel
|
|
1014
|
-
):
|
|
1015
|
-
bl_category: typing.Any
|
|
923
|
+
class SEQUENCER_MT_strip_show_hide(_bpy_types.Menu):
|
|
1016
924
|
bl_label: typing.Any
|
|
1017
|
-
bl_region_type: typing.Any
|
|
1018
925
|
bl_rna: typing.Any
|
|
1019
|
-
bl_space_type: typing.Any
|
|
1020
926
|
id_data: typing.Any
|
|
1021
927
|
|
|
1022
928
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1023
929
|
"""
|
|
1024
930
|
|
|
1025
931
|
:return: The RNA type or default when not found.
|
|
1026
|
-
:rtype: bpy.types.Struct
|
|
1027
932
|
"""
|
|
1028
933
|
|
|
1029
934
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1030
935
|
"""
|
|
1031
936
|
|
|
1032
937
|
:return: The class or default when not found.
|
|
1033
|
-
:rtype: typing.Any
|
|
1034
938
|
"""
|
|
1035
939
|
|
|
1036
|
-
|
|
1037
|
-
|
|
940
|
+
def draw(self, _context) -> None:
|
|
941
|
+
"""
|
|
942
|
+
|
|
943
|
+
:param _context:
|
|
944
|
+
"""
|
|
945
|
+
|
|
946
|
+
class SEQUENCER_MT_strip_text(_bpy_types.Menu):
|
|
1038
947
|
bl_label: typing.Any
|
|
1039
|
-
bl_options: typing.Any
|
|
1040
|
-
bl_region_type: typing.Any
|
|
1041
948
|
bl_rna: typing.Any
|
|
1042
|
-
bl_space_type: typing.Any
|
|
1043
949
|
id_data: typing.Any
|
|
1044
950
|
|
|
1045
951
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1046
952
|
"""
|
|
1047
953
|
|
|
1048
954
|
:return: The RNA type or default when not found.
|
|
1049
|
-
:rtype: bpy.types.Struct
|
|
1050
955
|
"""
|
|
1051
956
|
|
|
1052
957
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1053
958
|
"""
|
|
1054
959
|
|
|
1055
960
|
:return: The class or default when not found.
|
|
1056
|
-
:rtype: typing.Any
|
|
1057
961
|
"""
|
|
1058
962
|
|
|
1059
963
|
def draw(self, context) -> None:
|
|
@@ -1062,33 +966,21 @@ class SEQUENCER_PT_adjust_color(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1062
966
|
:param context:
|
|
1063
967
|
"""
|
|
1064
968
|
|
|
1065
|
-
|
|
1066
|
-
def poll(cls, context) -> None:
|
|
1067
|
-
"""
|
|
1068
|
-
|
|
1069
|
-
:param context:
|
|
1070
|
-
"""
|
|
1071
|
-
|
|
1072
|
-
class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, bpy.types.Panel):
|
|
1073
|
-
bl_category: typing.Any
|
|
969
|
+
class SEQUENCER_MT_strip_transform(_bpy_types.Menu):
|
|
1074
970
|
bl_label: typing.Any
|
|
1075
|
-
bl_region_type: typing.Any
|
|
1076
971
|
bl_rna: typing.Any
|
|
1077
|
-
bl_space_type: typing.Any
|
|
1078
972
|
id_data: typing.Any
|
|
1079
973
|
|
|
1080
974
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1081
975
|
"""
|
|
1082
976
|
|
|
1083
977
|
:return: The RNA type or default when not found.
|
|
1084
|
-
:rtype: bpy.types.Struct
|
|
1085
978
|
"""
|
|
1086
979
|
|
|
1087
980
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1088
981
|
"""
|
|
1089
982
|
|
|
1090
983
|
:return: The class or default when not found.
|
|
1091
|
-
:rtype: typing.Any
|
|
1092
984
|
"""
|
|
1093
985
|
|
|
1094
986
|
def draw(self, context) -> None:
|
|
@@ -1097,34 +989,21 @@ class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1097
989
|
:param context:
|
|
1098
990
|
"""
|
|
1099
991
|
|
|
1100
|
-
|
|
1101
|
-
def poll(cls, context) -> None:
|
|
1102
|
-
"""
|
|
1103
|
-
|
|
1104
|
-
:param context:
|
|
1105
|
-
"""
|
|
1106
|
-
|
|
1107
|
-
class SEQUENCER_PT_adjust_crop(SequencerButtonsPanel, bpy.types.Panel):
|
|
1108
|
-
bl_category: typing.Any
|
|
992
|
+
class SEQUENCER_MT_view(_bpy_types.Menu):
|
|
1109
993
|
bl_label: typing.Any
|
|
1110
|
-
bl_options: typing.Any
|
|
1111
|
-
bl_region_type: typing.Any
|
|
1112
994
|
bl_rna: typing.Any
|
|
1113
|
-
bl_space_type: typing.Any
|
|
1114
995
|
id_data: typing.Any
|
|
1115
996
|
|
|
1116
997
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1117
998
|
"""
|
|
1118
999
|
|
|
1119
1000
|
:return: The RNA type or default when not found.
|
|
1120
|
-
:rtype: bpy.types.Struct
|
|
1121
1001
|
"""
|
|
1122
1002
|
|
|
1123
1003
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1124
1004
|
"""
|
|
1125
1005
|
|
|
1126
1006
|
:return: The class or default when not found.
|
|
1127
|
-
:rtype: typing.Any
|
|
1128
1007
|
"""
|
|
1129
1008
|
|
|
1130
1009
|
def draw(self, context) -> None:
|
|
@@ -1133,33 +1012,21 @@ class SEQUENCER_PT_adjust_crop(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1133
1012
|
:param context:
|
|
1134
1013
|
"""
|
|
1135
1014
|
|
|
1136
|
-
|
|
1137
|
-
def poll(cls, context) -> None:
|
|
1138
|
-
"""
|
|
1139
|
-
|
|
1140
|
-
:param context:
|
|
1141
|
-
"""
|
|
1142
|
-
|
|
1143
|
-
class SEQUENCER_PT_adjust_sound(SequencerButtonsPanel, bpy.types.Panel):
|
|
1144
|
-
bl_category: typing.Any
|
|
1015
|
+
class SEQUENCER_MT_view_pie(_bpy_types.Menu):
|
|
1145
1016
|
bl_label: typing.Any
|
|
1146
|
-
bl_region_type: typing.Any
|
|
1147
1017
|
bl_rna: typing.Any
|
|
1148
|
-
bl_space_type: typing.Any
|
|
1149
1018
|
id_data: typing.Any
|
|
1150
1019
|
|
|
1151
1020
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1152
1021
|
"""
|
|
1153
1022
|
|
|
1154
1023
|
:return: The RNA type or default when not found.
|
|
1155
|
-
:rtype: bpy.types.Struct
|
|
1156
1024
|
"""
|
|
1157
1025
|
|
|
1158
1026
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1159
1027
|
"""
|
|
1160
1028
|
|
|
1161
1029
|
:return: The class or default when not found.
|
|
1162
|
-
:rtype: typing.Any
|
|
1163
1030
|
"""
|
|
1164
1031
|
|
|
1165
1032
|
def draw(self, context) -> None:
|
|
@@ -1168,53 +1035,34 @@ class SEQUENCER_PT_adjust_sound(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1168
1035
|
:param context:
|
|
1169
1036
|
"""
|
|
1170
1037
|
|
|
1171
|
-
|
|
1172
|
-
def poll(cls, context) -> None:
|
|
1173
|
-
"""
|
|
1174
|
-
|
|
1175
|
-
:param context:
|
|
1176
|
-
"""
|
|
1177
|
-
|
|
1178
|
-
class SEQUENCER_PT_adjust_transform(SequencerButtonsPanel, bpy.types.Panel):
|
|
1179
|
-
bl_category: typing.Any
|
|
1038
|
+
class SEQUENCER_MT_view_render(_bpy_types.Menu):
|
|
1180
1039
|
bl_label: typing.Any
|
|
1181
|
-
bl_options: typing.Any
|
|
1182
|
-
bl_region_type: typing.Any
|
|
1183
1040
|
bl_rna: typing.Any
|
|
1184
|
-
bl_space_type: typing.Any
|
|
1185
1041
|
id_data: typing.Any
|
|
1186
1042
|
|
|
1187
1043
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1188
1044
|
"""
|
|
1189
1045
|
|
|
1190
1046
|
:return: The RNA type or default when not found.
|
|
1191
|
-
:rtype: bpy.types.Struct
|
|
1192
1047
|
"""
|
|
1193
1048
|
|
|
1194
1049
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1195
1050
|
"""
|
|
1196
1051
|
|
|
1197
1052
|
:return: The class or default when not found.
|
|
1198
|
-
:rtype: typing.Any
|
|
1199
|
-
"""
|
|
1200
|
-
|
|
1201
|
-
def draw(self, context) -> None:
|
|
1202
|
-
"""
|
|
1203
|
-
|
|
1204
|
-
:param context:
|
|
1205
1053
|
"""
|
|
1206
1054
|
|
|
1207
|
-
|
|
1208
|
-
def poll(cls, context) -> None:
|
|
1055
|
+
def draw(self, _context) -> None:
|
|
1209
1056
|
"""
|
|
1210
1057
|
|
|
1211
|
-
:param
|
|
1058
|
+
:param _context:
|
|
1212
1059
|
"""
|
|
1213
1060
|
|
|
1214
|
-
class
|
|
1061
|
+
class SEQUENCER_PT_active_tool(
|
|
1062
|
+
bl_ui.space_toolsystem_common.ToolActivePanelHelper, _bpy_types.Panel
|
|
1063
|
+
):
|
|
1215
1064
|
bl_category: typing.Any
|
|
1216
1065
|
bl_label: typing.Any
|
|
1217
|
-
bl_options: typing.Any
|
|
1218
1066
|
bl_region_type: typing.Any
|
|
1219
1067
|
bl_rna: typing.Any
|
|
1220
1068
|
bl_space_type: typing.Any
|
|
@@ -1224,33 +1072,18 @@ class SEQUENCER_PT_adjust_video(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1224
1072
|
"""
|
|
1225
1073
|
|
|
1226
1074
|
:return: The RNA type or default when not found.
|
|
1227
|
-
:rtype: bpy.types.Struct
|
|
1228
1075
|
"""
|
|
1229
1076
|
|
|
1230
1077
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1231
1078
|
"""
|
|
1232
1079
|
|
|
1233
1080
|
:return: The class or default when not found.
|
|
1234
|
-
:rtype: typing.Any
|
|
1235
|
-
"""
|
|
1236
|
-
|
|
1237
|
-
def draw(self, context) -> None:
|
|
1238
|
-
"""
|
|
1239
|
-
|
|
1240
|
-
:param context:
|
|
1241
|
-
"""
|
|
1242
|
-
|
|
1243
|
-
@classmethod
|
|
1244
|
-
def poll(cls, context) -> None:
|
|
1245
|
-
"""
|
|
1246
|
-
|
|
1247
|
-
:param context:
|
|
1248
1081
|
"""
|
|
1249
1082
|
|
|
1250
1083
|
class SEQUENCER_PT_annotation(
|
|
1251
1084
|
SequencerButtonsPanel_Output,
|
|
1252
1085
|
bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
|
|
1253
|
-
|
|
1086
|
+
_bpy_types.Panel,
|
|
1254
1087
|
):
|
|
1255
1088
|
bl_category: typing.Any
|
|
1256
1089
|
bl_label: typing.Any
|
|
@@ -1264,14 +1097,12 @@ class SEQUENCER_PT_annotation(
|
|
|
1264
1097
|
"""
|
|
1265
1098
|
|
|
1266
1099
|
:return: The RNA type or default when not found.
|
|
1267
|
-
:rtype: bpy.types.Struct
|
|
1268
1100
|
"""
|
|
1269
1101
|
|
|
1270
1102
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1271
1103
|
"""
|
|
1272
1104
|
|
|
1273
1105
|
:return: The class or default when not found.
|
|
1274
|
-
:rtype: typing.Any
|
|
1275
1106
|
"""
|
|
1276
1107
|
|
|
1277
1108
|
@staticmethod
|
|
@@ -1291,7 +1122,7 @@ class SEQUENCER_PT_annotation(
|
|
|
1291
1122
|
class SEQUENCER_PT_annotation_onion(
|
|
1292
1123
|
SequencerButtonsPanel_Output,
|
|
1293
1124
|
bl_ui.properties_grease_pencil_common.AnnotationOnionSkin,
|
|
1294
|
-
|
|
1125
|
+
_bpy_types.Panel,
|
|
1295
1126
|
):
|
|
1296
1127
|
bl_category: typing.Any
|
|
1297
1128
|
bl_label: typing.Any
|
|
@@ -1306,14 +1137,12 @@ class SEQUENCER_PT_annotation_onion(
|
|
|
1306
1137
|
"""
|
|
1307
1138
|
|
|
1308
1139
|
:return: The RNA type or default when not found.
|
|
1309
|
-
:rtype: bpy.types.Struct
|
|
1310
1140
|
"""
|
|
1311
1141
|
|
|
1312
1142
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1313
1143
|
"""
|
|
1314
1144
|
|
|
1315
1145
|
:return: The class or default when not found.
|
|
1316
|
-
:rtype: typing.Any
|
|
1317
1146
|
"""
|
|
1318
1147
|
|
|
1319
1148
|
@staticmethod
|
|
@@ -1330,7 +1159,7 @@ class SEQUENCER_PT_annotation_onion(
|
|
|
1330
1159
|
:param context:
|
|
1331
1160
|
"""
|
|
1332
1161
|
|
|
1333
|
-
class SEQUENCER_PT_cache_settings(SequencerButtonsPanel,
|
|
1162
|
+
class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, _bpy_types.Panel):
|
|
1334
1163
|
bl_category: typing.Any
|
|
1335
1164
|
bl_label: typing.Any
|
|
1336
1165
|
bl_region_type: typing.Any
|
|
@@ -1342,14 +1171,12 @@ class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1342
1171
|
"""
|
|
1343
1172
|
|
|
1344
1173
|
:return: The RNA type or default when not found.
|
|
1345
|
-
:rtype: bpy.types.Struct
|
|
1346
1174
|
"""
|
|
1347
1175
|
|
|
1348
1176
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1349
1177
|
"""
|
|
1350
1178
|
|
|
1351
1179
|
:return: The class or default when not found.
|
|
1352
|
-
:rtype: typing.Any
|
|
1353
1180
|
"""
|
|
1354
1181
|
|
|
1355
1182
|
def draw(self, context) -> None:
|
|
@@ -1365,7 +1192,7 @@ class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1365
1192
|
:param context:
|
|
1366
1193
|
"""
|
|
1367
1194
|
|
|
1368
|
-
class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel,
|
|
1195
|
+
class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, _bpy_types.Panel):
|
|
1369
1196
|
bl_category: typing.Any
|
|
1370
1197
|
bl_label: typing.Any
|
|
1371
1198
|
bl_parent_id: typing.Any
|
|
@@ -1378,14 +1205,12 @@ class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1378
1205
|
"""
|
|
1379
1206
|
|
|
1380
1207
|
:return: The RNA type or default when not found.
|
|
1381
|
-
:rtype: bpy.types.Struct
|
|
1382
1208
|
"""
|
|
1383
1209
|
|
|
1384
1210
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1385
1211
|
"""
|
|
1386
1212
|
|
|
1387
1213
|
:return: The class or default when not found.
|
|
1388
|
-
:rtype: typing.Any
|
|
1389
1214
|
"""
|
|
1390
1215
|
|
|
1391
1216
|
def draw(self, context) -> None:
|
|
@@ -1407,8 +1232,7 @@ class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1407
1232
|
:param context:
|
|
1408
1233
|
"""
|
|
1409
1234
|
|
|
1410
|
-
class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker,
|
|
1411
|
-
bl_category: typing.Any
|
|
1235
|
+
class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, _bpy_types.Panel):
|
|
1412
1236
|
bl_label: typing.Any
|
|
1413
1237
|
bl_options: typing.Any
|
|
1414
1238
|
bl_region_type: typing.Any
|
|
@@ -1420,14 +1244,12 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy.types.Panel):
|
|
|
1420
1244
|
"""
|
|
1421
1245
|
|
|
1422
1246
|
:return: The RNA type or default when not found.
|
|
1423
|
-
:rtype: bpy.types.Struct
|
|
1424
1247
|
"""
|
|
1425
1248
|
|
|
1426
1249
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1427
1250
|
"""
|
|
1428
1251
|
|
|
1429
1252
|
:return: The class or default when not found.
|
|
1430
|
-
:rtype: typing.Any
|
|
1431
1253
|
"""
|
|
1432
1254
|
|
|
1433
1255
|
def draw(self, _context) -> None:
|
|
@@ -1437,10 +1259,10 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy.types.Panel):
|
|
|
1437
1259
|
"""
|
|
1438
1260
|
|
|
1439
1261
|
class SEQUENCER_PT_custom_props(
|
|
1440
|
-
rna_prop_ui.PropertyPanel, SequencerButtonsPanel,
|
|
1262
|
+
rna_prop_ui.PropertyPanel, SequencerButtonsPanel, _bpy_types.Panel
|
|
1441
1263
|
):
|
|
1442
1264
|
"""The subclass should have its own poll function
|
|
1443
|
-
and the variable
|
|
1265
|
+
and the variable _context_path MUST be set.
|
|
1444
1266
|
"""
|
|
1445
1267
|
|
|
1446
1268
|
COMPAT_ENGINES: typing.Any
|
|
@@ -1457,19 +1279,18 @@ class SEQUENCER_PT_custom_props(
|
|
|
1457
1279
|
"""
|
|
1458
1280
|
|
|
1459
1281
|
:return: The RNA type or default when not found.
|
|
1460
|
-
:rtype: bpy.types.Struct
|
|
1461
1282
|
"""
|
|
1462
1283
|
|
|
1463
1284
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1464
1285
|
"""
|
|
1465
1286
|
|
|
1466
1287
|
:return: The class or default when not found.
|
|
1467
|
-
:rtype: typing.Any
|
|
1468
1288
|
"""
|
|
1469
1289
|
|
|
1470
|
-
class
|
|
1290
|
+
class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, _bpy_types.Panel):
|
|
1471
1291
|
bl_category: typing.Any
|
|
1472
1292
|
bl_label: typing.Any
|
|
1293
|
+
bl_options: typing.Any
|
|
1473
1294
|
bl_region_type: typing.Any
|
|
1474
1295
|
bl_rna: typing.Any
|
|
1475
1296
|
bl_space_type: typing.Any
|
|
@@ -1479,14 +1300,12 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1479
1300
|
"""
|
|
1480
1301
|
|
|
1481
1302
|
:return: The RNA type or default when not found.
|
|
1482
|
-
:rtype: bpy.types.Struct
|
|
1483
1303
|
"""
|
|
1484
1304
|
|
|
1485
1305
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1486
1306
|
"""
|
|
1487
1307
|
|
|
1488
1308
|
:return: The class or default when not found.
|
|
1489
|
-
:rtype: typing.Any
|
|
1490
1309
|
"""
|
|
1491
1310
|
|
|
1492
1311
|
def draw(self, context) -> None:
|
|
@@ -1495,6 +1314,12 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1495
1314
|
:param context:
|
|
1496
1315
|
"""
|
|
1497
1316
|
|
|
1317
|
+
def draw_header(self, context) -> None:
|
|
1318
|
+
"""
|
|
1319
|
+
|
|
1320
|
+
:param context:
|
|
1321
|
+
"""
|
|
1322
|
+
|
|
1498
1323
|
@classmethod
|
|
1499
1324
|
def poll(cls, context) -> None:
|
|
1500
1325
|
"""
|
|
@@ -1502,29 +1327,24 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1502
1327
|
:param context:
|
|
1503
1328
|
"""
|
|
1504
1329
|
|
|
1505
|
-
class
|
|
1506
|
-
bl_category: typing.Any
|
|
1330
|
+
class SEQUENCER_PT_gizmo_display(_bpy_types.Panel):
|
|
1507
1331
|
bl_label: typing.Any
|
|
1508
|
-
bl_options: typing.Any
|
|
1509
|
-
bl_parent_id: typing.Any
|
|
1510
1332
|
bl_region_type: typing.Any
|
|
1511
1333
|
bl_rna: typing.Any
|
|
1512
1334
|
bl_space_type: typing.Any
|
|
1513
|
-
|
|
1335
|
+
bl_ui_units_x: typing.Any
|
|
1514
1336
|
id_data: typing.Any
|
|
1515
1337
|
|
|
1516
1338
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1517
1339
|
"""
|
|
1518
1340
|
|
|
1519
1341
|
:return: The RNA type or default when not found.
|
|
1520
|
-
:rtype: bpy.types.Struct
|
|
1521
1342
|
"""
|
|
1522
1343
|
|
|
1523
1344
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1524
1345
|
"""
|
|
1525
1346
|
|
|
1526
1347
|
:return: The class or default when not found.
|
|
1527
|
-
:rtype: typing.Any
|
|
1528
1348
|
"""
|
|
1529
1349
|
|
|
1530
1350
|
def draw(self, context) -> None:
|
|
@@ -1533,23 +1353,36 @@ class SEQUENCER_PT_effect_text_box(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1533
1353
|
:param context:
|
|
1534
1354
|
"""
|
|
1535
1355
|
|
|
1536
|
-
|
|
1356
|
+
class SEQUENCER_PT_overlay(_bpy_types.Panel):
|
|
1357
|
+
bl_label: typing.Any
|
|
1358
|
+
bl_region_type: typing.Any
|
|
1359
|
+
bl_rna: typing.Any
|
|
1360
|
+
bl_space_type: typing.Any
|
|
1361
|
+
bl_ui_units_x: typing.Any
|
|
1362
|
+
id_data: typing.Any
|
|
1363
|
+
|
|
1364
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1537
1365
|
"""
|
|
1538
1366
|
|
|
1539
|
-
:
|
|
1367
|
+
:return: The RNA type or default when not found.
|
|
1540
1368
|
"""
|
|
1541
1369
|
|
|
1542
|
-
|
|
1543
|
-
def poll(cls, context) -> None:
|
|
1370
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1544
1371
|
"""
|
|
1545
1372
|
|
|
1546
|
-
:
|
|
1373
|
+
:return: The class or default when not found.
|
|
1374
|
+
"""
|
|
1375
|
+
|
|
1376
|
+
def draw(self, _context) -> None:
|
|
1377
|
+
"""
|
|
1378
|
+
|
|
1379
|
+
:param _context:
|
|
1547
1380
|
"""
|
|
1548
1381
|
|
|
1549
|
-
class
|
|
1382
|
+
class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, _bpy_types.Panel):
|
|
1550
1383
|
bl_category: typing.Any
|
|
1551
1384
|
bl_label: typing.Any
|
|
1552
|
-
|
|
1385
|
+
bl_options: typing.Any
|
|
1553
1386
|
bl_region_type: typing.Any
|
|
1554
1387
|
bl_rna: typing.Any
|
|
1555
1388
|
bl_space_type: typing.Any
|
|
@@ -1559,14 +1392,12 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1559
1392
|
"""
|
|
1560
1393
|
|
|
1561
1394
|
:return: The RNA type or default when not found.
|
|
1562
|
-
:rtype: bpy.types.Struct
|
|
1563
1395
|
"""
|
|
1564
1396
|
|
|
1565
1397
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1566
1398
|
"""
|
|
1567
1399
|
|
|
1568
1400
|
:return: The class or default when not found.
|
|
1569
|
-
:rtype: typing.Any
|
|
1570
1401
|
"""
|
|
1571
1402
|
|
|
1572
1403
|
def draw(self, context) -> None:
|
|
@@ -1582,10 +1413,8 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1582
1413
|
:param context:
|
|
1583
1414
|
"""
|
|
1584
1415
|
|
|
1585
|
-
class
|
|
1586
|
-
bl_category: typing.Any
|
|
1416
|
+
class SEQUENCER_PT_preview_overlay(_bpy_types.Panel):
|
|
1587
1417
|
bl_label: typing.Any
|
|
1588
|
-
bl_options: typing.Any
|
|
1589
1418
|
bl_parent_id: typing.Any
|
|
1590
1419
|
bl_region_type: typing.Any
|
|
1591
1420
|
bl_rna: typing.Any
|
|
@@ -1596,14 +1425,12 @@ class SEQUENCER_PT_effect_text_outline(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1596
1425
|
"""
|
|
1597
1426
|
|
|
1598
1427
|
:return: The RNA type or default when not found.
|
|
1599
|
-
:rtype: bpy.types.Struct
|
|
1600
1428
|
"""
|
|
1601
1429
|
|
|
1602
1430
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1603
1431
|
"""
|
|
1604
1432
|
|
|
1605
1433
|
:return: The class or default when not found.
|
|
1606
|
-
:rtype: typing.Any
|
|
1607
1434
|
"""
|
|
1608
1435
|
|
|
1609
1436
|
def draw(self, context) -> None:
|
|
@@ -1612,12 +1439,6 @@ class SEQUENCER_PT_effect_text_outline(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1612
1439
|
:param context:
|
|
1613
1440
|
"""
|
|
1614
1441
|
|
|
1615
|
-
def draw_header(self, context) -> None:
|
|
1616
|
-
"""
|
|
1617
|
-
|
|
1618
|
-
:param context:
|
|
1619
|
-
"""
|
|
1620
|
-
|
|
1621
1442
|
@classmethod
|
|
1622
1443
|
def poll(cls, context) -> None:
|
|
1623
1444
|
"""
|
|
@@ -1625,10 +1446,8 @@ class SEQUENCER_PT_effect_text_outline(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1625
1446
|
:param context:
|
|
1626
1447
|
"""
|
|
1627
1448
|
|
|
1628
|
-
class
|
|
1629
|
-
bl_category: typing.Any
|
|
1449
|
+
class SEQUENCER_PT_preview_snapping(_bpy_types.Panel):
|
|
1630
1450
|
bl_label: typing.Any
|
|
1631
|
-
bl_options: typing.Any
|
|
1632
1451
|
bl_parent_id: typing.Any
|
|
1633
1452
|
bl_region_type: typing.Any
|
|
1634
1453
|
bl_rna: typing.Any
|
|
@@ -1639,14 +1458,12 @@ class SEQUENCER_PT_effect_text_shadow(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1639
1458
|
"""
|
|
1640
1459
|
|
|
1641
1460
|
:return: The RNA type or default when not found.
|
|
1642
|
-
:rtype: bpy.types.Struct
|
|
1643
1461
|
"""
|
|
1644
1462
|
|
|
1645
1463
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1646
1464
|
"""
|
|
1647
1465
|
|
|
1648
1466
|
:return: The class or default when not found.
|
|
1649
|
-
:rtype: typing.Any
|
|
1650
1467
|
"""
|
|
1651
1468
|
|
|
1652
1469
|
def draw(self, context) -> None:
|
|
@@ -1655,12 +1472,6 @@ class SEQUENCER_PT_effect_text_shadow(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1655
1472
|
:param context:
|
|
1656
1473
|
"""
|
|
1657
1474
|
|
|
1658
|
-
def draw_header(self, context) -> None:
|
|
1659
|
-
"""
|
|
1660
|
-
|
|
1661
|
-
:param context:
|
|
1662
|
-
"""
|
|
1663
|
-
|
|
1664
1475
|
@classmethod
|
|
1665
1476
|
def poll(cls, context) -> None:
|
|
1666
1477
|
"""
|
|
@@ -1668,10 +1479,9 @@ class SEQUENCER_PT_effect_text_shadow(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1668
1479
|
:param context:
|
|
1669
1480
|
"""
|
|
1670
1481
|
|
|
1671
|
-
class
|
|
1482
|
+
class SEQUENCER_PT_proxy_settings(SequencerButtonsPanel, _bpy_types.Panel):
|
|
1672
1483
|
bl_category: typing.Any
|
|
1673
1484
|
bl_label: typing.Any
|
|
1674
|
-
bl_parent_id: typing.Any
|
|
1675
1485
|
bl_region_type: typing.Any
|
|
1676
1486
|
bl_rna: typing.Any
|
|
1677
1487
|
bl_space_type: typing.Any
|
|
@@ -1681,14 +1491,12 @@ class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1681
1491
|
"""
|
|
1682
1492
|
|
|
1683
1493
|
:return: The RNA type or default when not found.
|
|
1684
|
-
:rtype: bpy.types.Struct
|
|
1685
1494
|
"""
|
|
1686
1495
|
|
|
1687
1496
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1688
1497
|
"""
|
|
1689
1498
|
|
|
1690
1499
|
:return: The class or default when not found.
|
|
1691
|
-
:rtype: typing.Any
|
|
1692
1500
|
"""
|
|
1693
1501
|
|
|
1694
1502
|
def draw(self, context) -> None:
|
|
@@ -1704,10 +1512,9 @@ class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1704
1512
|
:param context:
|
|
1705
1513
|
"""
|
|
1706
1514
|
|
|
1707
|
-
class
|
|
1708
|
-
bl_category: typing.Any
|
|
1515
|
+
class SEQUENCER_PT_sequencer_overlay(_bpy_types.Panel):
|
|
1709
1516
|
bl_label: typing.Any
|
|
1710
|
-
|
|
1517
|
+
bl_parent_id: typing.Any
|
|
1711
1518
|
bl_region_type: typing.Any
|
|
1712
1519
|
bl_rna: typing.Any
|
|
1713
1520
|
bl_space_type: typing.Any
|
|
@@ -1717,14 +1524,12 @@ class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
|
1717
1524
|
"""
|
|
1718
1525
|
|
|
1719
1526
|
:return: The RNA type or default when not found.
|
|
1720
|
-
:rtype: bpy.types.Struct
|
|
1721
1527
|
"""
|
|
1722
1528
|
|
|
1723
1529
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1724
1530
|
"""
|
|
1725
1531
|
|
|
1726
1532
|
:return: The class or default when not found.
|
|
1727
|
-
:rtype: typing.Any
|
|
1728
1533
|
"""
|
|
1729
1534
|
|
|
1730
1535
|
def draw(self, context) -> None:
|
|
@@ -1733,12 +1538,6 @@ class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
|
1733
1538
|
:param context:
|
|
1734
1539
|
"""
|
|
1735
1540
|
|
|
1736
|
-
def draw_header(self, context) -> None:
|
|
1737
|
-
"""
|
|
1738
|
-
|
|
1739
|
-
:param context:
|
|
1740
|
-
"""
|
|
1741
|
-
|
|
1742
1541
|
@classmethod
|
|
1743
1542
|
def poll(cls, context) -> None:
|
|
1744
1543
|
"""
|
|
@@ -1746,443 +1545,24 @@ class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
|
1746
1545
|
:param context:
|
|
1747
1546
|
"""
|
|
1748
1547
|
|
|
1749
|
-
class
|
|
1548
|
+
class SEQUENCER_PT_sequencer_overlay_strips(_bpy_types.Panel):
|
|
1750
1549
|
bl_label: typing.Any
|
|
1550
|
+
bl_parent_id: typing.Any
|
|
1751
1551
|
bl_region_type: typing.Any
|
|
1752
1552
|
bl_rna: typing.Any
|
|
1753
1553
|
bl_space_type: typing.Any
|
|
1754
|
-
bl_ui_units_x: typing.Any
|
|
1755
1554
|
id_data: typing.Any
|
|
1756
1555
|
|
|
1757
1556
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1758
1557
|
"""
|
|
1759
1558
|
|
|
1760
1559
|
:return: The RNA type or default when not found.
|
|
1761
|
-
:rtype: bpy.types.Struct
|
|
1762
1560
|
"""
|
|
1763
1561
|
|
|
1764
1562
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1765
1563
|
"""
|
|
1766
1564
|
|
|
1767
1565
|
:return: The class or default when not found.
|
|
1768
|
-
:rtype: typing.Any
|
|
1769
|
-
"""
|
|
1770
|
-
|
|
1771
|
-
def draw(self, context) -> None:
|
|
1772
|
-
"""
|
|
1773
|
-
|
|
1774
|
-
:param context:
|
|
1775
|
-
"""
|
|
1776
|
-
|
|
1777
|
-
class SEQUENCER_PT_mask(SequencerButtonsPanel, bpy.types.Panel):
|
|
1778
|
-
bl_category: typing.Any
|
|
1779
|
-
bl_label: typing.Any
|
|
1780
|
-
bl_region_type: typing.Any
|
|
1781
|
-
bl_rna: typing.Any
|
|
1782
|
-
bl_space_type: typing.Any
|
|
1783
|
-
id_data: typing.Any
|
|
1784
|
-
|
|
1785
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1786
|
-
"""
|
|
1787
|
-
|
|
1788
|
-
:return: The RNA type or default when not found.
|
|
1789
|
-
:rtype: bpy.types.Struct
|
|
1790
|
-
"""
|
|
1791
|
-
|
|
1792
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1793
|
-
"""
|
|
1794
|
-
|
|
1795
|
-
:return: The class or default when not found.
|
|
1796
|
-
:rtype: typing.Any
|
|
1797
|
-
"""
|
|
1798
|
-
|
|
1799
|
-
def draw(self, context) -> None:
|
|
1800
|
-
"""
|
|
1801
|
-
|
|
1802
|
-
:param context:
|
|
1803
|
-
"""
|
|
1804
|
-
|
|
1805
|
-
@classmethod
|
|
1806
|
-
def poll(cls, context) -> None:
|
|
1807
|
-
"""
|
|
1808
|
-
|
|
1809
|
-
:param context:
|
|
1810
|
-
"""
|
|
1811
|
-
|
|
1812
|
-
class SEQUENCER_PT_modifiers(SequencerButtonsPanel, bpy.types.Panel):
|
|
1813
|
-
bl_category: typing.Any
|
|
1814
|
-
bl_label: typing.Any
|
|
1815
|
-
bl_region_type: typing.Any
|
|
1816
|
-
bl_rna: typing.Any
|
|
1817
|
-
bl_space_type: typing.Any
|
|
1818
|
-
id_data: typing.Any
|
|
1819
|
-
|
|
1820
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1821
|
-
"""
|
|
1822
|
-
|
|
1823
|
-
:return: The RNA type or default when not found.
|
|
1824
|
-
:rtype: bpy.types.Struct
|
|
1825
|
-
"""
|
|
1826
|
-
|
|
1827
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1828
|
-
"""
|
|
1829
|
-
|
|
1830
|
-
:return: The class or default when not found.
|
|
1831
|
-
:rtype: typing.Any
|
|
1832
|
-
"""
|
|
1833
|
-
|
|
1834
|
-
def draw(self, context) -> None:
|
|
1835
|
-
"""
|
|
1836
|
-
|
|
1837
|
-
:param context:
|
|
1838
|
-
"""
|
|
1839
|
-
|
|
1840
|
-
class SEQUENCER_PT_movie_clip(SequencerButtonsPanel, bpy.types.Panel):
|
|
1841
|
-
bl_category: typing.Any
|
|
1842
|
-
bl_label: typing.Any
|
|
1843
|
-
bl_options: typing.Any
|
|
1844
|
-
bl_region_type: typing.Any
|
|
1845
|
-
bl_rna: typing.Any
|
|
1846
|
-
bl_space_type: typing.Any
|
|
1847
|
-
id_data: typing.Any
|
|
1848
|
-
|
|
1849
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1850
|
-
"""
|
|
1851
|
-
|
|
1852
|
-
:return: The RNA type or default when not found.
|
|
1853
|
-
:rtype: bpy.types.Struct
|
|
1854
|
-
"""
|
|
1855
|
-
|
|
1856
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1857
|
-
"""
|
|
1858
|
-
|
|
1859
|
-
:return: The class or default when not found.
|
|
1860
|
-
:rtype: typing.Any
|
|
1861
|
-
"""
|
|
1862
|
-
|
|
1863
|
-
def draw(self, context) -> None:
|
|
1864
|
-
"""
|
|
1865
|
-
|
|
1866
|
-
:param context:
|
|
1867
|
-
"""
|
|
1868
|
-
|
|
1869
|
-
@classmethod
|
|
1870
|
-
def poll(cls, context) -> None:
|
|
1871
|
-
"""
|
|
1872
|
-
|
|
1873
|
-
:param context:
|
|
1874
|
-
"""
|
|
1875
|
-
|
|
1876
|
-
class SEQUENCER_PT_overlay(bpy.types.Panel):
|
|
1877
|
-
bl_label: typing.Any
|
|
1878
|
-
bl_region_type: typing.Any
|
|
1879
|
-
bl_rna: typing.Any
|
|
1880
|
-
bl_space_type: typing.Any
|
|
1881
|
-
bl_ui_units_x: typing.Any
|
|
1882
|
-
id_data: typing.Any
|
|
1883
|
-
|
|
1884
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1885
|
-
"""
|
|
1886
|
-
|
|
1887
|
-
:return: The RNA type or default when not found.
|
|
1888
|
-
:rtype: bpy.types.Struct
|
|
1889
|
-
"""
|
|
1890
|
-
|
|
1891
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1892
|
-
"""
|
|
1893
|
-
|
|
1894
|
-
:return: The class or default when not found.
|
|
1895
|
-
:rtype: typing.Any
|
|
1896
|
-
"""
|
|
1897
|
-
|
|
1898
|
-
def draw(self, _context) -> None:
|
|
1899
|
-
"""
|
|
1900
|
-
|
|
1901
|
-
:param _context:
|
|
1902
|
-
"""
|
|
1903
|
-
|
|
1904
|
-
class SEQUENCER_PT_playhead_snapping(
|
|
1905
|
-
bl_ui.utils.PlayheadSnappingPanel, bpy.types.Panel
|
|
1906
|
-
):
|
|
1907
|
-
bl_label: typing.Any
|
|
1908
|
-
bl_region_type: typing.Any
|
|
1909
|
-
bl_rna: typing.Any
|
|
1910
|
-
bl_space_type: typing.Any
|
|
1911
|
-
id_data: typing.Any
|
|
1912
|
-
|
|
1913
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1914
|
-
"""
|
|
1915
|
-
|
|
1916
|
-
:return: The RNA type or default when not found.
|
|
1917
|
-
:rtype: bpy.types.Struct
|
|
1918
|
-
"""
|
|
1919
|
-
|
|
1920
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1921
|
-
"""
|
|
1922
|
-
|
|
1923
|
-
:return: The class or default when not found.
|
|
1924
|
-
:rtype: typing.Any
|
|
1925
|
-
"""
|
|
1926
|
-
|
|
1927
|
-
class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
1928
|
-
bl_category: typing.Any
|
|
1929
|
-
bl_label: typing.Any
|
|
1930
|
-
bl_options: typing.Any
|
|
1931
|
-
bl_region_type: typing.Any
|
|
1932
|
-
bl_rna: typing.Any
|
|
1933
|
-
bl_space_type: typing.Any
|
|
1934
|
-
id_data: typing.Any
|
|
1935
|
-
|
|
1936
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1937
|
-
"""
|
|
1938
|
-
|
|
1939
|
-
:return: The RNA type or default when not found.
|
|
1940
|
-
:rtype: bpy.types.Struct
|
|
1941
|
-
"""
|
|
1942
|
-
|
|
1943
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1944
|
-
"""
|
|
1945
|
-
|
|
1946
|
-
:return: The class or default when not found.
|
|
1947
|
-
:rtype: typing.Any
|
|
1948
|
-
"""
|
|
1949
|
-
|
|
1950
|
-
def draw(self, context) -> None:
|
|
1951
|
-
"""
|
|
1952
|
-
|
|
1953
|
-
:param context:
|
|
1954
|
-
"""
|
|
1955
|
-
|
|
1956
|
-
class SEQUENCER_PT_preview_overlay(bpy.types.Panel):
|
|
1957
|
-
bl_label: typing.Any
|
|
1958
|
-
bl_parent_id: typing.Any
|
|
1959
|
-
bl_region_type: typing.Any
|
|
1960
|
-
bl_rna: typing.Any
|
|
1961
|
-
bl_space_type: typing.Any
|
|
1962
|
-
id_data: typing.Any
|
|
1963
|
-
|
|
1964
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1965
|
-
"""
|
|
1966
|
-
|
|
1967
|
-
:return: The RNA type or default when not found.
|
|
1968
|
-
:rtype: bpy.types.Struct
|
|
1969
|
-
"""
|
|
1970
|
-
|
|
1971
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1972
|
-
"""
|
|
1973
|
-
|
|
1974
|
-
:return: The class or default when not found.
|
|
1975
|
-
:rtype: typing.Any
|
|
1976
|
-
"""
|
|
1977
|
-
|
|
1978
|
-
def draw(self, context) -> None:
|
|
1979
|
-
"""
|
|
1980
|
-
|
|
1981
|
-
:param context:
|
|
1982
|
-
"""
|
|
1983
|
-
|
|
1984
|
-
@classmethod
|
|
1985
|
-
def poll(cls, context) -> None:
|
|
1986
|
-
"""
|
|
1987
|
-
|
|
1988
|
-
:param context:
|
|
1989
|
-
"""
|
|
1990
|
-
|
|
1991
|
-
class SEQUENCER_PT_preview_snapping(bpy.types.Panel):
|
|
1992
|
-
bl_label: typing.Any
|
|
1993
|
-
bl_parent_id: typing.Any
|
|
1994
|
-
bl_region_type: typing.Any
|
|
1995
|
-
bl_rna: typing.Any
|
|
1996
|
-
bl_space_type: typing.Any
|
|
1997
|
-
id_data: typing.Any
|
|
1998
|
-
|
|
1999
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2000
|
-
"""
|
|
2001
|
-
|
|
2002
|
-
:return: The RNA type or default when not found.
|
|
2003
|
-
:rtype: bpy.types.Struct
|
|
2004
|
-
"""
|
|
2005
|
-
|
|
2006
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2007
|
-
"""
|
|
2008
|
-
|
|
2009
|
-
:return: The class or default when not found.
|
|
2010
|
-
:rtype: typing.Any
|
|
2011
|
-
"""
|
|
2012
|
-
|
|
2013
|
-
def draw(self, context) -> None:
|
|
2014
|
-
"""
|
|
2015
|
-
|
|
2016
|
-
:param context:
|
|
2017
|
-
"""
|
|
2018
|
-
|
|
2019
|
-
@classmethod
|
|
2020
|
-
def poll(cls, context) -> None:
|
|
2021
|
-
"""
|
|
2022
|
-
|
|
2023
|
-
:param context:
|
|
2024
|
-
"""
|
|
2025
|
-
|
|
2026
|
-
class SEQUENCER_PT_proxy_settings(SequencerButtonsPanel, bpy.types.Panel):
|
|
2027
|
-
bl_category: typing.Any
|
|
2028
|
-
bl_label: typing.Any
|
|
2029
|
-
bl_region_type: typing.Any
|
|
2030
|
-
bl_rna: typing.Any
|
|
2031
|
-
bl_space_type: typing.Any
|
|
2032
|
-
id_data: typing.Any
|
|
2033
|
-
|
|
2034
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2035
|
-
"""
|
|
2036
|
-
|
|
2037
|
-
:return: The RNA type or default when not found.
|
|
2038
|
-
:rtype: bpy.types.Struct
|
|
2039
|
-
"""
|
|
2040
|
-
|
|
2041
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2042
|
-
"""
|
|
2043
|
-
|
|
2044
|
-
:return: The class or default when not found.
|
|
2045
|
-
:rtype: typing.Any
|
|
2046
|
-
"""
|
|
2047
|
-
|
|
2048
|
-
def draw(self, context) -> None:
|
|
2049
|
-
"""
|
|
2050
|
-
|
|
2051
|
-
:param context:
|
|
2052
|
-
"""
|
|
2053
|
-
|
|
2054
|
-
@classmethod
|
|
2055
|
-
def poll(cls, context) -> None:
|
|
2056
|
-
"""
|
|
2057
|
-
|
|
2058
|
-
:param context:
|
|
2059
|
-
"""
|
|
2060
|
-
|
|
2061
|
-
class SEQUENCER_PT_scene(SequencerButtonsPanel, bpy.types.Panel):
|
|
2062
|
-
bl_category: typing.Any
|
|
2063
|
-
bl_label: typing.Any
|
|
2064
|
-
bl_region_type: typing.Any
|
|
2065
|
-
bl_rna: typing.Any
|
|
2066
|
-
bl_space_type: typing.Any
|
|
2067
|
-
id_data: typing.Any
|
|
2068
|
-
|
|
2069
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2070
|
-
"""
|
|
2071
|
-
|
|
2072
|
-
:return: The RNA type or default when not found.
|
|
2073
|
-
:rtype: bpy.types.Struct
|
|
2074
|
-
"""
|
|
2075
|
-
|
|
2076
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2077
|
-
"""
|
|
2078
|
-
|
|
2079
|
-
:return: The class or default when not found.
|
|
2080
|
-
:rtype: typing.Any
|
|
2081
|
-
"""
|
|
2082
|
-
|
|
2083
|
-
def draw(self, context) -> None:
|
|
2084
|
-
"""
|
|
2085
|
-
|
|
2086
|
-
:param context:
|
|
2087
|
-
"""
|
|
2088
|
-
|
|
2089
|
-
@classmethod
|
|
2090
|
-
def poll(cls, context) -> None:
|
|
2091
|
-
"""
|
|
2092
|
-
|
|
2093
|
-
:param context:
|
|
2094
|
-
"""
|
|
2095
|
-
|
|
2096
|
-
class SEQUENCER_PT_scene_sound(SequencerButtonsPanel, bpy.types.Panel):
|
|
2097
|
-
bl_category: typing.Any
|
|
2098
|
-
bl_label: typing.Any
|
|
2099
|
-
bl_region_type: typing.Any
|
|
2100
|
-
bl_rna: typing.Any
|
|
2101
|
-
bl_space_type: typing.Any
|
|
2102
|
-
id_data: typing.Any
|
|
2103
|
-
|
|
2104
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2105
|
-
"""
|
|
2106
|
-
|
|
2107
|
-
:return: The RNA type or default when not found.
|
|
2108
|
-
:rtype: bpy.types.Struct
|
|
2109
|
-
"""
|
|
2110
|
-
|
|
2111
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2112
|
-
"""
|
|
2113
|
-
|
|
2114
|
-
:return: The class or default when not found.
|
|
2115
|
-
:rtype: typing.Any
|
|
2116
|
-
"""
|
|
2117
|
-
|
|
2118
|
-
def draw(self, context) -> None:
|
|
2119
|
-
"""
|
|
2120
|
-
|
|
2121
|
-
:param context:
|
|
2122
|
-
"""
|
|
2123
|
-
|
|
2124
|
-
@classmethod
|
|
2125
|
-
def poll(cls, context) -> None:
|
|
2126
|
-
"""
|
|
2127
|
-
|
|
2128
|
-
:param context:
|
|
2129
|
-
"""
|
|
2130
|
-
|
|
2131
|
-
class SEQUENCER_PT_sequencer_overlay(bpy.types.Panel):
|
|
2132
|
-
bl_label: typing.Any
|
|
2133
|
-
bl_parent_id: typing.Any
|
|
2134
|
-
bl_region_type: typing.Any
|
|
2135
|
-
bl_rna: typing.Any
|
|
2136
|
-
bl_space_type: typing.Any
|
|
2137
|
-
id_data: typing.Any
|
|
2138
|
-
|
|
2139
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2140
|
-
"""
|
|
2141
|
-
|
|
2142
|
-
:return: The RNA type or default when not found.
|
|
2143
|
-
:rtype: bpy.types.Struct
|
|
2144
|
-
"""
|
|
2145
|
-
|
|
2146
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2147
|
-
"""
|
|
2148
|
-
|
|
2149
|
-
:return: The class or default when not found.
|
|
2150
|
-
:rtype: typing.Any
|
|
2151
|
-
"""
|
|
2152
|
-
|
|
2153
|
-
def draw(self, context) -> None:
|
|
2154
|
-
"""
|
|
2155
|
-
|
|
2156
|
-
:param context:
|
|
2157
|
-
"""
|
|
2158
|
-
|
|
2159
|
-
@classmethod
|
|
2160
|
-
def poll(cls, context) -> None:
|
|
2161
|
-
"""
|
|
2162
|
-
|
|
2163
|
-
:param context:
|
|
2164
|
-
"""
|
|
2165
|
-
|
|
2166
|
-
class SEQUENCER_PT_sequencer_overlay_strips(bpy.types.Panel):
|
|
2167
|
-
bl_label: typing.Any
|
|
2168
|
-
bl_parent_id: typing.Any
|
|
2169
|
-
bl_region_type: typing.Any
|
|
2170
|
-
bl_rna: typing.Any
|
|
2171
|
-
bl_space_type: typing.Any
|
|
2172
|
-
id_data: typing.Any
|
|
2173
|
-
|
|
2174
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2175
|
-
"""
|
|
2176
|
-
|
|
2177
|
-
:return: The RNA type or default when not found.
|
|
2178
|
-
:rtype: bpy.types.Struct
|
|
2179
|
-
"""
|
|
2180
|
-
|
|
2181
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2182
|
-
"""
|
|
2183
|
-
|
|
2184
|
-
:return: The class or default when not found.
|
|
2185
|
-
:rtype: typing.Any
|
|
2186
1566
|
"""
|
|
2187
1567
|
|
|
2188
1568
|
def draw(self, context) -> None:
|
|
@@ -2198,7 +1578,7 @@ class SEQUENCER_PT_sequencer_overlay_strips(bpy.types.Panel):
|
|
|
2198
1578
|
:param context:
|
|
2199
1579
|
"""
|
|
2200
1580
|
|
|
2201
|
-
class SEQUENCER_PT_sequencer_overlay_waveforms(
|
|
1581
|
+
class SEQUENCER_PT_sequencer_overlay_waveforms(_bpy_types.Panel):
|
|
2202
1582
|
bl_label: typing.Any
|
|
2203
1583
|
bl_parent_id: typing.Any
|
|
2204
1584
|
bl_region_type: typing.Any
|
|
@@ -2210,14 +1590,12 @@ class SEQUENCER_PT_sequencer_overlay_waveforms(bpy.types.Panel):
|
|
|
2210
1590
|
"""
|
|
2211
1591
|
|
|
2212
1592
|
:return: The RNA type or default when not found.
|
|
2213
|
-
:rtype: bpy.types.Struct
|
|
2214
1593
|
"""
|
|
2215
1594
|
|
|
2216
1595
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2217
1596
|
"""
|
|
2218
1597
|
|
|
2219
1598
|
:return: The class or default when not found.
|
|
2220
|
-
:rtype: typing.Any
|
|
2221
1599
|
"""
|
|
2222
1600
|
|
|
2223
1601
|
def draw(self, context) -> None:
|
|
@@ -2233,7 +1611,7 @@ class SEQUENCER_PT_sequencer_overlay_waveforms(bpy.types.Panel):
|
|
|
2233
1611
|
:param context:
|
|
2234
1612
|
"""
|
|
2235
1613
|
|
|
2236
|
-
class SEQUENCER_PT_sequencer_snapping(
|
|
1614
|
+
class SEQUENCER_PT_sequencer_snapping(_bpy_types.Panel):
|
|
2237
1615
|
bl_label: typing.Any
|
|
2238
1616
|
bl_parent_id: typing.Any
|
|
2239
1617
|
bl_region_type: typing.Any
|
|
@@ -2245,14 +1623,12 @@ class SEQUENCER_PT_sequencer_snapping(bpy.types.Panel):
|
|
|
2245
1623
|
"""
|
|
2246
1624
|
|
|
2247
1625
|
:return: The RNA type or default when not found.
|
|
2248
|
-
:rtype: bpy.types.Struct
|
|
2249
1626
|
"""
|
|
2250
1627
|
|
|
2251
1628
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2252
1629
|
"""
|
|
2253
1630
|
|
|
2254
1631
|
:return: The class or default when not found.
|
|
2255
|
-
:rtype: typing.Any
|
|
2256
1632
|
"""
|
|
2257
1633
|
|
|
2258
1634
|
def draw(self, context) -> None:
|
|
@@ -2268,7 +1644,7 @@ class SEQUENCER_PT_sequencer_snapping(bpy.types.Panel):
|
|
|
2268
1644
|
:param context:
|
|
2269
1645
|
"""
|
|
2270
1646
|
|
|
2271
|
-
class SEQUENCER_PT_snapping(
|
|
1647
|
+
class SEQUENCER_PT_snapping(_bpy_types.Panel):
|
|
2272
1648
|
bl_label: typing.Any
|
|
2273
1649
|
bl_region_type: typing.Any
|
|
2274
1650
|
bl_rna: typing.Any
|
|
@@ -2280,14 +1656,12 @@ class SEQUENCER_PT_snapping(bpy.types.Panel):
|
|
|
2280
1656
|
"""
|
|
2281
1657
|
|
|
2282
1658
|
:return: The RNA type or default when not found.
|
|
2283
|
-
:rtype: bpy.types.Struct
|
|
2284
1659
|
"""
|
|
2285
1660
|
|
|
2286
1661
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2287
1662
|
"""
|
|
2288
1663
|
|
|
2289
1664
|
:return: The class or default when not found.
|
|
2290
|
-
:rtype: typing.Any
|
|
2291
1665
|
"""
|
|
2292
1666
|
|
|
2293
1667
|
def draw(self, _context) -> None:
|
|
@@ -2296,46 +1670,9 @@ class SEQUENCER_PT_snapping(bpy.types.Panel):
|
|
|
2296
1670
|
:param _context:
|
|
2297
1671
|
"""
|
|
2298
1672
|
|
|
2299
|
-
class
|
|
2300
|
-
bl_category: typing.Any
|
|
2301
|
-
bl_label: typing.Any
|
|
2302
|
-
bl_options: typing.Any
|
|
2303
|
-
bl_region_type: typing.Any
|
|
2304
|
-
bl_rna: typing.Any
|
|
2305
|
-
bl_space_type: typing.Any
|
|
2306
|
-
id_data: typing.Any
|
|
2307
|
-
|
|
2308
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2309
|
-
"""
|
|
2310
|
-
|
|
2311
|
-
:return: The RNA type or default when not found.
|
|
2312
|
-
:rtype: bpy.types.Struct
|
|
2313
|
-
"""
|
|
2314
|
-
|
|
2315
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2316
|
-
"""
|
|
2317
|
-
|
|
2318
|
-
:return: The class or default when not found.
|
|
2319
|
-
:rtype: typing.Any
|
|
2320
|
-
"""
|
|
2321
|
-
|
|
2322
|
-
def draw(self, context) -> None:
|
|
2323
|
-
"""
|
|
2324
|
-
|
|
2325
|
-
:param context:
|
|
2326
|
-
"""
|
|
2327
|
-
|
|
2328
|
-
@classmethod
|
|
2329
|
-
def poll(cls, context) -> None:
|
|
2330
|
-
"""
|
|
2331
|
-
|
|
2332
|
-
:param context:
|
|
2333
|
-
"""
|
|
2334
|
-
|
|
2335
|
-
class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy.types.Panel):
|
|
1673
|
+
class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, _bpy_types.Panel):
|
|
2336
1674
|
bl_category: typing.Any
|
|
2337
1675
|
bl_label: typing.Any
|
|
2338
|
-
bl_options: typing.Any
|
|
2339
1676
|
bl_region_type: typing.Any
|
|
2340
1677
|
bl_rna: typing.Any
|
|
2341
1678
|
bl_space_type: typing.Any
|
|
@@ -2345,42 +1682,12 @@ class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
2345
1682
|
"""
|
|
2346
1683
|
|
|
2347
1684
|
:return: The RNA type or default when not found.
|
|
2348
|
-
:rtype: bpy.types.Struct
|
|
2349
1685
|
"""
|
|
2350
1686
|
|
|
2351
1687
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2352
1688
|
"""
|
|
2353
1689
|
|
|
2354
1690
|
:return: The class or default when not found.
|
|
2355
|
-
:rtype: typing.Any
|
|
2356
|
-
"""
|
|
2357
|
-
|
|
2358
|
-
def draw(self, context) -> None:
|
|
2359
|
-
"""
|
|
2360
|
-
|
|
2361
|
-
:param context:
|
|
2362
|
-
"""
|
|
2363
|
-
|
|
2364
|
-
class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy.types.Panel):
|
|
2365
|
-
bl_category: typing.Any
|
|
2366
|
-
bl_label: typing.Any
|
|
2367
|
-
bl_region_type: typing.Any
|
|
2368
|
-
bl_rna: typing.Any
|
|
2369
|
-
bl_space_type: typing.Any
|
|
2370
|
-
id_data: typing.Any
|
|
2371
|
-
|
|
2372
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2373
|
-
"""
|
|
2374
|
-
|
|
2375
|
-
:return: The RNA type or default when not found.
|
|
2376
|
-
:rtype: bpy.types.Struct
|
|
2377
|
-
"""
|
|
2378
|
-
|
|
2379
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2380
|
-
"""
|
|
2381
|
-
|
|
2382
|
-
:return: The class or default when not found.
|
|
2383
|
-
:rtype: typing.Any
|
|
2384
1691
|
"""
|
|
2385
1692
|
|
|
2386
1693
|
def draw(self, context) -> None:
|
|
@@ -2402,10 +1709,9 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
2402
1709
|
:param context:
|
|
2403
1710
|
"""
|
|
2404
1711
|
|
|
2405
|
-
class
|
|
1712
|
+
class SEQUENCER_PT_view(SequencerButtonsPanel_Output, _bpy_types.Panel):
|
|
2406
1713
|
bl_category: typing.Any
|
|
2407
1714
|
bl_label: typing.Any
|
|
2408
|
-
bl_options: typing.Any
|
|
2409
1715
|
bl_region_type: typing.Any
|
|
2410
1716
|
bl_rna: typing.Any
|
|
2411
1717
|
bl_space_type: typing.Any
|
|
@@ -2415,14 +1721,12 @@ class SEQUENCER_PT_time(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
2415
1721
|
"""
|
|
2416
1722
|
|
|
2417
1723
|
:return: The RNA type or default when not found.
|
|
2418
|
-
:rtype: bpy.types.Struct
|
|
2419
1724
|
"""
|
|
2420
1725
|
|
|
2421
1726
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2422
1727
|
"""
|
|
2423
1728
|
|
|
2424
1729
|
:return: The class or default when not found.
|
|
2425
|
-
:rtype: typing.Any
|
|
2426
1730
|
"""
|
|
2427
1731
|
|
|
2428
1732
|
def draw(self, context) -> None:
|
|
@@ -2431,20 +1735,7 @@ class SEQUENCER_PT_time(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
2431
1735
|
:param context:
|
|
2432
1736
|
"""
|
|
2433
1737
|
|
|
2434
|
-
|
|
2435
|
-
"""
|
|
2436
|
-
|
|
2437
|
-
:param context:
|
|
2438
|
-
"""
|
|
2439
|
-
|
|
2440
|
-
@classmethod
|
|
2441
|
-
def poll(cls, context) -> None:
|
|
2442
|
-
"""
|
|
2443
|
-
|
|
2444
|
-
:param context:
|
|
2445
|
-
"""
|
|
2446
|
-
|
|
2447
|
-
class SEQUENCER_PT_view(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
1738
|
+
class SEQUENCER_PT_view_cursor(SequencerButtonsPanel_Output, _bpy_types.Panel):
|
|
2448
1739
|
bl_category: typing.Any
|
|
2449
1740
|
bl_label: typing.Any
|
|
2450
1741
|
bl_region_type: typing.Any
|
|
@@ -2456,14 +1747,12 @@ class SEQUENCER_PT_view(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
|
2456
1747
|
"""
|
|
2457
1748
|
|
|
2458
1749
|
:return: The RNA type or default when not found.
|
|
2459
|
-
:rtype: bpy.types.Struct
|
|
2460
1750
|
"""
|
|
2461
1751
|
|
|
2462
1752
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2463
1753
|
"""
|
|
2464
1754
|
|
|
2465
1755
|
:return: The class or default when not found.
|
|
2466
|
-
:rtype: typing.Any
|
|
2467
1756
|
"""
|
|
2468
1757
|
|
|
2469
1758
|
def draw(self, context) -> None:
|
|
@@ -2472,35 +1761,7 @@ class SEQUENCER_PT_view(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
|
2472
1761
|
:param context:
|
|
2473
1762
|
"""
|
|
2474
1763
|
|
|
2475
|
-
class
|
|
2476
|
-
bl_category: typing.Any
|
|
2477
|
-
bl_label: typing.Any
|
|
2478
|
-
bl_region_type: typing.Any
|
|
2479
|
-
bl_rna: typing.Any
|
|
2480
|
-
bl_space_type: typing.Any
|
|
2481
|
-
id_data: typing.Any
|
|
2482
|
-
|
|
2483
|
-
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
2484
|
-
"""
|
|
2485
|
-
|
|
2486
|
-
:return: The RNA type or default when not found.
|
|
2487
|
-
:rtype: bpy.types.Struct
|
|
2488
|
-
"""
|
|
2489
|
-
|
|
2490
|
-
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2491
|
-
"""
|
|
2492
|
-
|
|
2493
|
-
:return: The class or default when not found.
|
|
2494
|
-
:rtype: typing.Any
|
|
2495
|
-
"""
|
|
2496
|
-
|
|
2497
|
-
def draw(self, context) -> None:
|
|
2498
|
-
"""
|
|
2499
|
-
|
|
2500
|
-
:param context:
|
|
2501
|
-
"""
|
|
2502
|
-
|
|
2503
|
-
class SEQUENCER_PT_view_safe_areas(SequencerButtonsPanel_Output, bpy.types.Panel):
|
|
1764
|
+
class SEQUENCER_PT_view_safe_areas(SequencerButtonsPanel_Output, _bpy_types.Panel):
|
|
2504
1765
|
bl_category: typing.Any
|
|
2505
1766
|
bl_label: typing.Any
|
|
2506
1767
|
bl_options: typing.Any
|
|
@@ -2513,14 +1774,12 @@ class SEQUENCER_PT_view_safe_areas(SequencerButtonsPanel_Output, bpy.types.Panel
|
|
|
2513
1774
|
"""
|
|
2514
1775
|
|
|
2515
1776
|
:return: The RNA type or default when not found.
|
|
2516
|
-
:rtype: bpy.types.Struct
|
|
2517
1777
|
"""
|
|
2518
1778
|
|
|
2519
1779
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2520
1780
|
"""
|
|
2521
1781
|
|
|
2522
1782
|
:return: The class or default when not found.
|
|
2523
|
-
:rtype: typing.Any
|
|
2524
1783
|
"""
|
|
2525
1784
|
|
|
2526
1785
|
def draw(self, context) -> None:
|
|
@@ -2543,7 +1802,7 @@ class SEQUENCER_PT_view_safe_areas(SequencerButtonsPanel_Output, bpy.types.Panel
|
|
|
2543
1802
|
"""
|
|
2544
1803
|
|
|
2545
1804
|
class SEQUENCER_PT_view_safe_areas_center_cut(
|
|
2546
|
-
SequencerButtonsPanel_Output,
|
|
1805
|
+
SequencerButtonsPanel_Output, _bpy_types.Panel
|
|
2547
1806
|
):
|
|
2548
1807
|
bl_category: typing.Any
|
|
2549
1808
|
bl_label: typing.Any
|
|
@@ -2558,14 +1817,12 @@ class SEQUENCER_PT_view_safe_areas_center_cut(
|
|
|
2558
1817
|
"""
|
|
2559
1818
|
|
|
2560
1819
|
:return: The RNA type or default when not found.
|
|
2561
|
-
:rtype: bpy.types.Struct
|
|
2562
1820
|
"""
|
|
2563
1821
|
|
|
2564
1822
|
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
2565
1823
|
"""
|
|
2566
1824
|
|
|
2567
1825
|
:return: The class or default when not found.
|
|
2568
|
-
:rtype: typing.Any
|
|
2569
1826
|
"""
|
|
2570
1827
|
|
|
2571
1828
|
def draw(self, context) -> None:
|
|
@@ -2580,6 +1837,13 @@ class SEQUENCER_PT_view_safe_areas_center_cut(
|
|
|
2580
1837
|
:param context:
|
|
2581
1838
|
"""
|
|
2582
1839
|
|
|
1840
|
+
@classmethod
|
|
1841
|
+
def poll(cls, context) -> None:
|
|
1842
|
+
"""
|
|
1843
|
+
|
|
1844
|
+
:param context:
|
|
1845
|
+
"""
|
|
1846
|
+
|
|
2583
1847
|
class SequencerButtonsPanel:
|
|
2584
1848
|
bl_region_type: typing.Any
|
|
2585
1849
|
bl_space_type: typing.Any
|
|
@@ -2634,5 +1898,4 @@ class SequencerColorTagPicker:
|
|
|
2634
1898
|
:param context:
|
|
2635
1899
|
"""
|
|
2636
1900
|
|
|
2637
|
-
def draw_color_balance(layout, color_balance) -> None: ...
|
|
2638
1901
|
def selected_strips_count(context) -> None: ...
|