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