Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/composite/nodes/node_composite_switchview.cc
| Show All 19 Lines | |||||
| /** \file | /** \file | ||||
| * \ingroup cmpnodes | * \ingroup cmpnodes | ||||
| */ | */ | ||||
| #include "BKE_context.h" | #include "BKE_context.h" | ||||
| #include "BKE_lib_id.h" | #include "BKE_lib_id.h" | ||||
| #include "UI_interface.h" | |||||
| #include "UI_resources.h" | |||||
| #include "../node_composite_util.hh" | #include "../node_composite_util.hh" | ||||
| /* **************** SWITCH VIEW ******************** */ | /* **************** SWITCH VIEW ******************** */ | ||||
| static bNodeSocketTemplate cmp_node_switch_view_out[] = { | static bNodeSocketTemplate cmp_node_switch_view_out[] = { | ||||
| {SOCK_RGBA, N_("Image"), 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f}, | {SOCK_RGBA, N_("Image"), 0.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f}, | ||||
| {-1, ""}, | {-1, ""}, | ||||
| }; | }; | ||||
| static bNodeSocket *ntreeCompositSwitchViewAddSocket(bNodeTree *ntree, | static bNodeSocket *ntreeCompositSwitchViewAddSocket(bNodeTree *ntree, | ||||
| bNode *node, | bNode *node, | ||||
| const char *name) | const char *name) | ||||
| ▲ Show 20 Lines • Show All 93 Lines • ▼ Show 20 Lines | LISTBASE_FOREACH (SceneRenderView *, srv, &rd->views) { | ||||
| } | } | ||||
| } | } | ||||
| } | } | ||||
| /* make sure there is always one socket */ | /* make sure there is always one socket */ | ||||
| cmp_node_switch_view_sanitycheck(ntree, node); | cmp_node_switch_view_sanitycheck(ntree, node); | ||||
| } | } | ||||
| static void node_composit_buts_switch_view_ex(uiLayout *layout, | |||||
| bContext *UNUSED(C), | |||||
| PointerRNA *UNUSED(ptr)) | |||||
| { | |||||
| uiItemFullO(layout, | |||||
| "NODE_OT_switch_view_update", | |||||
| "Update Views", | |||||
| ICON_FILE_REFRESH, | |||||
| nullptr, | |||||
| WM_OP_INVOKE_DEFAULT, | |||||
| 0, | |||||
| nullptr); | |||||
| } | |||||
| void register_node_type_cmp_switch_view() | void register_node_type_cmp_switch_view() | ||||
| { | { | ||||
| static bNodeType ntype; | static bNodeType ntype; | ||||
| cmp_node_type_base(&ntype, CMP_NODE_SWITCH_VIEW, "Switch View", NODE_CLASS_CONVERTER, 0); | cmp_node_type_base(&ntype, CMP_NODE_SWITCH_VIEW, "Switch View", NODE_CLASS_CONVERTER, 0); | ||||
| node_type_socket_templates(&ntype, nullptr, cmp_node_switch_view_out); | node_type_socket_templates(&ntype, nullptr, cmp_node_switch_view_out); | ||||
| ntype.draw_buttons_ex = node_composit_buts_switch_view_ex; | |||||
| ntype.initfunc_api = init_switch_view; | ntype.initfunc_api = init_switch_view; | ||||
| node_type_update(&ntype, cmp_node_switch_view_update); | node_type_update(&ntype, cmp_node_switch_view_update); | ||||
| nodeRegisterType(&ntype); | nodeRegisterType(&ntype); | ||||
| } | } | ||||