Blender  V3.3
outliner_ops.cc
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later
2  * Copyright 2008 Blender Foundation. All rights reserved. */
3 
8 #include "WM_api.h"
9 
10 #include "ED_screen.h"
11 
12 #include "outliner_intern.hh"
13 
14 /* -------------------------------------------------------------------- */
19 {
45 
50 
53 
56 
59 
61 
68 
69  /* collections */
84 
96 
98 }
99 
101 {
102  WM_keymap_ensure(keyconf, "Outliner", SPACE_OUTLINER, 0);
103 }
104 
@ 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_liboverride_operation(struct wmOperatorType *ot)
void OUTLINER_OT_liboverride_troubleshoot_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)
void outliner_operatortypes(void)
Definition: outliner_ops.cc:18
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 *))