fake-bpy-module 20240706__py3-none-any.whl → 20240708__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.

Potentially problematic release.


This version of fake-bpy-module might be problematic. Click here for more details.

Files changed (63) hide show
  1. bl_operators/assets/__init__.pyi +8 -8
  2. bl_operators/image_as_planes/__init__.pyi +43 -43
  3. bl_operators/node/__init__.pyi +234 -234
  4. bl_operators/object_quick_effects/__init__.pyi +21 -21
  5. bl_operators/presets/__init__.pyi +388 -388
  6. bl_ui/properties_collection/__init__.pyi +12 -12
  7. bl_ui/properties_constraint/__init__.pyi +954 -954
  8. bl_ui/properties_data_armature/__init__.pyi +85 -85
  9. bl_ui/properties_data_bone/__init__.pyi +12 -12
  10. bl_ui/properties_data_curve/__init__.pyi +92 -92
  11. bl_ui/properties_data_curves/__init__.pyi +12 -12
  12. bl_ui/properties_data_empty/__init__.pyi +12 -12
  13. bl_ui/properties_data_gpencil/__init__.pyi +265 -265
  14. bl_ui/properties_data_grease_pencil/__init__.pyi +312 -312
  15. bl_ui/properties_data_lattice/__init__.pyi +12 -12
  16. bl_ui/properties_data_light/__init__.pyi +12 -12
  17. bl_ui/properties_data_lightprobe/__init__.pyi +12 -12
  18. bl_ui/properties_data_mesh/__init__.pyi +527 -527
  19. bl_ui/properties_data_metaball/__init__.pyi +12 -12
  20. bl_ui/properties_data_modifier/__init__.pyi +19 -19
  21. bl_ui/properties_data_pointcloud/__init__.pyi +140 -140
  22. bl_ui/properties_data_shaderfx/__init__.pyi +5 -5
  23. bl_ui/properties_data_speaker/__init__.pyi +12 -12
  24. bl_ui/properties_data_volume/__init__.pyi +65 -65
  25. bl_ui/properties_freestyle/__init__.pyi +248 -248
  26. bl_ui/properties_material/__init__.pyi +145 -145
  27. bl_ui/properties_material_gpencil/__init__.pyi +86 -86
  28. bl_ui/properties_object/__init__.pyi +75 -75
  29. bl_ui/properties_output/__init__.pyi +201 -201
  30. bl_ui/properties_particle/__init__.pyi +220 -220
  31. bl_ui/properties_physics_cloth/__init__.pyi +12 -12
  32. bl_ui/properties_physics_common/__init__.pyi +12 -12
  33. bl_ui/properties_physics_dynamicpaint/__init__.pyi +187 -187
  34. bl_ui/properties_physics_field/__init__.pyi +19 -19
  35. bl_ui/properties_physics_fluid/__init__.pyi +61 -61
  36. bl_ui/properties_physics_rigidbody/__init__.pyi +5 -5
  37. bl_ui/properties_physics_rigidbody_constraint/__init__.pyi +5 -5
  38. bl_ui/properties_physics_softbody/__init__.pyi +12 -12
  39. bl_ui/properties_render/__init__.pyi +217 -217
  40. bl_ui/properties_scene/__init__.pyi +143 -143
  41. bl_ui/properties_texture/__init__.pyi +156 -156
  42. bl_ui/properties_view_layer/__init__.pyi +78 -78
  43. bl_ui/properties_workspace/__init__.pyi +64 -64
  44. bl_ui/properties_world/__init__.pyi +12 -12
  45. bl_ui/space_clip/__init__.pyi +366 -366
  46. bl_ui/space_dopesheet/__init__.pyi +176 -176
  47. bl_ui/space_filebrowser/__init__.pyi +735 -735
  48. bl_ui/space_image/__init__.pyi +646 -646
  49. bl_ui/space_sequencer/__init__.pyi +841 -389
  50. bl_ui/space_time/__init__.pyi +11 -11
  51. bl_ui/space_userpref/__init__.pyi +684 -684
  52. bl_ui/space_view3d/__init__.pyi +1152 -1152
  53. bl_ui/space_view3d_toolbar/__init__.pyi +2831 -2831
  54. bmesh/types/__init__.pyi +48 -0
  55. bpy/types/__init__.pyi +70624 -70606
  56. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/METADATA +4 -4
  57. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/RECORD +63 -63
  58. freestyle/utils/__init__.pyi +1 -1
  59. keyingsets_builtins/__init__.pyi +87 -87
  60. mathutils/__init__.pyi +156 -50
  61. nodeitems_builtins/__init__.pyi +7 -7
  62. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/WHEEL +0 -0
  63. {fake_bpy_module-20240706.dist-info → fake_bpy_module-20240708.dist-info}/top_level.txt +0 -0
@@ -2073,27 +2073,11 @@ class SEQUENCER_MT_change(bpy_types._GenericUI):
2073
2073
  """
2074
2074
  ...
2075
2075
 
2076
- class SequencerColorTagPicker:
2077
- bl_region_type: typing.Any
2078
- bl_space_type: typing.Any
2079
-
2080
- def has_sequencer(self, context):
2081
- """
2082
-
2083
- :param context:
2084
- """
2085
- ...
2086
-
2087
- def poll(self, context):
2088
- """
2089
-
2090
- :param context:
2091
- """
2092
- ...
2093
-
2094
- class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2076
+ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericUI):
2095
2077
  bl_label: typing.Any
2078
+ bl_region_type: typing.Any
2096
2079
  bl_rna: typing.Any
2080
+ bl_space_type: typing.Any
2097
2081
  id_data: typing.Any
2098
2082
 
2099
2083
  def append(self, draw_func):
@@ -2128,10 +2112,10 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2128
2112
  """
2129
2113
  ...
2130
2114
 
2131
- def draw(self, context):
2115
+ def draw(self, _context):
2132
2116
  """
2133
2117
 
2134
- :param context:
2118
+ :param _context:
2135
2119
  """
2136
2120
  ...
2137
2121
 
@@ -2143,13 +2127,6 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2143
2127
  """
2144
2128
  ...
2145
2129
 
2146
- def draw_generic(self, context):
2147
- """
2148
-
2149
- :param context:
2150
- """
2151
- ...
2152
-
2153
2130
  def draw_preset(self, _context):
2154
2131
  """Define these on the subclass:
2155
2132
  - preset_operator (string)
@@ -2162,13 +2139,6 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2162
2139
  """
2163
2140
  ...
2164
2141
 
2165
- def draw_retime(self, context):
2166
- """
2167
-
2168
- :param context:
2169
- """
2170
- ...
2171
-
2172
2142
  def driver_add(self) -> bpy.types.FCurve:
2173
2143
  """Adds driver(s) to the given property
2174
2144
 
@@ -2192,6 +2162,13 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2192
2162
  """
2193
2163
  ...
2194
2164
 
2165
+ def has_sequencer(self, context):
2166
+ """
2167
+
2168
+ :param context:
2169
+ """
2170
+ ...
2171
+
2195
2172
  def id_properties_clear(self):
2196
2173
  """
2197
2174
 
@@ -2325,6 +2302,13 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2325
2302
  """Returns the property from the path, raise an exception when not found."""
2326
2303
  ...
2327
2304
 
2305
+ def poll(self, context):
2306
+ """
2307
+
2308
+ :param context:
2309
+ """
2310
+ ...
2311
+
2328
2312
  def pop(self):
2329
2313
  """Remove and return the value of the custom property assigned to key or default
2330
2314
  when not found (matches Python's dictionary function of the same name).
@@ -2375,8 +2359,7 @@ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2375
2359
  """
2376
2360
  ...
2377
2361
 
2378
- class SEQUENCER_MT_editor_menus(bpy_types._GenericUI):
2379
- bl_idname: typing.Any
2362
+ class SEQUENCER_MT_context_menu(bpy_types._GenericUI):
2380
2363
  bl_label: typing.Any
2381
2364
  bl_rna: typing.Any
2382
2365
  id_data: typing.Any
@@ -2428,6 +2411,13 @@ class SEQUENCER_MT_editor_menus(bpy_types._GenericUI):
2428
2411
  """
2429
2412
  ...
2430
2413
 
2414
+ def draw_generic(self, context):
2415
+ """
2416
+
2417
+ :param context:
2418
+ """
2419
+ ...
2420
+
2431
2421
  def draw_preset(self, _context):
2432
2422
  """Define these on the subclass:
2433
2423
  - preset_operator (string)
@@ -2440,6 +2430,13 @@ class SEQUENCER_MT_editor_menus(bpy_types._GenericUI):
2440
2430
  """
2441
2431
  ...
2442
2432
 
2433
+ def draw_retime(self, context):
2434
+ """
2435
+
2436
+ :param context:
2437
+ """
2438
+ ...
2439
+
2443
2440
  def driver_add(self) -> bpy.types.FCurve:
2444
2441
  """Adds driver(s) to the given property
2445
2442
 
@@ -2646,7 +2643,8 @@ class SEQUENCER_MT_editor_menus(bpy_types._GenericUI):
2646
2643
  """
2647
2644
  ...
2648
2645
 
2649
- class SEQUENCER_MT_image(bpy_types._GenericUI):
2646
+ class SEQUENCER_MT_editor_menus(bpy_types._GenericUI):
2647
+ bl_idname: typing.Any
2650
2648
  bl_label: typing.Any
2651
2649
  bl_rna: typing.Any
2652
2650
  id_data: typing.Any
@@ -2916,7 +2914,7 @@ class SEQUENCER_MT_image(bpy_types._GenericUI):
2916
2914
  """
2917
2915
  ...
2918
2916
 
2919
- class SEQUENCER_MT_image_apply(bpy_types._GenericUI):
2917
+ class SEQUENCER_MT_image(bpy_types._GenericUI):
2920
2918
  bl_label: typing.Any
2921
2919
  bl_rna: typing.Any
2922
2920
  id_data: typing.Any
@@ -2953,10 +2951,10 @@ class SEQUENCER_MT_image_apply(bpy_types._GenericUI):
2953
2951
  """
2954
2952
  ...
2955
2953
 
2956
- def draw(self, _context):
2954
+ def draw(self, context):
2957
2955
  """
2958
2956
 
2959
- :param _context:
2957
+ :param context:
2960
2958
  """
2961
2959
  ...
2962
2960
 
@@ -3186,7 +3184,7 @@ class SEQUENCER_MT_image_apply(bpy_types._GenericUI):
3186
3184
  """
3187
3185
  ...
3188
3186
 
3189
- class SEQUENCER_MT_image_clear(bpy_types._GenericUI):
3187
+ class SEQUENCER_MT_image_apply(bpy_types._GenericUI):
3190
3188
  bl_label: typing.Any
3191
3189
  bl_rna: typing.Any
3192
3190
  id_data: typing.Any
@@ -3456,7 +3454,7 @@ class SEQUENCER_MT_image_clear(bpy_types._GenericUI):
3456
3454
  """
3457
3455
  ...
3458
3456
 
3459
- class SEQUENCER_MT_image_transform(bpy_types._GenericUI):
3457
+ class SEQUENCER_MT_image_clear(bpy_types._GenericUI):
3460
3458
  bl_label: typing.Any
3461
3459
  bl_rna: typing.Any
3462
3460
  id_data: typing.Any
@@ -3726,7 +3724,7 @@ class SEQUENCER_MT_image_transform(bpy_types._GenericUI):
3726
3724
  """
3727
3725
  ...
3728
3726
 
3729
- class SEQUENCER_MT_marker(bpy_types._GenericUI):
3727
+ class SEQUENCER_MT_image_transform(bpy_types._GenericUI):
3730
3728
  bl_label: typing.Any
3731
3729
  bl_rna: typing.Any
3732
3730
  id_data: typing.Any
@@ -3763,10 +3761,10 @@ class SEQUENCER_MT_marker(bpy_types._GenericUI):
3763
3761
  """
3764
3762
  ...
3765
3763
 
3766
- def draw(self, context):
3764
+ def draw(self, _context):
3767
3765
  """
3768
3766
 
3769
- :param context:
3767
+ :param _context:
3770
3768
  """
3771
3769
  ...
3772
3770
 
@@ -3996,7 +3994,7 @@ class SEQUENCER_MT_marker(bpy_types._GenericUI):
3996
3994
  """
3997
3995
  ...
3998
3996
 
3999
- class SEQUENCER_MT_navigation(bpy_types._GenericUI):
3997
+ class SEQUENCER_MT_marker(bpy_types._GenericUI):
4000
3998
  bl_label: typing.Any
4001
3999
  bl_rna: typing.Any
4002
4000
  id_data: typing.Any
@@ -4033,10 +4031,10 @@ class SEQUENCER_MT_navigation(bpy_types._GenericUI):
4033
4031
  """
4034
4032
  ...
4035
4033
 
4036
- def draw(self, _context):
4034
+ def draw(self, context):
4037
4035
  """
4038
4036
 
4039
- :param _context:
4037
+ :param context:
4040
4038
  """
4041
4039
  ...
4042
4040
 
@@ -4266,7 +4264,7 @@ class SEQUENCER_MT_navigation(bpy_types._GenericUI):
4266
4264
  """
4267
4265
  ...
4268
4266
 
4269
- class SEQUENCER_MT_pivot_pie(bpy_types._GenericUI):
4267
+ class SEQUENCER_MT_navigation(bpy_types._GenericUI):
4270
4268
  bl_label: typing.Any
4271
4269
  bl_rna: typing.Any
4272
4270
  id_data: typing.Any
@@ -4303,10 +4301,10 @@ class SEQUENCER_MT_pivot_pie(bpy_types._GenericUI):
4303
4301
  """
4304
4302
  ...
4305
4303
 
4306
- def draw(self, context):
4304
+ def draw(self, _context):
4307
4305
  """
4308
4306
 
4309
- :param context:
4307
+ :param _context:
4310
4308
  """
4311
4309
  ...
4312
4310
 
@@ -4536,7 +4534,7 @@ class SEQUENCER_MT_pivot_pie(bpy_types._GenericUI):
4536
4534
  """
4537
4535
  ...
4538
4536
 
4539
- class SEQUENCER_MT_preview_context_menu(bpy_types._GenericUI):
4537
+ class SEQUENCER_MT_pivot_pie(bpy_types._GenericUI):
4540
4538
  bl_label: typing.Any
4541
4539
  bl_rna: typing.Any
4542
4540
  id_data: typing.Any
@@ -4806,7 +4804,7 @@ class SEQUENCER_MT_preview_context_menu(bpy_types._GenericUI):
4806
4804
  """
4807
4805
  ...
4808
4806
 
4809
- class SEQUENCER_MT_preview_view_pie(bpy_types._GenericUI):
4807
+ class SEQUENCER_MT_preview_context_menu(bpy_types._GenericUI):
4810
4808
  bl_label: typing.Any
4811
4809
  bl_rna: typing.Any
4812
4810
  id_data: typing.Any
@@ -4843,10 +4841,10 @@ class SEQUENCER_MT_preview_view_pie(bpy_types._GenericUI):
4843
4841
  """
4844
4842
  ...
4845
4843
 
4846
- def draw(self, _context):
4844
+ def draw(self, context):
4847
4845
  """
4848
4846
 
4849
- :param _context:
4847
+ :param context:
4850
4848
  """
4851
4849
  ...
4852
4850
 
@@ -5076,7 +5074,7 @@ class SEQUENCER_MT_preview_view_pie(bpy_types._GenericUI):
5076
5074
  """
5077
5075
  ...
5078
5076
 
5079
- class SEQUENCER_MT_preview_zoom(bpy_types._GenericUI):
5077
+ class SEQUENCER_MT_preview_view_pie(bpy_types._GenericUI):
5080
5078
  bl_label: typing.Any
5081
5079
  bl_rna: typing.Any
5082
5080
  id_data: typing.Any
@@ -5113,10 +5111,10 @@ class SEQUENCER_MT_preview_zoom(bpy_types._GenericUI):
5113
5111
  """
5114
5112
  ...
5115
5113
 
5116
- def draw(self, context):
5114
+ def draw(self, _context):
5117
5115
  """
5118
5116
 
5119
- :param context:
5117
+ :param _context:
5120
5118
  """
5121
5119
  ...
5122
5120
 
@@ -5346,7 +5344,7 @@ class SEQUENCER_MT_preview_zoom(bpy_types._GenericUI):
5346
5344
  """
5347
5345
  ...
5348
5346
 
5349
- class SEQUENCER_MT_proxy(bpy_types._GenericUI):
5347
+ class SEQUENCER_MT_preview_zoom(bpy_types._GenericUI):
5350
5348
  bl_label: typing.Any
5351
5349
  bl_rna: typing.Any
5352
5350
  id_data: typing.Any
@@ -5616,7 +5614,7 @@ class SEQUENCER_MT_proxy(bpy_types._GenericUI):
5616
5614
  """
5617
5615
  ...
5618
5616
 
5619
- class SEQUENCER_MT_range(bpy_types._GenericUI):
5617
+ class SEQUENCER_MT_proxy(bpy_types._GenericUI):
5620
5618
  bl_label: typing.Any
5621
5619
  bl_rna: typing.Any
5622
5620
  id_data: typing.Any
@@ -5653,10 +5651,10 @@ class SEQUENCER_MT_range(bpy_types._GenericUI):
5653
5651
  """
5654
5652
  ...
5655
5653
 
5656
- def draw(self, _context):
5654
+ def draw(self, context):
5657
5655
  """
5658
5656
 
5659
- :param _context:
5657
+ :param context:
5660
5658
  """
5661
5659
  ...
5662
5660
 
@@ -5886,10 +5884,9 @@ class SEQUENCER_MT_range(bpy_types._GenericUI):
5886
5884
  """
5887
5885
  ...
5888
5886
 
5889
- class SEQUENCER_MT_retiming(bpy_types._GenericUI):
5887
+ class SEQUENCER_MT_range(bpy_types._GenericUI):
5890
5888
  bl_label: typing.Any
5891
5889
  bl_rna: typing.Any
5892
- bl_translation_context: typing.Any
5893
5890
  id_data: typing.Any
5894
5891
 
5895
5892
  def append(self, draw_func):
@@ -5924,10 +5921,10 @@ class SEQUENCER_MT_retiming(bpy_types._GenericUI):
5924
5921
  """
5925
5922
  ...
5926
5923
 
5927
- def draw(self, context):
5924
+ def draw(self, _context):
5928
5925
  """
5929
5926
 
5930
- :param context:
5927
+ :param _context:
5931
5928
  """
5932
5929
  ...
5933
5930
 
@@ -6157,9 +6154,10 @@ class SEQUENCER_MT_retiming(bpy_types._GenericUI):
6157
6154
  """
6158
6155
  ...
6159
6156
 
6160
- class SEQUENCER_MT_select(bpy_types._GenericUI):
6157
+ class SEQUENCER_MT_retiming(bpy_types._GenericUI):
6161
6158
  bl_label: typing.Any
6162
6159
  bl_rna: typing.Any
6160
+ bl_translation_context: typing.Any
6163
6161
  id_data: typing.Any
6164
6162
 
6165
6163
  def append(self, draw_func):
@@ -6427,7 +6425,7 @@ class SEQUENCER_MT_select(bpy_types._GenericUI):
6427
6425
  """
6428
6426
  ...
6429
6427
 
6430
- class SEQUENCER_MT_select_channel(bpy_types._GenericUI):
6428
+ class SEQUENCER_MT_select(bpy_types._GenericUI):
6431
6429
  bl_label: typing.Any
6432
6430
  bl_rna: typing.Any
6433
6431
  id_data: typing.Any
@@ -6464,10 +6462,10 @@ class SEQUENCER_MT_select_channel(bpy_types._GenericUI):
6464
6462
  """
6465
6463
  ...
6466
6464
 
6467
- def draw(self, _context):
6465
+ def draw(self, context):
6468
6466
  """
6469
6467
 
6470
- :param _context:
6468
+ :param context:
6471
6469
  """
6472
6470
  ...
6473
6471
 
@@ -6697,7 +6695,7 @@ class SEQUENCER_MT_select_channel(bpy_types._GenericUI):
6697
6695
  """
6698
6696
  ...
6699
6697
 
6700
- class SEQUENCER_MT_select_handle(bpy_types._GenericUI):
6698
+ class SEQUENCER_MT_select_channel(bpy_types._GenericUI):
6701
6699
  bl_label: typing.Any
6702
6700
  bl_rna: typing.Any
6703
6701
  id_data: typing.Any
@@ -6967,7 +6965,7 @@ class SEQUENCER_MT_select_handle(bpy_types._GenericUI):
6967
6965
  """
6968
6966
  ...
6969
6967
 
6970
- class SEQUENCER_MT_strip(bpy_types._GenericUI):
6968
+ class SEQUENCER_MT_select_handle(bpy_types._GenericUI):
6971
6969
  bl_label: typing.Any
6972
6970
  bl_rna: typing.Any
6973
6971
  id_data: typing.Any
@@ -7004,10 +7002,10 @@ class SEQUENCER_MT_strip(bpy_types._GenericUI):
7004
7002
  """
7005
7003
  ...
7006
7004
 
7007
- def draw(self, context):
7005
+ def draw(self, _context):
7008
7006
  """
7009
7007
 
7010
- :param context:
7008
+ :param _context:
7011
7009
  """
7012
7010
  ...
7013
7011
 
@@ -7237,7 +7235,7 @@ class SEQUENCER_MT_strip(bpy_types._GenericUI):
7237
7235
  """
7238
7236
  ...
7239
7237
 
7240
- class SEQUENCER_MT_strip_effect(bpy_types._GenericUI):
7238
+ class SEQUENCER_MT_strip(bpy_types._GenericUI):
7241
7239
  bl_label: typing.Any
7242
7240
  bl_rna: typing.Any
7243
7241
  id_data: typing.Any
@@ -7274,10 +7272,10 @@ class SEQUENCER_MT_strip_effect(bpy_types._GenericUI):
7274
7272
  """
7275
7273
  ...
7276
7274
 
7277
- def draw(self, _context):
7275
+ def draw(self, context):
7278
7276
  """
7279
7277
 
7280
- :param _context:
7278
+ :param context:
7281
7279
  """
7282
7280
  ...
7283
7281
 
@@ -7507,7 +7505,7 @@ class SEQUENCER_MT_strip_effect(bpy_types._GenericUI):
7507
7505
  """
7508
7506
  ...
7509
7507
 
7510
- class SEQUENCER_MT_strip_input(bpy_types._GenericUI):
7508
+ class SEQUENCER_MT_strip_effect(bpy_types._GenericUI):
7511
7509
  bl_label: typing.Any
7512
7510
  bl_rna: typing.Any
7513
7511
  id_data: typing.Any
@@ -7544,10 +7542,10 @@ class SEQUENCER_MT_strip_input(bpy_types._GenericUI):
7544
7542
  """
7545
7543
  ...
7546
7544
 
7547
- def draw(self, context):
7545
+ def draw(self, _context):
7548
7546
  """
7549
7547
 
7550
- :param context:
7548
+ :param _context:
7551
7549
  """
7552
7550
  ...
7553
7551
 
@@ -7777,7 +7775,7 @@ class SEQUENCER_MT_strip_input(bpy_types._GenericUI):
7777
7775
  """
7778
7776
  ...
7779
7777
 
7780
- class SEQUENCER_MT_strip_lock_mute(bpy_types._GenericUI):
7778
+ class SEQUENCER_MT_strip_input(bpy_types._GenericUI):
7781
7779
  bl_label: typing.Any
7782
7780
  bl_rna: typing.Any
7783
7781
  id_data: typing.Any
@@ -7814,10 +7812,10 @@ class SEQUENCER_MT_strip_lock_mute(bpy_types._GenericUI):
7814
7812
  """
7815
7813
  ...
7816
7814
 
7817
- def draw(self, _context):
7815
+ def draw(self, context):
7818
7816
  """
7819
7817
 
7820
- :param _context:
7818
+ :param context:
7821
7819
  """
7822
7820
  ...
7823
7821
 
@@ -8047,7 +8045,7 @@ class SEQUENCER_MT_strip_lock_mute(bpy_types._GenericUI):
8047
8045
  """
8048
8046
  ...
8049
8047
 
8050
- class SEQUENCER_MT_strip_movie(bpy_types._GenericUI):
8048
+ class SEQUENCER_MT_strip_lock_mute(bpy_types._GenericUI):
8051
8049
  bl_label: typing.Any
8052
8050
  bl_rna: typing.Any
8053
8051
  id_data: typing.Any
@@ -8317,7 +8315,7 @@ class SEQUENCER_MT_strip_movie(bpy_types._GenericUI):
8317
8315
  """
8318
8316
  ...
8319
8317
 
8320
- class SEQUENCER_MT_strip_retiming(bpy_types._GenericUI):
8318
+ class SEQUENCER_MT_strip_movie(bpy_types._GenericUI):
8321
8319
  bl_label: typing.Any
8322
8320
  bl_rna: typing.Any
8323
8321
  id_data: typing.Any
@@ -8354,10 +8352,10 @@ class SEQUENCER_MT_strip_retiming(bpy_types._GenericUI):
8354
8352
  """
8355
8353
  ...
8356
8354
 
8357
- def draw(self, context):
8355
+ def draw(self, _context):
8358
8356
  """
8359
8357
 
8360
- :param context:
8358
+ :param _context:
8361
8359
  """
8362
8360
  ...
8363
8361
 
@@ -8587,7 +8585,7 @@ class SEQUENCER_MT_strip_retiming(bpy_types._GenericUI):
8587
8585
  """
8588
8586
  ...
8589
8587
 
8590
- class SEQUENCER_MT_strip_transform(bpy_types._GenericUI):
8588
+ class SEQUENCER_MT_strip_retiming(bpy_types._GenericUI):
8591
8589
  bl_label: typing.Any
8592
8590
  bl_rna: typing.Any
8593
8591
  id_data: typing.Any
@@ -8857,7 +8855,7 @@ class SEQUENCER_MT_strip_transform(bpy_types._GenericUI):
8857
8855
  """
8858
8856
  ...
8859
8857
 
8860
- class SEQUENCER_MT_view(bpy_types._GenericUI):
8858
+ class SEQUENCER_MT_strip_transform(bpy_types._GenericUI):
8861
8859
  bl_label: typing.Any
8862
8860
  bl_rna: typing.Any
8863
8861
  id_data: typing.Any
@@ -9127,7 +9125,7 @@ class SEQUENCER_MT_view(bpy_types._GenericUI):
9127
9125
  """
9128
9126
  ...
9129
9127
 
9130
- class SEQUENCER_MT_view_pie(bpy_types._GenericUI):
9128
+ class SEQUENCER_MT_view(bpy_types._GenericUI):
9131
9129
  bl_label: typing.Any
9132
9130
  bl_rna: typing.Any
9133
9131
  id_data: typing.Any
@@ -9397,14 +9395,9 @@ class SEQUENCER_MT_view_pie(bpy_types._GenericUI):
9397
9395
  """
9398
9396
  ...
9399
9397
 
9400
- class SEQUENCER_PT_active_tool(
9401
- bl_ui.space_toolsystem_common.ToolActivePanelHelper, bpy_types._GenericUI
9402
- ):
9403
- bl_category: typing.Any
9398
+ class SEQUENCER_MT_view_pie(bpy_types._GenericUI):
9404
9399
  bl_label: typing.Any
9405
- bl_region_type: typing.Any
9406
9400
  bl_rna: typing.Any
9407
- bl_space_type: typing.Any
9408
9401
  id_data: typing.Any
9409
9402
 
9410
9403
  def append(self, draw_func):
@@ -9446,6 +9439,26 @@ class SEQUENCER_PT_active_tool(
9446
9439
  """
9447
9440
  ...
9448
9441
 
9442
+ def draw_collapsible(self, context, layout):
9443
+ """
9444
+
9445
+ :param context:
9446
+ :param layout:
9447
+ """
9448
+ ...
9449
+
9450
+ def draw_preset(self, _context):
9451
+ """Define these on the subclass:
9452
+ - preset_operator (string)
9453
+ - preset_subdir (string)Optionally:
9454
+ - preset_add_operator (string)
9455
+ - preset_extensions (set of strings)
9456
+ - preset_operator_defaults (dict of keyword args)
9457
+
9458
+ :param _context:
9459
+ """
9460
+ ...
9461
+
9449
9462
  def driver_add(self) -> bpy.types.FCurve:
9450
9463
  """Adds driver(s) to the given property
9451
9464
 
@@ -9564,6 +9577,40 @@ class SEQUENCER_PT_active_tool(
9564
9577
  """
9565
9578
  ...
9566
9579
 
9580
+ def path_menu(
9581
+ self,
9582
+ searchpaths: list[str],
9583
+ operator: str,
9584
+ props_default: dict = None,
9585
+ prop_filepath: str | None = "filepath",
9586
+ filter_ext: collections.abc.Callable | None = None,
9587
+ filter_path=None,
9588
+ display_name: collections.abc.Callable | None = None,
9589
+ add_operator=None,
9590
+ add_operator_props=None,
9591
+ ):
9592
+ """Populate a menu from a list of paths.
9593
+
9594
+ :param searchpaths: Paths to scan.
9595
+ :type searchpaths: list[str]
9596
+ :param operator: The operator id to use with each file.
9597
+ :type operator: str
9598
+ :param props_default: Properties to assign to each operator.
9599
+ :type props_default: dict
9600
+ :param prop_filepath: Optional operator filepath property (defaults to "filepath").
9601
+ :type prop_filepath: str | None
9602
+ :param filter_ext: Optional callback that takes the file extensions.
9603
+
9604
+ Returning false excludes the file from the list.
9605
+ :type filter_ext: collections.abc.Callable | None
9606
+ :param filter_path:
9607
+ :param display_name: Optional callback that takes the full path, returns the name to display.
9608
+ :type display_name: collections.abc.Callable | None
9609
+ :param add_operator:
9610
+ :param add_operator_props:
9611
+ """
9612
+ ...
9613
+
9567
9614
  def path_resolve(self):
9568
9615
  """Returns the property from the path, raise an exception when not found."""
9569
9616
  ...
@@ -9618,55 +9665,21 @@ class SEQUENCER_PT_active_tool(
9618
9665
  """
9619
9666
  ...
9620
9667
 
9621
- class SequencerButtonsPanel:
9668
+ class SEQUENCER_PT_active_tool(
9669
+ bl_ui.space_toolsystem_common.ToolActivePanelHelper, bpy_types._GenericUI
9670
+ ):
9671
+ bl_category: typing.Any
9672
+ bl_label: typing.Any
9622
9673
  bl_region_type: typing.Any
9674
+ bl_rna: typing.Any
9623
9675
  bl_space_type: typing.Any
9676
+ id_data: typing.Any
9624
9677
 
9625
- def has_sequencer(self, context):
9626
- """
9678
+ def append(self, draw_func):
9679
+ """Append a draw function to this menu,
9680
+ takes the same arguments as the menus draw function
9627
9681
 
9628
- :param context:
9629
- """
9630
- ...
9631
-
9632
- def poll(self, context):
9633
- """
9634
-
9635
- :param context:
9636
- """
9637
- ...
9638
-
9639
- class SequencerButtonsPanel_Output:
9640
- bl_region_type: typing.Any
9641
- bl_space_type: typing.Any
9642
-
9643
- def has_preview(self, context):
9644
- """
9645
-
9646
- :param context:
9647
- """
9648
- ...
9649
-
9650
- def poll(self, context):
9651
- """
9652
-
9653
- :param context:
9654
- """
9655
- ...
9656
-
9657
- class SEQUENCER_PT_gizmo_display(bpy_types._GenericUI):
9658
- bl_label: typing.Any
9659
- bl_region_type: typing.Any
9660
- bl_rna: typing.Any
9661
- bl_space_type: typing.Any
9662
- bl_ui_units_x: typing.Any
9663
- id_data: typing.Any
9664
-
9665
- def append(self, draw_func):
9666
- """Append a draw function to this menu,
9667
- takes the same arguments as the menus draw function
9668
-
9669
- :param draw_func:
9682
+ :param draw_func:
9670
9683
  """
9671
9684
  ...
9672
9685
 
@@ -9873,12 +9886,13 @@ class SEQUENCER_PT_gizmo_display(bpy_types._GenericUI):
9873
9886
  """
9874
9887
  ...
9875
9888
 
9876
- class SEQUENCER_PT_overlay(bpy_types._GenericUI):
9889
+ class SEQUENCER_PT_adjust_color(SequencerButtonsPanel, bpy_types._GenericUI):
9890
+ bl_category: typing.Any
9877
9891
  bl_label: typing.Any
9892
+ bl_options: typing.Any
9878
9893
  bl_region_type: typing.Any
9879
9894
  bl_rna: typing.Any
9880
9895
  bl_space_type: typing.Any
9881
- bl_ui_units_x: typing.Any
9882
9896
  id_data: typing.Any
9883
9897
 
9884
9898
  def append(self, draw_func):
@@ -9913,10 +9927,10 @@ class SEQUENCER_PT_overlay(bpy_types._GenericUI):
9913
9927
  """
9914
9928
  ...
9915
9929
 
9916
- def draw(self, _context):
9930
+ def draw(self, context):
9917
9931
  """
9918
9932
 
9919
- :param _context:
9933
+ :param context:
9920
9934
  """
9921
9935
  ...
9922
9936
 
@@ -9943,6 +9957,13 @@ class SEQUENCER_PT_overlay(bpy_types._GenericUI):
9943
9957
  """
9944
9958
  ...
9945
9959
 
9960
+ def has_sequencer(self, context):
9961
+ """
9962
+
9963
+ :param context:
9964
+ """
9965
+ ...
9966
+
9946
9967
  def id_properties_clear(self):
9947
9968
  """
9948
9969
 
@@ -10042,6 +10063,13 @@ class SEQUENCER_PT_overlay(bpy_types._GenericUI):
10042
10063
  """Returns the property from the path, raise an exception when not found."""
10043
10064
  ...
10044
10065
 
10066
+ def poll(self, context):
10067
+ """
10068
+
10069
+ :param context:
10070
+ """
10071
+ ...
10072
+
10045
10073
  def pop(self):
10046
10074
  """Remove and return the value of the custom property assigned to key or default
10047
10075
  when not found (matches Python's dictionary function of the same name).
@@ -10092,9 +10120,9 @@ class SEQUENCER_PT_overlay(bpy_types._GenericUI):
10092
10120
  """
10093
10121
  ...
10094
10122
 
10095
- class SEQUENCER_PT_preview_overlay(bpy_types._GenericUI):
10123
+ class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, bpy_types._GenericUI):
10124
+ bl_category: typing.Any
10096
10125
  bl_label: typing.Any
10097
- bl_parent_id: typing.Any
10098
10126
  bl_region_type: typing.Any
10099
10127
  bl_rna: typing.Any
10100
10128
  bl_space_type: typing.Any
@@ -10162,6 +10190,13 @@ class SEQUENCER_PT_preview_overlay(bpy_types._GenericUI):
10162
10190
  """
10163
10191
  ...
10164
10192
 
10193
+ def has_sequencer(self, context):
10194
+ """
10195
+
10196
+ :param context:
10197
+ """
10198
+ ...
10199
+
10165
10200
  def id_properties_clear(self):
10166
10201
  """
10167
10202
 
@@ -10318,9 +10353,10 @@ class SEQUENCER_PT_preview_overlay(bpy_types._GenericUI):
10318
10353
  """
10319
10354
  ...
10320
10355
 
10321
- class SEQUENCER_PT_sequencer_overlay(bpy_types._GenericUI):
10356
+ class SEQUENCER_PT_adjust_crop(SequencerButtonsPanel, bpy_types._GenericUI):
10357
+ bl_category: typing.Any
10322
10358
  bl_label: typing.Any
10323
- bl_parent_id: typing.Any
10359
+ bl_options: typing.Any
10324
10360
  bl_region_type: typing.Any
10325
10361
  bl_rna: typing.Any
10326
10362
  bl_space_type: typing.Any
@@ -10388,6 +10424,13 @@ class SEQUENCER_PT_sequencer_overlay(bpy_types._GenericUI):
10388
10424
  """
10389
10425
  ...
10390
10426
 
10427
+ def has_sequencer(self, context):
10428
+ """
10429
+
10430
+ :param context:
10431
+ """
10432
+ ...
10433
+
10391
10434
  def id_properties_clear(self):
10392
10435
  """
10393
10436
 
@@ -10544,9 +10587,9 @@ class SEQUENCER_PT_sequencer_overlay(bpy_types._GenericUI):
10544
10587
  """
10545
10588
  ...
10546
10589
 
10547
- class SEQUENCER_PT_sequencer_overlay_strips(bpy_types._GenericUI):
10590
+ class SEQUENCER_PT_adjust_sound(SequencerButtonsPanel, bpy_types._GenericUI):
10591
+ bl_category: typing.Any
10548
10592
  bl_label: typing.Any
10549
- bl_parent_id: typing.Any
10550
10593
  bl_region_type: typing.Any
10551
10594
  bl_rna: typing.Any
10552
10595
  bl_space_type: typing.Any
@@ -10614,6 +10657,13 @@ class SEQUENCER_PT_sequencer_overlay_strips(bpy_types._GenericUI):
10614
10657
  """
10615
10658
  ...
10616
10659
 
10660
+ def has_sequencer(self, context):
10661
+ """
10662
+
10663
+ :param context:
10664
+ """
10665
+ ...
10666
+
10617
10667
  def id_properties_clear(self):
10618
10668
  """
10619
10669
 
@@ -10770,9 +10820,10 @@ class SEQUENCER_PT_sequencer_overlay_strips(bpy_types._GenericUI):
10770
10820
  """
10771
10821
  ...
10772
10822
 
10773
- class SEQUENCER_PT_sequencer_overlay_waveforms(bpy_types._GenericUI):
10823
+ class SEQUENCER_PT_adjust_transform(SequencerButtonsPanel, bpy_types._GenericUI):
10824
+ bl_category: typing.Any
10774
10825
  bl_label: typing.Any
10775
- bl_parent_id: typing.Any
10826
+ bl_options: typing.Any
10776
10827
  bl_region_type: typing.Any
10777
10828
  bl_rna: typing.Any
10778
10829
  bl_space_type: typing.Any
@@ -10840,6 +10891,13 @@ class SEQUENCER_PT_sequencer_overlay_waveforms(bpy_types._GenericUI):
10840
10891
  """
10841
10892
  ...
10842
10893
 
10894
+ def has_sequencer(self, context):
10895
+ """
10896
+
10897
+ :param context:
10898
+ """
10899
+ ...
10900
+
10843
10901
  def id_properties_clear(self):
10844
10902
  """
10845
10903
 
@@ -10996,8 +11054,10 @@ class SEQUENCER_PT_sequencer_overlay_waveforms(bpy_types._GenericUI):
10996
11054
  """
10997
11055
  ...
10998
11056
 
10999
- class SEQUENCER_PT_snapping(bpy_types._GenericUI):
11057
+ class SEQUENCER_PT_adjust_video(SequencerButtonsPanel, bpy_types._GenericUI):
11058
+ bl_category: typing.Any
11000
11059
  bl_label: typing.Any
11060
+ bl_options: typing.Any
11001
11061
  bl_region_type: typing.Any
11002
11062
  bl_rna: typing.Any
11003
11063
  bl_space_type: typing.Any
@@ -11065,6 +11125,13 @@ class SEQUENCER_PT_snapping(bpy_types._GenericUI):
11065
11125
  """
11066
11126
  ...
11067
11127
 
11128
+ def has_sequencer(self, context):
11129
+ """
11130
+
11131
+ :param context:
11132
+ """
11133
+ ...
11134
+
11068
11135
  def id_properties_clear(self):
11069
11136
  """
11070
11137
 
@@ -11164,6 +11231,13 @@ class SEQUENCER_PT_snapping(bpy_types._GenericUI):
11164
11231
  """Returns the property from the path, raise an exception when not found."""
11165
11232
  ...
11166
11233
 
11234
+ def poll(self, context):
11235
+ """
11236
+
11237
+ :param context:
11238
+ """
11239
+ ...
11240
+
11167
11241
  def pop(self):
11168
11242
  """Remove and return the value of the custom property assigned to key or default
11169
11243
  when not found (matches Python's dictionary function of the same name).
@@ -11214,8 +11288,14 @@ class SEQUENCER_PT_snapping(bpy_types._GenericUI):
11214
11288
  """
11215
11289
  ...
11216
11290
 
11217
- class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericUI):
11291
+ class SEQUENCER_PT_annotation(
11292
+ bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
11293
+ SequencerButtonsPanel_Output,
11294
+ bpy_types._GenericUI,
11295
+ ):
11296
+ bl_category: typing.Any
11218
11297
  bl_label: typing.Any
11298
+ bl_options: typing.Any
11219
11299
  bl_region_type: typing.Any
11220
11300
  bl_rna: typing.Any
11221
11301
  bl_space_type: typing.Any
@@ -11253,30 +11333,26 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11253
11333
  """
11254
11334
  ...
11255
11335
 
11256
- def draw(self, _context):
11336
+ def draw(self, context):
11257
11337
  """
11258
11338
 
11259
- :param _context:
11339
+ :param context:
11260
11340
  """
11261
11341
  ...
11262
11342
 
11263
- def draw_collapsible(self, context, layout):
11343
+ def draw_header(self, context):
11264
11344
  """
11265
11345
 
11266
11346
  :param context:
11267
- :param layout:
11268
11347
  """
11269
11348
  ...
11270
11349
 
11271
- def draw_preset(self, _context):
11272
- """Define these on the subclass:
11273
- - preset_operator (string)
11274
- - preset_subdir (string)Optionally:
11275
- - preset_add_operator (string)
11276
- - preset_extensions (set of strings)
11277
- - preset_operator_defaults (dict of keyword args)
11350
+ def draw_layers(self, context, layout, gpd):
11351
+ """
11278
11352
 
11279
- :param _context:
11353
+ :param context:
11354
+ :param layout:
11355
+ :param gpd:
11280
11356
  """
11281
11357
  ...
11282
11358
 
@@ -11303,7 +11379,7 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11303
11379
  """
11304
11380
  ...
11305
11381
 
11306
- def has_sequencer(self, context):
11382
+ def has_preview(self, context):
11307
11383
  """
11308
11384
 
11309
11385
  :param context:
@@ -11405,40 +11481,6 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11405
11481
  """
11406
11482
  ...
11407
11483
 
11408
- def path_menu(
11409
- self,
11410
- searchpaths: list[str],
11411
- operator: str,
11412
- props_default: dict = None,
11413
- prop_filepath: str | None = "filepath",
11414
- filter_ext: collections.abc.Callable | None = None,
11415
- filter_path=None,
11416
- display_name: collections.abc.Callable | None = None,
11417
- add_operator=None,
11418
- add_operator_props=None,
11419
- ):
11420
- """Populate a menu from a list of paths.
11421
-
11422
- :param searchpaths: Paths to scan.
11423
- :type searchpaths: list[str]
11424
- :param operator: The operator id to use with each file.
11425
- :type operator: str
11426
- :param props_default: Properties to assign to each operator.
11427
- :type props_default: dict
11428
- :param prop_filepath: Optional operator filepath property (defaults to "filepath").
11429
- :type prop_filepath: str | None
11430
- :param filter_ext: Optional callback that takes the file extensions.
11431
-
11432
- Returning false excludes the file from the list.
11433
- :type filter_ext: collections.abc.Callable | None
11434
- :param filter_path:
11435
- :param display_name: Optional callback that takes the full path, returns the name to display.
11436
- :type display_name: collections.abc.Callable | None
11437
- :param add_operator:
11438
- :param add_operator_props:
11439
- """
11440
- ...
11441
-
11442
11484
  def path_resolve(self):
11443
11485
  """Returns the property from the path, raise an exception when not found."""
11444
11486
  ...
@@ -11500,10 +11542,15 @@ class SEQUENCER_MT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11500
11542
  """
11501
11543
  ...
11502
11544
 
11503
- class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericUI):
11545
+ class SEQUENCER_PT_annotation_onion(
11546
+ bl_ui.properties_grease_pencil_common.AnnotationOnionSkin,
11547
+ SequencerButtonsPanel_Output,
11548
+ bpy_types._GenericUI,
11549
+ ):
11504
11550
  bl_category: typing.Any
11505
11551
  bl_label: typing.Any
11506
11552
  bl_options: typing.Any
11553
+ bl_parent_id: typing.Any
11507
11554
  bl_region_type: typing.Any
11508
11555
  bl_rna: typing.Any
11509
11556
  bl_space_type: typing.Any
@@ -11541,10 +11588,17 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11541
11588
  """
11542
11589
  ...
11543
11590
 
11544
- def draw(self, _context):
11591
+ def draw(self, context):
11545
11592
  """
11546
11593
 
11547
- :param _context:
11594
+ :param context:
11595
+ """
11596
+ ...
11597
+
11598
+ def draw_header(self, context):
11599
+ """
11600
+
11601
+ :param context:
11548
11602
  """
11549
11603
  ...
11550
11604
 
@@ -11571,7 +11625,7 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11571
11625
  """
11572
11626
  ...
11573
11627
 
11574
- def has_sequencer(self, context):
11628
+ def has_preview(self, context):
11575
11629
  """
11576
11630
 
11577
11631
  :param context:
@@ -11734,10 +11788,9 @@ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericU
11734
11788
  """
11735
11789
  ...
11736
11790
 
11737
- class SEQUENCER_PT_adjust_color(SequencerButtonsPanel, bpy_types._GenericUI):
11791
+ class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, bpy_types._GenericUI):
11738
11792
  bl_category: typing.Any
11739
11793
  bl_label: typing.Any
11740
- bl_options: typing.Any
11741
11794
  bl_region_type: typing.Any
11742
11795
  bl_rna: typing.Any
11743
11796
  bl_space_type: typing.Any
@@ -11968,9 +12021,10 @@ class SEQUENCER_PT_adjust_color(SequencerButtonsPanel, bpy_types._GenericUI):
11968
12021
  """
11969
12022
  ...
11970
12023
 
11971
- class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, bpy_types._GenericUI):
12024
+ class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, bpy_types._GenericUI):
11972
12025
  bl_category: typing.Any
11973
12026
  bl_label: typing.Any
12027
+ bl_parent_id: typing.Any
11974
12028
  bl_region_type: typing.Any
11975
12029
  bl_rna: typing.Any
11976
12030
  bl_space_type: typing.Any
@@ -12015,6 +12069,13 @@ class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, bpy_types._GenericUI):
12015
12069
  """
12016
12070
  ...
12017
12071
 
12072
+ def draw_header(self, context):
12073
+ """
12074
+
12075
+ :param context:
12076
+ """
12077
+ ...
12078
+
12018
12079
  def driver_add(self) -> bpy.types.FCurve:
12019
12080
  """Adds driver(s) to the given property
12020
12081
 
@@ -12201,7 +12262,7 @@ class SEQUENCER_PT_adjust_comp(SequencerButtonsPanel, bpy_types._GenericUI):
12201
12262
  """
12202
12263
  ...
12203
12264
 
12204
- class SEQUENCER_PT_adjust_crop(SequencerButtonsPanel, bpy_types._GenericUI):
12265
+ class SEQUENCER_PT_color_tag_picker(SequencerColorTagPicker, bpy_types._GenericUI):
12205
12266
  bl_category: typing.Any
12206
12267
  bl_label: typing.Any
12207
12268
  bl_options: typing.Any
@@ -12242,10 +12303,10 @@ class SEQUENCER_PT_adjust_crop(SequencerButtonsPanel, bpy_types._GenericUI):
12242
12303
  """
12243
12304
  ...
12244
12305
 
12245
- def draw(self, context):
12306
+ def draw(self, _context):
12246
12307
  """
12247
12308
 
12248
- :param context:
12309
+ :param _context:
12249
12310
  """
12250
12311
  ...
12251
12312
 
@@ -12435,9 +12496,18 @@ class SEQUENCER_PT_adjust_crop(SequencerButtonsPanel, bpy_types._GenericUI):
12435
12496
  """
12436
12497
  ...
12437
12498
 
12438
- class SEQUENCER_PT_adjust_sound(SequencerButtonsPanel, bpy_types._GenericUI):
12499
+ class SEQUENCER_PT_custom_props(
12500
+ SequencerButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
12501
+ ):
12502
+ """The subclass should have its own poll function
12503
+ and the variable '_context_path' MUST be set.
12504
+ """
12505
+
12506
+ COMPAT_ENGINES: typing.Any
12439
12507
  bl_category: typing.Any
12440
12508
  bl_label: typing.Any
12509
+ bl_options: typing.Any
12510
+ bl_order: typing.Any
12441
12511
  bl_region_type: typing.Any
12442
12512
  bl_rna: typing.Any
12443
12513
  bl_space_type: typing.Any
@@ -12668,10 +12738,9 @@ class SEQUENCER_PT_adjust_sound(SequencerButtonsPanel, bpy_types._GenericUI):
12668
12738
  """
12669
12739
  ...
12670
12740
 
12671
- class SEQUENCER_PT_adjust_transform(SequencerButtonsPanel, bpy_types._GenericUI):
12741
+ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy_types._GenericUI):
12672
12742
  bl_category: typing.Any
12673
12743
  bl_label: typing.Any
12674
- bl_options: typing.Any
12675
12744
  bl_region_type: typing.Any
12676
12745
  bl_rna: typing.Any
12677
12746
  bl_space_type: typing.Any
@@ -12902,10 +12971,10 @@ class SEQUENCER_PT_adjust_transform(SequencerButtonsPanel, bpy_types._GenericUI)
12902
12971
  """
12903
12972
  ...
12904
12973
 
12905
- class SEQUENCER_PT_adjust_video(SequencerButtonsPanel, bpy_types._GenericUI):
12974
+ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy_types._GenericUI):
12906
12975
  bl_category: typing.Any
12907
12976
  bl_label: typing.Any
12908
- bl_options: typing.Any
12977
+ bl_parent_id: typing.Any
12909
12978
  bl_region_type: typing.Any
12910
12979
  bl_rna: typing.Any
12911
12980
  bl_space_type: typing.Any
@@ -13136,9 +13205,10 @@ class SEQUENCER_PT_adjust_video(SequencerButtonsPanel, bpy_types._GenericUI):
13136
13205
  """
13137
13206
  ...
13138
13207
 
13139
- class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, bpy_types._GenericUI):
13208
+ class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy_types._GenericUI):
13140
13209
  bl_category: typing.Any
13141
13210
  bl_label: typing.Any
13211
+ bl_parent_id: typing.Any
13142
13212
  bl_region_type: typing.Any
13143
13213
  bl_rna: typing.Any
13144
13214
  bl_space_type: typing.Any
@@ -13369,10 +13439,10 @@ class SEQUENCER_PT_cache_settings(SequencerButtonsPanel, bpy_types._GenericUI):
13369
13439
  """
13370
13440
  ...
13371
13441
 
13372
- class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, bpy_types._GenericUI):
13442
+ class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy_types._GenericUI):
13373
13443
  bl_category: typing.Any
13374
13444
  bl_label: typing.Any
13375
- bl_parent_id: typing.Any
13445
+ bl_options: typing.Any
13376
13446
  bl_region_type: typing.Any
13377
13447
  bl_rna: typing.Any
13378
13448
  bl_space_type: typing.Any
@@ -13447,7 +13517,7 @@ class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, bpy_types._Generic
13447
13517
  """
13448
13518
  ...
13449
13519
 
13450
- def has_sequencer(self, context):
13520
+ def has_preview(self, context):
13451
13521
  """
13452
13522
 
13453
13523
  :param context:
@@ -13610,18 +13680,461 @@ class SEQUENCER_PT_cache_view_settings(SequencerButtonsPanel, bpy_types._Generic
13610
13680
  """
13611
13681
  ...
13612
13682
 
13613
- class SEQUENCER_PT_custom_props(
13614
- SequencerButtonsPanel, rna_prop_ui.PropertyPanel, bpy_types._GenericUI
13615
- ):
13616
- """The subclass should have its own poll function
13617
- and the variable '_context_path' MUST be set.
13618
- """
13683
+ class SEQUENCER_PT_gizmo_display(bpy_types._GenericUI):
13684
+ bl_label: typing.Any
13685
+ bl_region_type: typing.Any
13686
+ bl_rna: typing.Any
13687
+ bl_space_type: typing.Any
13688
+ bl_ui_units_x: typing.Any
13689
+ id_data: typing.Any
13619
13690
 
13620
- COMPAT_ENGINES: typing.Any
13691
+ def append(self, draw_func):
13692
+ """Append a draw function to this menu,
13693
+ takes the same arguments as the menus draw function
13694
+
13695
+ :param draw_func:
13696
+ """
13697
+ ...
13698
+
13699
+ def as_pointer(self) -> int:
13700
+ """Returns the memory address which holds a pointer to Blender's internal data
13701
+
13702
+ :return: int (memory address).
13703
+ :rtype: int
13704
+ """
13705
+ ...
13706
+
13707
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
13708
+ """
13709
+
13710
+ :return: The RNA type or default when not found.
13711
+ :rtype: bpy.types.Struct
13712
+ """
13713
+ ...
13714
+
13715
+ def bl_rna_get_subclass_py(self) -> typing.Any:
13716
+ """
13717
+
13718
+ :return: The class or default when not found.
13719
+ :rtype: typing.Any
13720
+ """
13721
+ ...
13722
+
13723
+ def draw(self, context):
13724
+ """
13725
+
13726
+ :param context:
13727
+ """
13728
+ ...
13729
+
13730
+ def driver_add(self) -> bpy.types.FCurve:
13731
+ """Adds driver(s) to the given property
13732
+
13733
+ :return: The driver(s) added.
13734
+ :rtype: bpy.types.FCurve
13735
+ """
13736
+ ...
13737
+
13738
+ def driver_remove(self) -> bool:
13739
+ """Remove driver(s) from the given property
13740
+
13741
+ :return: Success of driver removal.
13742
+ :rtype: bool
13743
+ """
13744
+ ...
13745
+
13746
+ def get(self):
13747
+ """Returns the value of the custom property assigned to key or default
13748
+ when not found (matches Python's dictionary function of the same name).
13749
+
13750
+ """
13751
+ ...
13752
+
13753
+ def id_properties_clear(self):
13754
+ """
13755
+
13756
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
13757
+ """
13758
+ ...
13759
+
13760
+ def id_properties_ensure(self):
13761
+ """
13762
+
13763
+ :return: the parent group for an RNA struct's custom IDProperties.
13764
+ """
13765
+ ...
13766
+
13767
+ def id_properties_ui(self):
13768
+ """
13769
+
13770
+ :return: Return an object used to manage an IDProperty's UI data.
13771
+ """
13772
+ ...
13773
+
13774
+ def is_extended(self): ...
13775
+ def is_property_hidden(self) -> bool:
13776
+ """Check if a property is hidden.
13777
+
13778
+ :return: True when the property is hidden.
13779
+ :rtype: bool
13780
+ """
13781
+ ...
13782
+
13783
+ def is_property_overridable_library(self) -> bool:
13784
+ """Check if a property is overridable.
13785
+
13786
+ :return: True when the property is overridable.
13787
+ :rtype: bool
13788
+ """
13789
+ ...
13790
+
13791
+ def is_property_readonly(self) -> bool:
13792
+ """Check if a property is readonly.
13793
+
13794
+ :return: True when the property is readonly (not writable).
13795
+ :rtype: bool
13796
+ """
13797
+ ...
13798
+
13799
+ def is_property_set(self) -> bool:
13800
+ """Check if a property is set, use for testing operator properties.
13801
+
13802
+ :return: True when the property has been set.
13803
+ :rtype: bool
13804
+ """
13805
+ ...
13806
+
13807
+ def items(self):
13808
+ """Returns the items of this objects custom properties (matches Python's
13809
+ dictionary function of the same name).
13810
+
13811
+ :return: custom property key, value pairs.
13812
+ """
13813
+ ...
13814
+
13815
+ def keyframe_delete(self) -> bool:
13816
+ """Remove a keyframe from this properties fcurve.
13817
+
13818
+ :return: Success of keyframe deletion.
13819
+ :rtype: bool
13820
+ """
13821
+ ...
13822
+
13823
+ def keyframe_insert(self) -> bool:
13824
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
13825
+
13826
+ :return: Success of keyframe insertion.
13827
+ :rtype: bool
13828
+ """
13829
+ ...
13830
+
13831
+ def keys(self):
13832
+ """Returns the keys of this objects custom properties (matches Python's
13833
+ dictionary function of the same name).
13834
+
13835
+ :return: custom property keys.
13836
+ """
13837
+ ...
13838
+
13839
+ def path_from_id(self) -> str:
13840
+ """Returns the data path from the ID to this object (string).
13841
+
13842
+ :return: The path from `bpy.types.bpy_struct.id_data`
13843
+ to this struct and property (when given).
13844
+ :rtype: str
13845
+ """
13846
+ ...
13847
+
13848
+ def path_resolve(self):
13849
+ """Returns the property from the path, raise an exception when not found."""
13850
+ ...
13851
+
13852
+ def pop(self):
13853
+ """Remove and return the value of the custom property assigned to key or default
13854
+ when not found (matches Python's dictionary function of the same name).
13855
+
13856
+ """
13857
+ ...
13858
+
13859
+ def prepend(self, draw_func):
13860
+ """Prepend a draw function to this menu, takes the same arguments as
13861
+ the menus draw function
13862
+
13863
+ :param draw_func:
13864
+ """
13865
+ ...
13866
+
13867
+ def property_overridable_library_set(self) -> bool:
13868
+ """Define a property as overridable or not (only for custom properties!).
13869
+
13870
+ :return: True when the overridable status of the property was successfully set.
13871
+ :rtype: bool
13872
+ """
13873
+ ...
13874
+
13875
+ def property_unset(self):
13876
+ """Unset a property, will use default value afterward."""
13877
+ ...
13878
+
13879
+ def remove(self, draw_func):
13880
+ """Remove a draw function that has been added to this menu
13881
+
13882
+ :param draw_func:
13883
+ """
13884
+ ...
13885
+
13886
+ def type_recast(self):
13887
+ """Return a new instance, this is needed because types
13888
+ such as textures can be changed at runtime.
13889
+
13890
+ :return: a new instance of this object with the type initialized again.
13891
+ """
13892
+ ...
13893
+
13894
+ def values(self):
13895
+ """Returns the values of this objects custom properties (matches Python's
13896
+ dictionary function of the same name).
13897
+
13898
+ :return: custom property values.
13899
+ """
13900
+ ...
13901
+
13902
+ class SEQUENCER_PT_mask(SequencerButtonsPanel, bpy_types._GenericUI):
13903
+ bl_category: typing.Any
13904
+ bl_label: typing.Any
13905
+ bl_region_type: typing.Any
13906
+ bl_rna: typing.Any
13907
+ bl_space_type: typing.Any
13908
+ id_data: typing.Any
13909
+
13910
+ def append(self, draw_func):
13911
+ """Append a draw function to this menu,
13912
+ takes the same arguments as the menus draw function
13913
+
13914
+ :param draw_func:
13915
+ """
13916
+ ...
13917
+
13918
+ def as_pointer(self) -> int:
13919
+ """Returns the memory address which holds a pointer to Blender's internal data
13920
+
13921
+ :return: int (memory address).
13922
+ :rtype: int
13923
+ """
13924
+ ...
13925
+
13926
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
13927
+ """
13928
+
13929
+ :return: The RNA type or default when not found.
13930
+ :rtype: bpy.types.Struct
13931
+ """
13932
+ ...
13933
+
13934
+ def bl_rna_get_subclass_py(self) -> typing.Any:
13935
+ """
13936
+
13937
+ :return: The class or default when not found.
13938
+ :rtype: typing.Any
13939
+ """
13940
+ ...
13941
+
13942
+ def draw(self, context):
13943
+ """
13944
+
13945
+ :param context:
13946
+ """
13947
+ ...
13948
+
13949
+ def driver_add(self) -> bpy.types.FCurve:
13950
+ """Adds driver(s) to the given property
13951
+
13952
+ :return: The driver(s) added.
13953
+ :rtype: bpy.types.FCurve
13954
+ """
13955
+ ...
13956
+
13957
+ def driver_remove(self) -> bool:
13958
+ """Remove driver(s) from the given property
13959
+
13960
+ :return: Success of driver removal.
13961
+ :rtype: bool
13962
+ """
13963
+ ...
13964
+
13965
+ def get(self):
13966
+ """Returns the value of the custom property assigned to key or default
13967
+ when not found (matches Python's dictionary function of the same name).
13968
+
13969
+ """
13970
+ ...
13971
+
13972
+ def has_sequencer(self, context):
13973
+ """
13974
+
13975
+ :param context:
13976
+ """
13977
+ ...
13978
+
13979
+ def id_properties_clear(self):
13980
+ """
13981
+
13982
+ :return: Remove the parent group for an RNA struct's custom IDProperties.
13983
+ """
13984
+ ...
13985
+
13986
+ def id_properties_ensure(self):
13987
+ """
13988
+
13989
+ :return: the parent group for an RNA struct's custom IDProperties.
13990
+ """
13991
+ ...
13992
+
13993
+ def id_properties_ui(self):
13994
+ """
13995
+
13996
+ :return: Return an object used to manage an IDProperty's UI data.
13997
+ """
13998
+ ...
13999
+
14000
+ def is_extended(self): ...
14001
+ def is_property_hidden(self) -> bool:
14002
+ """Check if a property is hidden.
14003
+
14004
+ :return: True when the property is hidden.
14005
+ :rtype: bool
14006
+ """
14007
+ ...
14008
+
14009
+ def is_property_overridable_library(self) -> bool:
14010
+ """Check if a property is overridable.
14011
+
14012
+ :return: True when the property is overridable.
14013
+ :rtype: bool
14014
+ """
14015
+ ...
14016
+
14017
+ def is_property_readonly(self) -> bool:
14018
+ """Check if a property is readonly.
14019
+
14020
+ :return: True when the property is readonly (not writable).
14021
+ :rtype: bool
14022
+ """
14023
+ ...
14024
+
14025
+ def is_property_set(self) -> bool:
14026
+ """Check if a property is set, use for testing operator properties.
14027
+
14028
+ :return: True when the property has been set.
14029
+ :rtype: bool
14030
+ """
14031
+ ...
14032
+
14033
+ def items(self):
14034
+ """Returns the items of this objects custom properties (matches Python's
14035
+ dictionary function of the same name).
14036
+
14037
+ :return: custom property key, value pairs.
14038
+ """
14039
+ ...
14040
+
14041
+ def keyframe_delete(self) -> bool:
14042
+ """Remove a keyframe from this properties fcurve.
14043
+
14044
+ :return: Success of keyframe deletion.
14045
+ :rtype: bool
14046
+ """
14047
+ ...
14048
+
14049
+ def keyframe_insert(self) -> bool:
14050
+ """Insert a keyframe on the property given, adding fcurves and animation data when necessary.
14051
+
14052
+ :return: Success of keyframe insertion.
14053
+ :rtype: bool
14054
+ """
14055
+ ...
14056
+
14057
+ def keys(self):
14058
+ """Returns the keys of this objects custom properties (matches Python's
14059
+ dictionary function of the same name).
14060
+
14061
+ :return: custom property keys.
14062
+ """
14063
+ ...
14064
+
14065
+ def path_from_id(self) -> str:
14066
+ """Returns the data path from the ID to this object (string).
14067
+
14068
+ :return: The path from `bpy.types.bpy_struct.id_data`
14069
+ to this struct and property (when given).
14070
+ :rtype: str
14071
+ """
14072
+ ...
14073
+
14074
+ def path_resolve(self):
14075
+ """Returns the property from the path, raise an exception when not found."""
14076
+ ...
14077
+
14078
+ def poll(self, context):
14079
+ """
14080
+
14081
+ :param context:
14082
+ """
14083
+ ...
14084
+
14085
+ def pop(self):
14086
+ """Remove and return the value of the custom property assigned to key or default
14087
+ when not found (matches Python's dictionary function of the same name).
14088
+
14089
+ """
14090
+ ...
14091
+
14092
+ def prepend(self, draw_func):
14093
+ """Prepend a draw function to this menu, takes the same arguments as
14094
+ the menus draw function
14095
+
14096
+ :param draw_func:
14097
+ """
14098
+ ...
14099
+
14100
+ def property_overridable_library_set(self) -> bool:
14101
+ """Define a property as overridable or not (only for custom properties!).
14102
+
14103
+ :return: True when the overridable status of the property was successfully set.
14104
+ :rtype: bool
14105
+ """
14106
+ ...
14107
+
14108
+ def property_unset(self):
14109
+ """Unset a property, will use default value afterward."""
14110
+ ...
14111
+
14112
+ def remove(self, draw_func):
14113
+ """Remove a draw function that has been added to this menu
14114
+
14115
+ :param draw_func:
14116
+ """
14117
+ ...
14118
+
14119
+ def type_recast(self):
14120
+ """Return a new instance, this is needed because types
14121
+ such as textures can be changed at runtime.
14122
+
14123
+ :return: a new instance of this object with the type initialized again.
14124
+ """
14125
+ ...
14126
+
14127
+ def values(self):
14128
+ """Returns the values of this objects custom properties (matches Python's
14129
+ dictionary function of the same name).
14130
+
14131
+ :return: custom property values.
14132
+ """
14133
+ ...
14134
+
14135
+ class SEQUENCER_PT_modifiers(SequencerButtonsPanel, bpy_types._GenericUI):
13621
14136
  bl_category: typing.Any
13622
14137
  bl_label: typing.Any
13623
- bl_options: typing.Any
13624
- bl_order: typing.Any
13625
14138
  bl_region_type: typing.Any
13626
14139
  bl_rna: typing.Any
13627
14140
  bl_space_type: typing.Any
@@ -13852,9 +14365,10 @@ class SEQUENCER_PT_custom_props(
13852
14365
  """
13853
14366
  ...
13854
14367
 
13855
- class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy_types._GenericUI):
14368
+ class SEQUENCER_PT_movie_clip(SequencerButtonsPanel, bpy_types._GenericUI):
13856
14369
  bl_category: typing.Any
13857
14370
  bl_label: typing.Any
14371
+ bl_options: typing.Any
13858
14372
  bl_region_type: typing.Any
13859
14373
  bl_rna: typing.Any
13860
14374
  bl_space_type: typing.Any
@@ -14085,13 +14599,12 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy_types._GenericUI):
14085
14599
  """
14086
14600
  ...
14087
14601
 
14088
- class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy_types._GenericUI):
14089
- bl_category: typing.Any
14602
+ class SEQUENCER_PT_overlay(bpy_types._GenericUI):
14090
14603
  bl_label: typing.Any
14091
- bl_parent_id: typing.Any
14092
14604
  bl_region_type: typing.Any
14093
14605
  bl_rna: typing.Any
14094
14606
  bl_space_type: typing.Any
14607
+ bl_ui_units_x: typing.Any
14095
14608
  id_data: typing.Any
14096
14609
 
14097
14610
  def append(self, draw_func):
@@ -14126,10 +14639,10 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy_types._GenericU
14126
14639
  """
14127
14640
  ...
14128
14641
 
14129
- def draw(self, context):
14642
+ def draw(self, _context):
14130
14643
  """
14131
14644
 
14132
- :param context:
14645
+ :param _context:
14133
14646
  """
14134
14647
  ...
14135
14648
 
@@ -14156,13 +14669,6 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy_types._GenericU
14156
14669
  """
14157
14670
  ...
14158
14671
 
14159
- def has_sequencer(self, context):
14160
- """
14161
-
14162
- :param context:
14163
- """
14164
- ...
14165
-
14166
14672
  def id_properties_clear(self):
14167
14673
  """
14168
14674
 
@@ -14262,13 +14768,6 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy_types._GenericU
14262
14768
  """Returns the property from the path, raise an exception when not found."""
14263
14769
  ...
14264
14770
 
14265
- def poll(self, context):
14266
- """
14267
-
14268
- :param context:
14269
- """
14270
- ...
14271
-
14272
14771
  def pop(self):
14273
14772
  """Remove and return the value of the custom property assigned to key or default
14274
14773
  when not found (matches Python's dictionary function of the same name).
@@ -14319,10 +14818,10 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy_types._GenericU
14319
14818
  """
14320
14819
  ...
14321
14820
 
14322
- class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy_types._GenericUI):
14821
+ class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy_types._GenericUI):
14323
14822
  bl_category: typing.Any
14324
14823
  bl_label: typing.Any
14325
- bl_parent_id: typing.Any
14824
+ bl_options: typing.Any
14326
14825
  bl_region_type: typing.Any
14327
14826
  bl_rna: typing.Any
14328
14827
  bl_space_type: typing.Any
@@ -14390,7 +14889,7 @@ class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy_types._GenericUI
14390
14889
  """
14391
14890
  ...
14392
14891
 
14393
- def has_sequencer(self, context):
14892
+ def has_preview(self, context):
14394
14893
  """
14395
14894
 
14396
14895
  :param context:
@@ -14553,9 +15052,9 @@ class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy_types._GenericUI
14553
15052
  """
14554
15053
  ...
14555
15054
 
14556
- class SEQUENCER_PT_mask(SequencerButtonsPanel, bpy_types._GenericUI):
14557
- bl_category: typing.Any
15055
+ class SEQUENCER_PT_preview_overlay(bpy_types._GenericUI):
14558
15056
  bl_label: typing.Any
15057
+ bl_parent_id: typing.Any
14559
15058
  bl_region_type: typing.Any
14560
15059
  bl_rna: typing.Any
14561
15060
  bl_space_type: typing.Any
@@ -14623,13 +15122,6 @@ class SEQUENCER_PT_mask(SequencerButtonsPanel, bpy_types._GenericUI):
14623
15122
  """
14624
15123
  ...
14625
15124
 
14626
- def has_sequencer(self, context):
14627
- """
14628
-
14629
- :param context:
14630
- """
14631
- ...
14632
-
14633
15125
  def id_properties_clear(self):
14634
15126
  """
14635
15127
 
@@ -14786,9 +15278,9 @@ class SEQUENCER_PT_mask(SequencerButtonsPanel, bpy_types._GenericUI):
14786
15278
  """
14787
15279
  ...
14788
15280
 
14789
- class SEQUENCER_PT_modifiers(SequencerButtonsPanel, bpy_types._GenericUI):
14790
- bl_category: typing.Any
15281
+ class SEQUENCER_PT_preview_snapping(bpy_types._GenericUI):
14791
15282
  bl_label: typing.Any
15283
+ bl_parent_id: typing.Any
14792
15284
  bl_region_type: typing.Any
14793
15285
  bl_rna: typing.Any
14794
15286
  bl_space_type: typing.Any
@@ -14856,13 +15348,6 @@ class SEQUENCER_PT_modifiers(SequencerButtonsPanel, bpy_types._GenericUI):
14856
15348
  """
14857
15349
  ...
14858
15350
 
14859
- def has_sequencer(self, context):
14860
- """
14861
-
14862
- :param context:
14863
- """
14864
- ...
14865
-
14866
15351
  def id_properties_clear(self):
14867
15352
  """
14868
15353
 
@@ -15019,10 +15504,9 @@ class SEQUENCER_PT_modifiers(SequencerButtonsPanel, bpy_types._GenericUI):
15019
15504
  """
15020
15505
  ...
15021
15506
 
15022
- class SEQUENCER_PT_movie_clip(SequencerButtonsPanel, bpy_types._GenericUI):
15507
+ class SEQUENCER_PT_proxy_settings(SequencerButtonsPanel, bpy_types._GenericUI):
15023
15508
  bl_category: typing.Any
15024
15509
  bl_label: typing.Any
15025
- bl_options: typing.Any
15026
15510
  bl_region_type: typing.Any
15027
15511
  bl_rna: typing.Any
15028
15512
  bl_space_type: typing.Any
@@ -15253,7 +15737,7 @@ class SEQUENCER_PT_movie_clip(SequencerButtonsPanel, bpy_types._GenericUI):
15253
15737
  """
15254
15738
  ...
15255
15739
 
15256
- class SEQUENCER_PT_proxy_settings(SequencerButtonsPanel, bpy_types._GenericUI):
15740
+ class SEQUENCER_PT_scene(SequencerButtonsPanel, bpy_types._GenericUI):
15257
15741
  bl_category: typing.Any
15258
15742
  bl_label: typing.Any
15259
15743
  bl_region_type: typing.Any
@@ -15486,7 +15970,7 @@ class SEQUENCER_PT_proxy_settings(SequencerButtonsPanel, bpy_types._GenericUI):
15486
15970
  """
15487
15971
  ...
15488
15972
 
15489
- class SEQUENCER_PT_scene(SequencerButtonsPanel, bpy_types._GenericUI):
15973
+ class SEQUENCER_PT_scene_sound(SequencerButtonsPanel, bpy_types._GenericUI):
15490
15974
  bl_category: typing.Any
15491
15975
  bl_label: typing.Any
15492
15976
  bl_region_type: typing.Any
@@ -15719,9 +16203,9 @@ class SEQUENCER_PT_scene(SequencerButtonsPanel, bpy_types._GenericUI):
15719
16203
  """
15720
16204
  ...
15721
16205
 
15722
- class SEQUENCER_PT_scene_sound(SequencerButtonsPanel, bpy_types._GenericUI):
15723
- bl_category: typing.Any
16206
+ class SEQUENCER_PT_sequencer_overlay(bpy_types._GenericUI):
15724
16207
  bl_label: typing.Any
16208
+ bl_parent_id: typing.Any
15725
16209
  bl_region_type: typing.Any
15726
16210
  bl_rna: typing.Any
15727
16211
  bl_space_type: typing.Any
@@ -15789,13 +16273,6 @@ class SEQUENCER_PT_scene_sound(SequencerButtonsPanel, bpy_types._GenericUI):
15789
16273
  """
15790
16274
  ...
15791
16275
 
15792
- def has_sequencer(self, context):
15793
- """
15794
-
15795
- :param context:
15796
- """
15797
- ...
15798
-
15799
16276
  def id_properties_clear(self):
15800
16277
  """
15801
16278
 
@@ -15952,10 +16429,9 @@ class SEQUENCER_PT_scene_sound(SequencerButtonsPanel, bpy_types._GenericUI):
15952
16429
  """
15953
16430
  ...
15954
16431
 
15955
- class SEQUENCER_PT_source(SequencerButtonsPanel, bpy_types._GenericUI):
15956
- bl_category: typing.Any
16432
+ class SEQUENCER_PT_sequencer_overlay_strips(bpy_types._GenericUI):
15957
16433
  bl_label: typing.Any
15958
- bl_options: typing.Any
16434
+ bl_parent_id: typing.Any
15959
16435
  bl_region_type: typing.Any
15960
16436
  bl_rna: typing.Any
15961
16437
  bl_space_type: typing.Any
@@ -16023,13 +16499,6 @@ class SEQUENCER_PT_source(SequencerButtonsPanel, bpy_types._GenericUI):
16023
16499
  """
16024
16500
  ...
16025
16501
 
16026
- def has_sequencer(self, context):
16027
- """
16028
-
16029
- :param context:
16030
- """
16031
- ...
16032
-
16033
16502
  def id_properties_clear(self):
16034
16503
  """
16035
16504
 
@@ -16186,10 +16655,9 @@ class SEQUENCER_PT_source(SequencerButtonsPanel, bpy_types._GenericUI):
16186
16655
  """
16187
16656
  ...
16188
16657
 
16189
- class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy_types._GenericUI):
16190
- bl_category: typing.Any
16658
+ class SEQUENCER_PT_sequencer_overlay_waveforms(bpy_types._GenericUI):
16191
16659
  bl_label: typing.Any
16192
- bl_options: typing.Any
16660
+ bl_parent_id: typing.Any
16193
16661
  bl_region_type: typing.Any
16194
16662
  bl_rna: typing.Any
16195
16663
  bl_space_type: typing.Any
@@ -16257,13 +16725,6 @@ class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy_types._GenericUI):
16257
16725
  """
16258
16726
  ...
16259
16727
 
16260
- def has_sequencer(self, context):
16261
- """
16262
-
16263
- :param context:
16264
- """
16265
- ...
16266
-
16267
16728
  def id_properties_clear(self):
16268
16729
  """
16269
16730
 
@@ -16420,10 +16881,9 @@ class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy_types._GenericUI):
16420
16881
  """
16421
16882
  ...
16422
16883
 
16423
- class SEQUENCER_PT_strip_cache(SequencerButtonsPanel, bpy_types._GenericUI):
16424
- bl_category: typing.Any
16884
+ class SEQUENCER_PT_sequencer_snapping(bpy_types._GenericUI):
16425
16885
  bl_label: typing.Any
16426
- bl_options: typing.Any
16886
+ bl_parent_id: typing.Any
16427
16887
  bl_region_type: typing.Any
16428
16888
  bl_rna: typing.Any
16429
16889
  bl_space_type: typing.Any
@@ -16468,13 +16928,6 @@ class SEQUENCER_PT_strip_cache(SequencerButtonsPanel, bpy_types._GenericUI):
16468
16928
  """
16469
16929
  ...
16470
16930
 
16471
- def draw_header(self, context):
16472
- """
16473
-
16474
- :param context:
16475
- """
16476
- ...
16477
-
16478
16931
  def driver_add(self) -> bpy.types.FCurve:
16479
16932
  """Adds driver(s) to the given property
16480
16933
 
@@ -16498,13 +16951,6 @@ class SEQUENCER_PT_strip_cache(SequencerButtonsPanel, bpy_types._GenericUI):
16498
16951
  """
16499
16952
  ...
16500
16953
 
16501
- def has_sequencer(self, context):
16502
- """
16503
-
16504
- :param context:
16505
- """
16506
- ...
16507
-
16508
16954
  def id_properties_clear(self):
16509
16955
  """
16510
16956
 
@@ -16661,8 +17107,7 @@ class SEQUENCER_PT_strip_cache(SequencerButtonsPanel, bpy_types._GenericUI):
16661
17107
  """
16662
17108
  ...
16663
17109
 
16664
- class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy_types._GenericUI):
16665
- bl_category: typing.Any
17110
+ class SEQUENCER_PT_snapping(bpy_types._GenericUI):
16666
17111
  bl_label: typing.Any
16667
17112
  bl_region_type: typing.Any
16668
17113
  bl_rna: typing.Any
@@ -16701,17 +17146,10 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy_types._GenericUI):
16701
17146
  """
16702
17147
  ...
16703
17148
 
16704
- def draw(self, context):
16705
- """
16706
-
16707
- :param context:
16708
- """
16709
- ...
16710
-
16711
- def draw_header(self, context):
17149
+ def draw(self, _context):
16712
17150
  """
16713
17151
 
16714
- :param context:
17152
+ :param _context:
16715
17153
  """
16716
17154
  ...
16717
17155
 
@@ -16738,13 +17176,6 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy_types._GenericUI):
16738
17176
  """
16739
17177
  ...
16740
17178
 
16741
- def has_sequencer(self, context):
16742
- """
16743
-
16744
- :param context:
16745
- """
16746
- ...
16747
-
16748
17179
  def id_properties_clear(self):
16749
17180
  """
16750
17181
 
@@ -16844,13 +17275,6 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy_types._GenericUI):
16844
17275
  """Returns the property from the path, raise an exception when not found."""
16845
17276
  ...
16846
17277
 
16847
- def poll(self, context):
16848
- """
16849
-
16850
- :param context:
16851
- """
16852
- ...
16853
-
16854
17278
  def pop(self):
16855
17279
  """Remove and return the value of the custom property assigned to key or default
16856
17280
  when not found (matches Python's dictionary function of the same name).
@@ -16901,7 +17325,7 @@ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy_types._GenericUI):
16901
17325
  """
16902
17326
  ...
16903
17327
 
16904
- class SEQUENCER_PT_time(SequencerButtonsPanel, bpy_types._GenericUI):
17328
+ class SEQUENCER_PT_source(SequencerButtonsPanel, bpy_types._GenericUI):
16905
17329
  bl_category: typing.Any
16906
17330
  bl_label: typing.Any
16907
17331
  bl_options: typing.Any
@@ -16949,13 +17373,6 @@ class SEQUENCER_PT_time(SequencerButtonsPanel, bpy_types._GenericUI):
16949
17373
  """
16950
17374
  ...
16951
17375
 
16952
- def draw_header_preset(self, context):
16953
- """
16954
-
16955
- :param context:
16956
- """
16957
- ...
16958
-
16959
17376
  def driver_add(self) -> bpy.types.FCurve:
16960
17377
  """Adds driver(s) to the given property
16961
17378
 
@@ -17142,11 +17559,7 @@ class SEQUENCER_PT_time(SequencerButtonsPanel, bpy_types._GenericUI):
17142
17559
  """
17143
17560
  ...
17144
17561
 
17145
- class SEQUENCER_PT_annotation(
17146
- bl_ui.properties_grease_pencil_common.AnnotationDataPanel,
17147
- SequencerButtonsPanel_Output,
17148
- bpy_types._GenericUI,
17149
- ):
17562
+ class SEQUENCER_PT_strip(SequencerButtonsPanel, bpy_types._GenericUI):
17150
17563
  bl_category: typing.Any
17151
17564
  bl_label: typing.Any
17152
17565
  bl_options: typing.Any
@@ -17194,22 +17607,6 @@ class SEQUENCER_PT_annotation(
17194
17607
  """
17195
17608
  ...
17196
17609
 
17197
- def draw_header(self, context):
17198
- """
17199
-
17200
- :param context:
17201
- """
17202
- ...
17203
-
17204
- def draw_layers(self, context, layout, gpd):
17205
- """
17206
-
17207
- :param context:
17208
- :param layout:
17209
- :param gpd:
17210
- """
17211
- ...
17212
-
17213
17610
  def driver_add(self) -> bpy.types.FCurve:
17214
17611
  """Adds driver(s) to the given property
17215
17612
 
@@ -17233,7 +17630,7 @@ class SEQUENCER_PT_annotation(
17233
17630
  """
17234
17631
  ...
17235
17632
 
17236
- def has_preview(self, context):
17633
+ def has_sequencer(self, context):
17237
17634
  """
17238
17635
 
17239
17636
  :param context:
@@ -17396,15 +17793,10 @@ class SEQUENCER_PT_annotation(
17396
17793
  """
17397
17794
  ...
17398
17795
 
17399
- class SEQUENCER_PT_annotation_onion(
17400
- bl_ui.properties_grease_pencil_common.AnnotationOnionSkin,
17401
- SequencerButtonsPanel_Output,
17402
- bpy_types._GenericUI,
17403
- ):
17796
+ class SEQUENCER_PT_strip_cache(SequencerButtonsPanel, bpy_types._GenericUI):
17404
17797
  bl_category: typing.Any
17405
17798
  bl_label: typing.Any
17406
17799
  bl_options: typing.Any
17407
- bl_parent_id: typing.Any
17408
17800
  bl_region_type: typing.Any
17409
17801
  bl_rna: typing.Any
17410
17802
  bl_space_type: typing.Any
@@ -17479,7 +17871,7 @@ class SEQUENCER_PT_annotation_onion(
17479
17871
  """
17480
17872
  ...
17481
17873
 
17482
- def has_preview(self, context):
17874
+ def has_sequencer(self, context):
17483
17875
  """
17484
17876
 
17485
17877
  :param context:
@@ -17642,10 +18034,9 @@ class SEQUENCER_PT_annotation_onion(
17642
18034
  """
17643
18035
  ...
17644
18036
 
17645
- class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy_types._GenericUI):
18037
+ class SEQUENCER_PT_strip_proxy(SequencerButtonsPanel, bpy_types._GenericUI):
17646
18038
  bl_category: typing.Any
17647
18039
  bl_label: typing.Any
17648
- bl_options: typing.Any
17649
18040
  bl_region_type: typing.Any
17650
18041
  bl_rna: typing.Any
17651
18042
  bl_space_type: typing.Any
@@ -17720,7 +18111,7 @@ class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy_types._Generi
17720
18111
  """
17721
18112
  ...
17722
18113
 
17723
- def has_preview(self, context):
18114
+ def has_sequencer(self, context):
17724
18115
  """
17725
18116
 
17726
18117
  :param context:
@@ -17883,7 +18274,7 @@ class SEQUENCER_PT_frame_overlay(SequencerButtonsPanel_Output, bpy_types._Generi
17883
18274
  """
17884
18275
  ...
17885
18276
 
17886
- class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy_types._GenericUI):
18277
+ class SEQUENCER_PT_time(SequencerButtonsPanel, bpy_types._GenericUI):
17887
18278
  bl_category: typing.Any
17888
18279
  bl_label: typing.Any
17889
18280
  bl_options: typing.Any
@@ -17931,6 +18322,13 @@ class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy_types._GenericUI):
17931
18322
  """
17932
18323
  ...
17933
18324
 
18325
+ def draw_header_preset(self, context):
18326
+ """
18327
+
18328
+ :param context:
18329
+ """
18330
+ ...
18331
+
17934
18332
  def driver_add(self) -> bpy.types.FCurve:
17935
18333
  """Adds driver(s) to the given property
17936
18334
 
@@ -17954,7 +18352,7 @@ class SEQUENCER_PT_preview(SequencerButtonsPanel_Output, bpy_types._GenericUI):
17954
18352
  """
17955
18353
  ...
17956
18354
 
17957
- def has_preview(self, context):
18355
+ def has_sequencer(self, context):
17958
18356
  """
17959
18357
 
17960
18358
  :param context:
@@ -19068,5 +19466,59 @@ class SEQUENCER_PT_view_safe_areas_center_cut(
19068
19466
  """
19069
19467
  ...
19070
19468
 
19469
+ class SequencerButtonsPanel:
19470
+ bl_region_type: typing.Any
19471
+ bl_space_type: typing.Any
19472
+
19473
+ def has_sequencer(self, context):
19474
+ """
19475
+
19476
+ :param context:
19477
+ """
19478
+ ...
19479
+
19480
+ def poll(self, context):
19481
+ """
19482
+
19483
+ :param context:
19484
+ """
19485
+ ...
19486
+
19487
+ class SequencerButtonsPanel_Output:
19488
+ bl_region_type: typing.Any
19489
+ bl_space_type: typing.Any
19490
+
19491
+ def has_preview(self, context):
19492
+ """
19493
+
19494
+ :param context:
19495
+ """
19496
+ ...
19497
+
19498
+ def poll(self, context):
19499
+ """
19500
+
19501
+ :param context:
19502
+ """
19503
+ ...
19504
+
19505
+ class SequencerColorTagPicker:
19506
+ bl_region_type: typing.Any
19507
+ bl_space_type: typing.Any
19508
+
19509
+ def has_sequencer(self, context):
19510
+ """
19511
+
19512
+ :param context:
19513
+ """
19514
+ ...
19515
+
19516
+ def poll(self, context):
19517
+ """
19518
+
19519
+ :param context:
19520
+ """
19521
+ ...
19522
+
19071
19523
  def draw_color_balance(layout, color_balance): ...
19072
19524
  def selected_sequences_len(context): ...