change blender python interface for classes not to ise __idname__ rather bl_idname since __somename__ is for pythons internal use.

replacements...
"__idname__" -> "bl_idname"
"__props__" -> "bl_props"
"__label__" -> "bl_label"
"__register__" -> "bl_register"
"__undo__" -> "bl_undo"
"__space_type__" -> "bl_space_type"
"__default_closed__" -> "bl_default_closed"
"__region_type__" -> "bl_region_type"
"__context__" -> "bl_context"
"__show_header__" -> "bl_show_header"
"__URL__" -> "_url"
This commit is contained in:
Campbell Barton
2009-10-31 13:31:23 +00:00
parent 85eb9d6a2f
commit ea265fc697
61 changed files with 755 additions and 753 deletions

View File

@@ -2,7 +2,7 @@
import bpy
class TIME_HT_header(bpy.types.Header):
__space_type__ = 'TIMELINE'
bl_space_type = 'TIMELINE'
def draw(self, context):
layout = self.layout
@@ -64,7 +64,7 @@ class TIME_HT_header(bpy.types.Header):
row.itemO("anim.delete_keyframe", text="", icon='ICON_KEY_DEHLT')
class TIME_MT_view(bpy.types.Menu):
__label__ = "View"
bl_label = "View"
def draw(self, context):
layout = self.layout
@@ -78,7 +78,7 @@ class TIME_MT_view(bpy.types.Menu):
layout.itemR(st, "only_selected")
class TIME_MT_frame(bpy.types.Menu):
__label__ = "Frame"
bl_label = "Frame"
def draw(self, context):
layout = self.layout
@@ -102,7 +102,7 @@ class TIME_MT_frame(bpy.types.Menu):
sub.itemM("TIME_MT_autokey")
class TIME_MT_playback(bpy.types.Menu):
__label__ = "Playback"
bl_label = "Playback"
def draw(self, context):
layout = self.layout
@@ -129,7 +129,7 @@ class TIME_MT_playback(bpy.types.Menu):
layout.itemR(scene, "scrub_audio")
class TIME_MT_autokey(bpy.types.Menu):
__label__ = "Auto-Keyframing Mode"
bl_label = "Auto-Keyframing Mode"
def draw(self, context):
layout = self.layout