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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2013-03-27 22:28:25 +0400
committerTon Roosendaal <ton@blender.org>2013-03-27 22:28:25 +0400
commitb163256b33605bd27616caefe63de7cca53c9439 (patch)
treeadf1cfbb18c4b926a39cec7d853c08c5bbb71f1f /source/blender/editors/space_node/node_select.c
parent1c886435c845fd10f27497f6febc718f75e2e93a (diff)
Node Editor
To complete previous commit: New "Activate same type next/prev" operator - replaces the two not working previous ones. This selects/activates and views the next or previous node of same type. Shortcuts: Shift ] and Shift [
Diffstat (limited to 'source/blender/editors/space_node/node_select.c')
-rw-r--r--source/blender/editors/space_node/node_select.c67
1 files changed, 6 insertions, 61 deletions
diff --git a/source/blender/editors/space_node/node_select.c b/source/blender/editors/space_node/node_select.c
index 894c4898029..cdb89a66867 100644
--- a/source/blender/editors/space_node/node_select.c
+++ b/source/blender/editors/space_node/node_select.c
@@ -762,65 +762,10 @@ void NODE_OT_select_same_type(wmOperatorType *ot)
/* ****** Select The Next/Prev Node Of The Same Type ****** */
-static int node_select_same_type_next_exec(bContext *C, wmOperator *UNUSED(op))
-{
- SpaceNode *snode = CTX_wm_space_node(C);
-
- node_select_same_type_np(snode, 0);
-
- ED_node_sort(snode->edittree);
-
- WM_event_add_notifier(C, NC_NODE | NA_SELECTED, NULL);
-
- return OPERATOR_FINISHED;
-}
-
-void NODE_OT_select_same_type_next(wmOperatorType *ot)
-{
- /* identifiers */
- ot->name = "Select Same Type Next";
- ot->description = "Select the next node of the same type";
- ot->idname = "NODE_OT_select_same_type_next";
-
- /* api callbacks */
- ot->exec = node_select_same_type_next_exec;
- ot->poll = ED_operator_node_active;
-
- /* flags */
- ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
-}
-
-static int node_select_same_type_prev_exec(bContext *C, wmOperator *UNUSED(op))
-{
- SpaceNode *snode = CTX_wm_space_node(C);
-
- node_select_same_type_np(snode, 1);
-
- ED_node_sort(snode->edittree);
-
- WM_event_add_notifier(C, NC_NODE | NA_SELECTED, NULL);
- return OPERATOR_FINISHED;
-}
-
-void NODE_OT_select_same_type_prev(wmOperatorType *ot)
-{
- /* identifiers */
- ot->name = "Select Same Type Prev";
- ot->description = "Select the prev node of the same type";
- ot->idname = "NODE_OT_select_same_type_prev";
-
- /* api callbacks */
- ot->exec = node_select_same_type_prev_exec;
- ot->poll = ED_operator_node_active;
-
- /* flags */
- ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
-}
-
/* ************************** */
-static int node_activate_connected_exec(bContext *C, wmOperator *op)
+static int node_select_same_type_step_exec(bContext *C, wmOperator *op)
{
SpaceNode *snode = CTX_wm_space_node(C);
ARegion *ar = CTX_wm_region(C);
@@ -889,15 +834,15 @@ static int node_activate_connected_exec(bContext *C, wmOperator *op)
return OPERATOR_FINISHED;
}
-void NODE_OT_activate_connected(wmOperatorType *ot)
+void NODE_OT_select_same_type_step(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Activate/View Connected";
- ot->description = "Activate and view connected nodes, step by step";
- ot->idname = "NODE_OT_activate_connected";
+ ot->name = "Activate Same Type Next/Prev";
+ ot->description = "Activate and view same node type, step by step";
+ ot->idname = "NODE_OT_select_same_type_step";
/* api callbacks */
- ot->exec = node_activate_connected_exec;
+ ot->exec = node_select_same_type_step_exec;
ot->poll = ED_operator_node_active;
/* flags */