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

space_outliner.py « bl_ui « startup « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 328e0a2267bfab13654bbde05034ce344754071b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# ##### 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, Panel


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

        row = layout.row(align=True)
        row.template_header()

        layout.prop(space, "display_mode", text="")

        row = layout.row()
        if display_mode == 'COLLECTIONS':
            row.popover(space_type='OUTLINER',
                        region_type='HEADER',
                        panel_type="OUTLINER_PT_filter",
                        text="",
                        icon='FILTER')

        OUTLINER_MT_editor_menus.draw_collapsible(context, layout)

        if space.display_mode == 'DATA_API':
            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="")


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 == 'DATA_API':
            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 != 'DATA_API':
            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_duplicate", text="Duplicate Collection")
        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')


class OUTLINER_MT_context_object_select(Menu):
    bl_label = "Object Operation Select"

    def draw(self, context):
        layout = self.layout

        layout.operator("outliner.object_operation", text="Select").type='SELECT'
        layout.operator("outliner.object_operation", text="Deselect").type='DESELECT'
        layout.operator("outliner.object_operation", text="Select Hierarchy").type='SELECT_HIERARCHY'


class OUTLINER_MT_context_object_delete(Menu):
    bl_label = "Object Operation Delete"

    def draw(self, context):
        layout = self.layout

        layout.operator("outliner.object_operation", text="Delete").type='DELETE'
        layout.operator("outliner.object_operation", text="Delete Hierarchy").type='DELETE_HIERARCHY'


class OUTLINER_MT_context_object_collection(Menu):
    bl_label = "Object Operation Collection"

    def draw(self, context):
        layout = self.layout

        layout.operator("outliner.object_add_to_new_collection", text="Add to New Collection", icon='ZOOMIN')
        layout.operator("outliner.object_remove_from_collection", text="Remove from Collection", icon='ZOOMOUT')


class OUTLINER_MT_context_object(Menu):
    bl_label = "Object"

    def draw(self, context):
        layout = self.layout

        layout.menu("OUTLINER_MT_context_object_select", text="Select")
        layout.menu("OUTLINER_MT_context_object_delete", text="Delete")
        layout.menu("OUTLINER_MT_context_object_collection", text="Collection")
        layout.separator()
        layout.operator("outliner.object_operation", text="Remap Users").type='REMAP'
        layout.operator("outliner.object_operation", text="Rename").type='RENAME'


class OUTLINER_PT_filter(Panel):
    bl_space_type = 'OUTLINER'
    bl_region_type = 'HEADER'
    bl_label = "Filter"

    def draw(self, context):
        layout = self.layout

        space = context.space_data

        col = layout.column()
        col.prop(space, "filter_state", text="")
        sub = col.column(align=True)
        sub.active = space.filter_state != 'NONE'
        sub.prop(space, "use_filter_object_content", text="Object Contents")
        sub.prop(space, "use_filter_children", text="Object Children")

        layout.separator()

        col = layout.column_flow(align=True)
        col.active = space.filter_state != 'NONE'

        if bpy.data.meshes:
            col.prop(space, "use_filter_object_mesh", text="Meshes")
        if bpy.data.armatures:
            col.prop(space, "use_filter_object_armature", text="Armatures")
        if bpy.data.lamps:
            col.prop(space, "use_filter_object_lamp", text="Lamps")
        if bpy.data.cameras:
            col.prop(space, "use_filter_object_camera", text="Cameras")

        col.prop(space, "use_filter_object_empty", text="Empties")

        if bpy.data.curves or \
           bpy.data.metaballs or \
           bpy.data.lightprobes or \
           bpy.data.lattices or \
           bpy.data.fonts or bpy.data.speakers:
            col.prop(space, "use_filter_object_others", text="Others")

        layout.separator()
        layout.prop(space, "use_filter_collection", text="Collections")


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,
    OUTLINER_MT_context_object,
    OUTLINER_MT_context_object_delete,
    OUTLINER_MT_context_object_select,
    OUTLINER_MT_context_object_collection,
    OUTLINER_PT_filter,
)

if __name__ == "__main__":  # only for live edit.
    from bpy.utils import register_class
    for cls in classes:
        register_class(cls)