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

outliner_ops.c « space_outliner « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f2c833e48afef153b3a1d7a3caa8e1709ef09670 (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
/*
 * 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.
 *
 * The Original Code is Copyright (C) 2008 Blender Foundation.
 * All rights reserved.
 */

/** \file
 * \ingroup spoutliner
 */

#include "MEM_guardedalloc.h"

#include "DNA_collection_types.h"

#include "BLT_translation.h"

#include "RNA_access.h"

#include "UI_interface.h"
#include "UI_view2d.h"

#include "WM_api.h"
#include "WM_types.h"

#include "ED_screen.h"
#include "ED_select_utils.h"

#include "outliner_intern.h"

/* ************************** registration **********************************/

void outliner_operatortypes(void)
{
  WM_operatortype_append(OUTLINER_OT_highlight_update);
  WM_operatortype_append(OUTLINER_OT_item_activate);
  WM_operatortype_append(OUTLINER_OT_select_box);
  WM_operatortype_append(OUTLINER_OT_select_walk);
  WM_operatortype_append(OUTLINER_OT_item_openclose);
  WM_operatortype_append(OUTLINER_OT_item_rename);
  //  WM_operatortype_append(OUTLINER_OT_drag_init);
  WM_operatortype_append(OUTLINER_OT_operation);
  WM_operatortype_append(OUTLINER_OT_scene_operation);
  WM_operatortype_append(OUTLINER_OT_object_operation);
  WM_operatortype_append(OUTLINER_OT_lib_operation);
  WM_operatortype_append(OUTLINER_OT_lib_relocate);
  WM_operatortype_append(OUTLINER_OT_id_operation);
  WM_operatortype_append(OUTLINER_OT_id_delete);
  WM_operatortype_append(OUTLINER_OT_id_remap);
  WM_operatortype_append(OUTLINER_OT_id_copy);
  WM_operatortype_append(OUTLINER_OT_id_paste);
  WM_operatortype_append(OUTLINER_OT_data_operation);
  WM_operatortype_append(OUTLINER_OT_animdata_operation);
  WM_operatortype_append(OUTLINER_OT_action_set);
  WM_operatortype_append(OUTLINER_OT_constraint_operation);
  WM_operatortype_append(OUTLINER_OT_modifier_operation);

  WM_operatortype_append(OUTLINER_OT_show_one_level);
  WM_operatortype_append(OUTLINER_OT_show_active);
  WM_operatortype_append(OUTLINER_OT_show_hierarchy);
  WM_operatortype_append(OUTLINER_OT_scroll_page);

  WM_operatortype_append(OUTLINER_OT_select_all);
  WM_operatortype_append(OUTLINER_OT_expanded_toggle);

  WM_operatortype_append(OUTLINER_OT_keyingset_add_selected);
  WM_operatortype_append(OUTLINER_OT_keyingset_remove_selected);

  WM_operatortype_append(OUTLINER_OT_drivers_add_selected);
  WM_operatortype_append(OUTLINER_OT_drivers_delete_selected);

  WM_operatortype_append(OUTLINER_OT_orphans_purge);

  /* collections */
  WM_operatortype_append(OUTLINER_OT_collection_new);
  WM_operatortype_append(OUTLINER_OT_collection_duplicate_linked);
  WM_operatortype_append(OUTLINER_OT_collection_duplicate);
  WM_operatortype_append(OUTLINER_OT_collection_delete);
  WM_operatortype_append(OUTLINER_OT_collection_objects_select);
  WM_operatortype_append(OUTLINER_OT_collection_objects_deselect);
  WM_operatortype_append(OUTLINER_OT_collection_link);
  WM_operatortype_append(OUTLINER_OT_collection_instance);
  WM_operatortype_append(OUTLINER_OT_collection_exclude_set);
  WM_operatortype_append(OUTLINER_OT_collection_exclude_clear);
  WM_operatortype_append(OUTLINER_OT_collection_holdout_set);
  WM_operatortype_append(OUTLINER_OT_collection_holdout_clear);
  WM_operatortype_append(OUTLINER_OT_collection_indirect_only_set);
  WM_operatortype_append(OUTLINER_OT_collection_indirect_only_clear);

  WM_operatortype_append(OUTLINER_OT_collection_isolate);
  WM_operatortype_append(OUTLINER_OT_collection_disable);
  WM_operatortype_append(OUTLINER_OT_collection_enable);
  WM_operatortype_append(OUTLINER_OT_collection_hide);
  WM_operatortype_append(OUTLINER_OT_collection_show);
  WM_operatortype_append(OUTLINER_OT_collection_disable_render);
  WM_operatortype_append(OUTLINER_OT_collection_enable_render);
  WM_operatortype_append(OUTLINER_OT_collection_hide_inside);
  WM_operatortype_append(OUTLINER_OT_collection_show_inside);
  WM_operatortype_append(OUTLINER_OT_hide);
  WM_operatortype_append(OUTLINER_OT_unhide_all);
}

void outliner_keymap(wmKeyConfig *keyconf)
{
  WM_keymap_ensure(keyconf, "Outliner", SPACE_OUTLINER, 0);
}