Blender V4.3
outliner_ops.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2008 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#include "WM_api.hh"
10
11#include "ED_screen.hh"
12
13#include "outliner_intern.hh"
14
15namespace blender::ed::outliner {
16/* -------------------------------------------------------------------- */
21{
47
52
57
60
63
66
73
74 /* collections */
89
101
103}
104
106{
107 WM_keymap_ensure(keyconf, "Outliner", SPACE_OUTLINER, RGN_TYPE_WINDOW);
108}
109
112} // namespace blender::ed::outliner
@ RGN_TYPE_WINDOW
@ SPACE_OUTLINER
void OUTLINER_OT_expanded_toggle(wmOperatorType *ot)
void OUTLINER_OT_delete(wmOperatorType *ot)
void OUTLINER_OT_collection_duplicate_linked(wmOperatorType *ot)
void OUTLINER_OT_collection_objects_deselect(wmOperatorType *ot)
void OUTLINER_OT_collection_disable_render(wmOperatorType *ot)
void OUTLINER_OT_item_rename(wmOperatorType *ot)
void OUTLINER_OT_scene_operation(wmOperatorType *ot)
void OUTLINER_OT_collection_link(wmOperatorType *ot)
void OUTLINER_OT_collection_color_tag_set(wmOperatorType *ot)
void OUTLINER_OT_collection_hierarchy_delete(wmOperatorType *ot)
void OUTLINER_OT_collection_exclude_set(wmOperatorType *ot)
void OUTLINER_OT_collection_show(wmOperatorType *ot)
void OUTLINER_OT_show_hierarchy(wmOperatorType *ot)
void OUTLINER_OT_highlight_update(wmOperatorType *ot)
void OUTLINER_OT_data_operation(wmOperatorType *ot)
void OUTLINER_OT_lib_operation(wmOperatorType *ot)
void OUTLINER_OT_drivers_add_selected(wmOperatorType *ot)
void OUTLINER_OT_select_all(wmOperatorType *ot)
void OUTLINER_OT_constraint_operation(wmOperatorType *ot)
void OUTLINER_OT_lib_relocate(wmOperatorType *ot)
void OUTLINER_OT_collection_indirect_only_clear(wmOperatorType *ot)
void OUTLINER_OT_hide(wmOperatorType *ot)
void OUTLINER_OT_collection_holdout_set(wmOperatorType *ot)
void OUTLINER_OT_collection_hide(wmOperatorType *ot)
void OUTLINER_OT_collection_exclude_clear(wmOperatorType *ot)
void OUTLINER_OT_collection_objects_select(wmOperatorType *ot)
void OUTLINER_OT_item_activate(wmOperatorType *ot)
void OUTLINER_OT_modifier_operation(wmOperatorType *ot)
void OUTLINER_OT_collection_drop(wmOperatorType *ot)
void OUTLINER_OT_id_paste(wmOperatorType *ot)
void OUTLINER_OT_clear_filter(wmOperatorType *ot)
void OUTLINER_OT_datastack_drop(wmOperatorType *ot)
void OUTLINER_OT_start_filter(wmOperatorType *ot)
void OUTLINER_OT_unhide_all(wmOperatorType *ot)
void OUTLINER_OT_drivers_delete_selected(wmOperatorType *ot)
void OUTLINER_OT_collection_hide_inside(wmOperatorType *ot)
void OUTLINER_OT_show_one_level(wmOperatorType *ot)
void OUTLINER_OT_collection_enable(wmOperatorType *ot)
void OUTLINER_OT_show_active(wmOperatorType *ot)
void OUTLINER_OT_id_copy(wmOperatorType *ot)
void OUTLINER_OT_object_operation(wmOperatorType *ot)
void OUTLINER_OT_select_walk(wmOperatorType *ot)
void OUTLINER_OT_orphans_manage(wmOperatorType *ot)
void OUTLINER_OT_animdata_operation(wmOperatorType *ot)
void OUTLINER_OT_material_drop(wmOperatorType *ot)
void OUTLINER_OT_scene_drop(wmOperatorType *ot)
void OUTLINER_OT_action_set(wmOperatorType *ot)
void OUTLINER_OT_parent_drop(wmOperatorType *ot)
void OUTLINER_OT_scroll_page(wmOperatorType *ot)
void OUTLINER_OT_keyingset_remove_selected(wmOperatorType *ot)
void OUTLINER_OT_id_remap(wmOperatorType *ot)
void OUTLINER_OT_id_delete(wmOperatorType *ot)
void OUTLINER_OT_keyingset_add_selected(wmOperatorType *ot)
void OUTLINER_OT_item_openclose(wmOperatorType *ot)
void OUTLINER_OT_collection_holdout_clear(wmOperatorType *ot)
void OUTLINER_OT_collection_duplicate(wmOperatorType *ot)
void OUTLINER_OT_collection_isolate(wmOperatorType *ot)
void OUTLINER_OT_collection_disable(wmOperatorType *ot)
void OUTLINER_OT_collection_show_inside(wmOperatorType *ot)
void OUTLINER_OT_liboverride_troubleshoot_operation(wmOperatorType *ot)
void outliner_keymap(wmKeyConfig *keyconf)
void OUTLINER_OT_operation(wmOperatorType *ot)
void OUTLINER_OT_parent_clear(wmOperatorType *ot)
void OUTLINER_OT_select_box(wmOperatorType *ot)
void OUTLINER_OT_collection_new(wmOperatorType *ot)
void OUTLINER_OT_collection_instance(wmOperatorType *ot)
void OUTLINER_OT_collection_indirect_only_set(wmOperatorType *ot)
void OUTLINER_OT_id_operation(wmOperatorType *ot)
void OUTLINER_OT_liboverride_operation(wmOperatorType *ot)
void OUTLINER_OT_item_drag_drop(wmOperatorType *ot)
void OUTLINER_OT_orphans_purge(wmOperatorType *ot)
void OUTLINER_OT_collection_enable_render(wmOperatorType *ot)
wmKeyMap * WM_keymap_ensure(wmKeyConfig *keyconf, const char *idname, int spaceid, int regionid)
Definition wm_keymap.cc:897
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))