2 * ***** BEGIN GPL LICENSE BLOCK *****
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * The Original Code is Copyright (C) 2008 Blender Foundation.
19 * All rights reserved.
22 * Contributor(s): Blender Foundation
24 * ***** END GPL LICENSE BLOCK *****
27 /** \file blender/editors/space_outliner/outliner_ops.c
34 #include "DNA_space_types.h"
39 #include "RNA_access.h"
42 #include "outliner_intern.h"
44 /* ************************** registration **********************************/
48 void outliner_operatortypes(void)
50 WM_operatortype_append(OUTLINER_OT_item_activate);
51 WM_operatortype_append(OUTLINER_OT_item_openclose);
52 WM_operatortype_append(OUTLINER_OT_item_rename);
53 WM_operatortype_append(OUTLINER_OT_operation);
54 WM_operatortype_append(OUTLINER_OT_object_operation);
55 WM_operatortype_append(OUTLINER_OT_group_operation);
56 WM_operatortype_append(OUTLINER_OT_id_operation);
57 WM_operatortype_append(OUTLINER_OT_data_operation);
58 WM_operatortype_append(OUTLINER_OT_animdata_operation);
59 WM_operatortype_append(OUTLINER_OT_action_set);
61 WM_operatortype_append(OUTLINER_OT_show_one_level);
62 WM_operatortype_append(OUTLINER_OT_show_active);
63 WM_operatortype_append(OUTLINER_OT_show_hierarchy);
64 WM_operatortype_append(OUTLINER_OT_scroll_page);
66 WM_operatortype_append(OUTLINER_OT_selected_toggle);
67 WM_operatortype_append(OUTLINER_OT_expanded_toggle);
69 WM_operatortype_append(OUTLINER_OT_renderability_toggle);
70 WM_operatortype_append(OUTLINER_OT_selectability_toggle);
71 WM_operatortype_append(OUTLINER_OT_visibility_toggle);
73 WM_operatortype_append(OUTLINER_OT_keyingset_add_selected);
74 WM_operatortype_append(OUTLINER_OT_keyingset_remove_selected);
76 WM_operatortype_append(OUTLINER_OT_drivers_add_selected);
77 WM_operatortype_append(OUTLINER_OT_drivers_delete_selected);
80 void outliner_keymap(wmKeyConfig *keyconf)
82 wmKeyMap *keymap= WM_keymap_find(keyconf, "Outliner", SPACE_OUTLINER, 0);
84 WM_keymap_add_item(keymap, "OUTLINER_OT_item_rename", LEFTMOUSE, KM_DBL_CLICK, 0, 0);
86 RNA_boolean_set(WM_keymap_add_item(keymap, "OUTLINER_OT_item_activate", LEFTMOUSE, KM_CLICK, 0, 0)->ptr, "extend", 0);
87 RNA_boolean_set(WM_keymap_add_item(keymap, "OUTLINER_OT_item_activate", LEFTMOUSE, KM_CLICK, KM_SHIFT, 0)->ptr, "extend", 1);
89 RNA_boolean_set(WM_keymap_add_item(keymap, "OUTLINER_OT_item_openclose", RETKEY, KM_PRESS, 0, 0)->ptr, "all", 0);
90 RNA_boolean_set(WM_keymap_add_item(keymap, "OUTLINER_OT_item_openclose", RETKEY, KM_PRESS, KM_SHIFT, 0)->ptr, "all", 1);
92 WM_keymap_add_item(keymap, "OUTLINER_OT_item_rename", LEFTMOUSE, KM_PRESS, KM_CTRL, 0);
93 WM_keymap_add_item(keymap, "OUTLINER_OT_operation", RIGHTMOUSE, KM_PRESS, 0, 0);
95 WM_keymap_add_item(keymap, "OUTLINER_OT_show_hierarchy", HOMEKEY, KM_PRESS, 0, 0);
97 WM_keymap_add_item(keymap, "OUTLINER_OT_show_active", PERIODKEY, KM_PRESS, 0, 0);
98 WM_keymap_add_item(keymap, "OUTLINER_OT_show_active", PADPERIOD, KM_PRESS, 0, 0);
100 WM_keymap_add_item(keymap, "OUTLINER_OT_scroll_page", PAGEDOWNKEY, KM_PRESS, 0, 0);
101 RNA_boolean_set(WM_keymap_add_item(keymap, "OUTLINER_OT_scroll_page", PAGEUPKEY, KM_PRESS, 0, 0)->ptr, "up", 1);
103 WM_keymap_add_item(keymap, "OUTLINER_OT_show_one_level", PADPLUSKEY, KM_PRESS, 0, 0); /* open */
104 RNA_boolean_set(WM_keymap_add_item(keymap, "OUTLINER_OT_show_one_level", PADMINUS, KM_PRESS, 0, 0)->ptr, "open", 0); /* close */
106 WM_keymap_verify_item(keymap, "OUTLINER_OT_selected_toggle", AKEY, KM_PRESS, 0, 0);
107 WM_keymap_verify_item(keymap, "OUTLINER_OT_expanded_toggle", AKEY, KM_PRESS, KM_SHIFT, 0);
109 WM_keymap_verify_item(keymap, "OUTLINER_OT_renderability_toggle", RKEY, KM_PRESS, 0, 0);
110 WM_keymap_verify_item(keymap, "OUTLINER_OT_selectability_toggle", SKEY, KM_PRESS, 0, 0);
111 WM_keymap_verify_item(keymap, "OUTLINER_OT_visibility_toggle", VKEY, KM_PRESS, 0, 0);
114 /* keying sets - only for databrowse */
115 WM_keymap_verify_item(keymap, "OUTLINER_OT_keyingset_add_selected", KKEY, KM_PRESS, 0, 0);
116 WM_keymap_verify_item(keymap, "OUTLINER_OT_keyingset_remove_selected", KKEY, KM_PRESS, KM_ALT, 0);
118 WM_keymap_verify_item(keymap, "ANIM_OT_keyframe_insert", IKEY, KM_PRESS, 0, 0);
119 WM_keymap_verify_item(keymap, "ANIM_OT_keyframe_delete", IKEY, KM_PRESS, KM_ALT, 0);
121 WM_keymap_verify_item(keymap, "OUTLINER_OT_drivers_add_selected", DKEY, KM_PRESS, 0, 0);
122 WM_keymap_verify_item(keymap, "OUTLINER_OT_drivers_delete_selected", DKEY, KM_PRESS, KM_ALT, 0);