Blender  V2.93
outliner_ops.c
Go to the documentation of this file.
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public License
4  * as published by the Free Software Foundation; either version 2
5  * of the License, or (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License
13  * along with this program; if not, write to the Free Software Foundation,
14  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15  *
16  * The Original Code is Copyright (C) 2008 Blender Foundation.
17  * All rights reserved.
18  */
19 
24 #include "WM_api.h"
25 
26 #include "ED_screen.h"
27 
28 #include "outliner_intern.h"
29 
30 /* ************************** registration **********************************/
31 
33 {
57 
62 
65 
68 
71 
73 
80 
81  /* collections */
96 
108 
110 }
111 
113 {
114  WM_keymap_ensure(keyconf, "Outliner", SPACE_OUTLINER, 0);
115 }
@ SPACE_OUTLINER
void OUTLINER_OT_collection_disable(wmOperatorType *ot)
void OUTLINER_OT_collection_show_inside(wmOperatorType *ot)
void OUTLINER_OT_collection_objects_deselect(wmOperatorType *ot)
void OUTLINER_OT_collection_duplicate_linked(wmOperatorType *ot)
void OUTLINER_OT_unhide_all(wmOperatorType *ot)
void OUTLINER_OT_collection_instance(wmOperatorType *ot)
void OUTLINER_OT_collection_holdout_set(wmOperatorType *ot)
void OUTLINER_OT_collection_exclude_set(wmOperatorType *ot)
void OUTLINER_OT_collection_objects_select(wmOperatorType *ot)
void OUTLINER_OT_collection_new(wmOperatorType *ot)
void OUTLINER_OT_collection_duplicate(wmOperatorType *ot)
void OUTLINER_OT_collection_hide_inside(wmOperatorType *ot)
void OUTLINER_OT_collection_holdout_clear(wmOperatorType *ot)
void OUTLINER_OT_collection_indirect_only_clear(wmOperatorType *ot)
void OUTLINER_OT_collection_disable_render(wmOperatorType *ot)
void OUTLINER_OT_collection_hide(wmOperatorType *ot)
void OUTLINER_OT_collection_exclude_clear(wmOperatorType *ot)
void OUTLINER_OT_collection_enable_render(wmOperatorType *ot)
void OUTLINER_OT_collection_enable(wmOperatorType *ot)
void OUTLINER_OT_collection_indirect_only_set(wmOperatorType *ot)
void OUTLINER_OT_hide(wmOperatorType *ot)
void OUTLINER_OT_collection_color_tag_set(wmOperatorType *ot)
void OUTLINER_OT_collection_hierarchy_delete(wmOperatorType *ot)
void OUTLINER_OT_collection_isolate(wmOperatorType *ot)
void OUTLINER_OT_collection_show(wmOperatorType *ot)
void OUTLINER_OT_collection_link(wmOperatorType *ot)
void OUTLINER_OT_material_drop(wmOperatorType *ot)
void OUTLINER_OT_item_drag_drop(wmOperatorType *ot)
void OUTLINER_OT_parent_drop(wmOperatorType *ot)
void OUTLINER_OT_collection_drop(wmOperatorType *ot)
void OUTLINER_OT_scene_drop(wmOperatorType *ot)
void OUTLINER_OT_datastack_drop(wmOperatorType *ot)
void OUTLINER_OT_parent_clear(wmOperatorType *ot)
void OUTLINER_OT_drivers_add_selected(wmOperatorType *ot)
void OUTLINER_OT_show_active(wmOperatorType *ot)
void OUTLINER_OT_orphans_purge(wmOperatorType *ot)
void OUTLINER_OT_id_remap(wmOperatorType *ot)
void OUTLINER_OT_lib_relocate(wmOperatorType *ot)
void OUTLINER_OT_drivers_delete_selected(wmOperatorType *ot)
void OUTLINER_OT_id_paste(wmOperatorType *ot)
void OUTLINER_OT_keyingset_add_selected(wmOperatorType *ot)
void OUTLINER_OT_item_rename(wmOperatorType *ot)
void OUTLINER_OT_scroll_page(wmOperatorType *ot)
void OUTLINER_OT_expanded_toggle(wmOperatorType *ot)
void OUTLINER_OT_highlight_update(wmOperatorType *ot)
void OUTLINER_OT_keyingset_remove_selected(wmOperatorType *ot)
void OUTLINER_OT_show_one_level(wmOperatorType *ot)
void OUTLINER_OT_id_delete(wmOperatorType *ot)
void OUTLINER_OT_select_all(wmOperatorType *ot)
void OUTLINER_OT_item_openclose(wmOperatorType *ot)
void OUTLINER_OT_show_hierarchy(wmOperatorType *ot)
void OUTLINER_OT_id_copy(wmOperatorType *ot)
void OUTLINER_OT_action_set(struct wmOperatorType *ot)
void OUTLINER_OT_id_operation(struct wmOperatorType *ot)
void OUTLINER_OT_lib_operation(struct wmOperatorType *ot)
void OUTLINER_OT_operation(struct wmOperatorType *ot)
void OUTLINER_OT_scene_operation(struct wmOperatorType *ot)
void OUTLINER_OT_select_box(struct wmOperatorType *ot)
void OUTLINER_OT_select_walk(struct wmOperatorType *ot)
void OUTLINER_OT_animdata_operation(struct wmOperatorType *ot)
void OUTLINER_OT_constraint_operation(struct wmOperatorType *ot)
void OUTLINER_OT_data_operation(struct wmOperatorType *ot)
void OUTLINER_OT_object_operation(struct wmOperatorType *ot)
void OUTLINER_OT_delete(struct wmOperatorType *ot)
void OUTLINER_OT_modifier_operation(struct wmOperatorType *ot)
void OUTLINER_OT_item_activate(struct wmOperatorType *ot)
void outliner_keymap(wmKeyConfig *keyconf)
Definition: outliner_ops.c:112
void outliner_operatortypes(void)
Definition: outliner_ops.c:32
wmKeyMap * WM_keymap_ensure(wmKeyConfig *keyconf, const char *idname, int spaceid, int regionid)
Definition: wm_keymap.c:852
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))