Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/python_api/examples/bpy.types.UIList.2.py')
-rw-r--r--doc/python_api/examples/bpy.types.UIList.2.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/python_api/examples/bpy.types.UIList.2.py b/doc/python_api/examples/bpy.types.UIList.2.py
index 582e89af75a..6c2b113932a 100644
--- a/doc/python_api/examples/bpy.types.UIList.2.py
+++ b/doc/python_api/examples/bpy.types.UIList.2.py
@@ -177,3 +177,37 @@ class MESH_UL_vgroups_slow(bpy.types.UIList):
flt_neworder = helper_funcs.sort_items_helper(_sort, lambda e: e[1], True)
return flt_flags, flt_neworder
+
+
+# Minimal code to use above UIList...
+class UIListPanelExample2(bpy.types.Panel):
+ """Creates a Panel in the Object properties window"""
+ bl_label = "UIList Example 2 Panel"
+ bl_idname = "OBJECT_PT_ui_list_example_2"
+ bl_space_type = 'PROPERTIES'
+ bl_region_type = 'WINDOW'
+ bl_context = "object"
+
+ def draw(self, context):
+ layout = self.layout
+ obj = context.object
+
+ # template_list now takes two new args.
+ # The first one is the identifier of the registered UIList to use (if you want only the default list,
+ # with no custom draw code, use "UI_UL_list").
+ layout.template_list("MESH_UL_vgroups_slow", "", obj, "vertex_groups", obj.vertex_groups, "active_index")
+
+
+def register():
+ bpy.utils.register_class(MESH_UL_vgroups_slow)
+ bpy.utils.register_class(UIListPanelExample2)
+
+
+def unregister():
+ bpy.utils.unregister_class(UIListPanelExample2)
+ bpy.utils.unregister_class(MESH_UL_vgroups_slow)
+
+
+if __name__ == "__main__":
+ register()
+