This was introduced to the outliner when we had no User Preference window back in 2.5x. Right now it makes no sense to keep this around. But how about addon user preferences: * They belong in the user preference window under the addon. How about the user preferences themselves: * You find them in the user preference window. And templates? * Why are they here in the first place? After talking to Pablo Vazquez (who in turn poked Sergey Sharybin) we found it reasonable to get rid of this. If it turns out that we were wrong we revert this. As for leaving this exposed as a debug option (as suggested on IRC) I would say no, please. This end up polluting the code and never cleaned up in the end. (this was specific talking about templates). Technical note: I left the functions in outliner still hanging around. While I used UNUSED_FUNCTION for one of them, for the other one I had to use: `#if 0` because the function was calling itself, which would fail to build if I used UNUSED_FUNCTION.
218 lines
7.3 KiB
Python
218 lines
7.3 KiB
Python
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
# <pep8 compliant>
|
|
import bpy
|
|
from bpy.types import Header, Menu
|
|
|
|
|
|
class OUTLINER_HT_header(Header):
|
|
bl_space_type = 'OUTLINER'
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
space = context.space_data
|
|
display_mode = space.display_mode
|
|
scene = context.scene
|
|
ks = context.scene.keying_sets.active
|
|
support_filters = display_mode in {'COLLECTIONS', 'VIEW_LAYER'}
|
|
|
|
row = layout.row(align=True)
|
|
row.template_header()
|
|
|
|
OUTLINER_MT_editor_menus.draw_collapsible(context, layout)
|
|
|
|
layout.prop(space, "display_mode", text="")
|
|
|
|
if space.display_mode == 'DATABLOCKS':
|
|
layout.separator()
|
|
|
|
row = layout.row(align=True)
|
|
row.operator("outliner.keyingset_add_selected", icon='ZOOMIN', text="")
|
|
row.operator("outliner.keyingset_remove_selected", icon='ZOOMOUT', text="")
|
|
|
|
if ks:
|
|
row = layout.row()
|
|
row.prop_search(scene.keying_sets, "active", scene, "keying_sets", text="")
|
|
|
|
row = layout.row(align=True)
|
|
row.operator("anim.keyframe_insert", text="", icon='KEY_HLT')
|
|
row.operator("anim.keyframe_delete", text="", icon='KEY_DEHLT')
|
|
else:
|
|
row = layout.row()
|
|
row.label(text="No Keying Set Active")
|
|
|
|
row = layout.row(align=True)
|
|
row.prop(space, "use_filter_search", text="")
|
|
if space.use_filter_search:
|
|
row.prop(space, "filter_text", text="")
|
|
row.prop(space, "use_filter_complete", text="")
|
|
row.prop(space, "use_filter_case_sensitive", text="")
|
|
|
|
if support_filters:
|
|
row.separator()
|
|
|
|
row.prop(space, "use_filters", text="")
|
|
if space.use_filters:
|
|
row.separator()
|
|
row.prop(space, "use_filter_collection", text="")
|
|
row.prop(space, "use_filter_object", text="")
|
|
sub = row.row(align=True)
|
|
sub.active = space.use_filter_object
|
|
sub.prop(space, "use_filter_object_content", text="")
|
|
sub.prop(space, "use_filter_children", text="")
|
|
|
|
sub.separator()
|
|
sub.prop(space, "use_filter_object_type", text="")
|
|
|
|
if space.use_filter_object_type:
|
|
if bpy.data.meshes:
|
|
sub.prop(space, "use_filter_object_mesh", text="")
|
|
if bpy.data.armatures:
|
|
sub.prop(space, "use_filter_object_armature", text="")
|
|
if bpy.data.lamps:
|
|
sub.prop(space, "use_filter_object_lamp", text="")
|
|
if bpy.data.cameras:
|
|
sub.prop(space, "use_filter_object_camera", text="")
|
|
|
|
sub.prop(space, "use_filter_object_empty", text="")
|
|
|
|
if bpy.data.curves or \
|
|
bpy.data.metaballs or \
|
|
bpy.data.lightprobes or \
|
|
bpy.data.lattices or \
|
|
bpy.data.fonts or bpy.data.speakers:
|
|
sub.prop(space, "use_filter_object_others", text="")
|
|
|
|
sub.separator()
|
|
sub.prop(space, "use_filter_object_state", text="")
|
|
|
|
if space.use_filter_object_state:
|
|
sub.prop(space, "filter_state", text="", expand=True)
|
|
|
|
|
|
class OUTLINER_MT_editor_menus(Menu):
|
|
bl_idname = "OUTLINER_MT_editor_menus"
|
|
bl_label = ""
|
|
|
|
def draw(self, context):
|
|
self.draw_menus(self.layout, context)
|
|
|
|
@staticmethod
|
|
def draw_menus(layout, context):
|
|
space = context.space_data
|
|
|
|
layout.menu("OUTLINER_MT_view")
|
|
|
|
if space.display_mode == 'DATABLOCKS':
|
|
layout.menu("OUTLINER_MT_edit_datablocks")
|
|
|
|
elif space.display_mode == 'ORPHAN_DATA':
|
|
layout.menu("OUTLINER_MT_edit_orphan_data")
|
|
|
|
elif space.display_mode == 'VIEW_LAYER':
|
|
layout.menu("OUTLINER_MT_edit_view_layer")
|
|
|
|
|
|
class OUTLINER_MT_view(Menu):
|
|
bl_label = "View"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
space = context.space_data
|
|
|
|
if space.display_mode != 'DATABLOCKS':
|
|
layout.prop(space, "use_sort_alpha")
|
|
layout.prop(space, "show_restrict_columns")
|
|
layout.separator()
|
|
layout.operator("outliner.show_active")
|
|
|
|
layout.operator("outliner.show_one_level", text="Show One Level")
|
|
layout.operator("outliner.show_one_level", text="Hide One Level").open = False
|
|
layout.operator("outliner.show_hierarchy")
|
|
|
|
layout.separator()
|
|
|
|
layout.operator("screen.area_dupli")
|
|
layout.operator("screen.screen_full_area")
|
|
layout.operator("screen.screen_full_area", text="Toggle Fullscreen Area").use_hide_panels = True
|
|
|
|
|
|
class OUTLINER_MT_edit_view_layer(Menu):
|
|
bl_label = "Edit"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.operator("outliner.collection_link", icon='LINKED')
|
|
layout.operator("outliner.collection_new", icon='NEW')
|
|
|
|
|
|
class OUTLINER_MT_edit_datablocks(Menu):
|
|
bl_label = "Edit"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.operator("outliner.keyingset_add_selected")
|
|
layout.operator("outliner.keyingset_remove_selected")
|
|
|
|
layout.separator()
|
|
|
|
layout.operator("outliner.drivers_add_selected")
|
|
layout.operator("outliner.drivers_delete_selected")
|
|
|
|
|
|
class OUTLINER_MT_edit_orphan_data(Menu):
|
|
bl_label = "Edit"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
layout.operator("outliner.orphans_purge")
|
|
|
|
|
|
class OUTLINER_MT_context_scene_collection(Menu):
|
|
bl_label = "Collection"
|
|
|
|
def draw(self, context):
|
|
layout = self.layout
|
|
|
|
layout.operator("outliner.collection_nested_new", text="New Collection", icon='NEW')
|
|
layout.operator("outliner.collection_delete_selected", text="Delete Collections", icon='X')
|
|
layout.separator()
|
|
layout.operator("outliner.collection_objects_add", text="Add Selected", icon='ZOOMIN')
|
|
layout.operator("outliner.collection_objects_remove", text="Remove Selected", icon='ZOOMOUT')
|
|
|
|
|
|
classes = (
|
|
OUTLINER_HT_header,
|
|
OUTLINER_MT_editor_menus,
|
|
OUTLINER_MT_view,
|
|
OUTLINER_MT_edit_view_layer,
|
|
OUTLINER_MT_edit_datablocks,
|
|
OUTLINER_MT_edit_orphan_data,
|
|
OUTLINER_MT_context_scene_collection,
|
|
)
|
|
|
|
if __name__ == "__main__": # only for live edit.
|
|
from bpy.utils import register_class
|
|
for cls in classes:
|
|
register_class(cls)
|