2011-02-23 10:52:22 +00:00
|
|
|
/*
|
2009-11-11 08:12:54 +00:00
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2009-11-11 08:12:54 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) 2009 Blender Foundation.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Contributor(s): Blender Foundation
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2011-02-27 20:29:51 +00:00
|
|
|
/** \file blender/editors/space_node/node_buttons.c
|
|
|
|
* \ingroup spnode
|
|
|
|
*/
|
|
|
|
|
2011-01-07 18:36:47 +00:00
|
|
|
#include "MEM_guardedalloc.h"
|
|
|
|
|
2009-11-11 08:12:54 +00:00
|
|
|
#include "DNA_node_types.h"
|
|
|
|
|
|
|
|
#include "BLI_math.h"
|
|
|
|
#include "BLI_blenlib.h"
|
|
|
|
|
Fixed another bunch of i18n bugs (thx to Leon Cheung for spotting them), among which:
* Drag'n'drop translation in Outliner
* "Execute" button in file window
* "Labels" of spacing elements, in multi-column enums
* A glitch with nodes "Value to RGB", they where called "ColorRamp" in node_type_base() call. This is not definitive, though, as it appears that UI node names are determined by this call, while it should be by "defines" in rna_nodetrre_types.h, I guess... Anyway, not good to have such things in two different places!
Also moved default context name under BLF_translation.h, much better to have those all in one place, accessible from whole Blender code!
2012-04-14 15:06:41 +00:00
|
|
|
#include "BLF_translation.h"
|
|
|
|
|
2009-11-11 08:12:54 +00:00
|
|
|
#include "BKE_context.h"
|
2011-11-07 22:28:49 +00:00
|
|
|
#include "BKE_global.h"
|
2009-11-11 10:51:40 +00:00
|
|
|
#include "BKE_node.h"
|
2009-11-11 08:12:54 +00:00
|
|
|
#include "BKE_screen.h"
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
#include "WM_types.h"
|
|
|
|
|
|
|
|
#include "RNA_access.h"
|
|
|
|
|
|
|
|
#include "ED_gpencil.h"
|
|
|
|
#include "ED_screen.h"
|
|
|
|
|
|
|
|
#include "UI_resources.h"
|
|
|
|
|
2012-08-02 23:03:16 +00:00
|
|
|
#include "node_intern.h" /* own include */
|
2009-11-11 08:12:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* ******************* node space & buttons ************** */
|
2009-11-11 10:51:40 +00:00
|
|
|
|
2012-04-13 11:58:16 +00:00
|
|
|
/* poll for active nodetree */
|
|
|
|
static int active_nodetree_poll(const bContext *C, PanelType *UNUSED(pt))
|
|
|
|
{
|
2012-08-04 12:54:27 +00:00
|
|
|
SpaceNode *snode = CTX_wm_space_node(C);
|
2012-04-13 11:58:16 +00:00
|
|
|
|
2013-03-19 13:40:16 +00:00
|
|
|
return (snode && snode->nodetree);
|
2012-04-13 11:58:16 +00:00
|
|
|
}
|
|
|
|
|
2011-11-07 22:28:49 +00:00
|
|
|
static int node_sockets_poll(const bContext *C, PanelType *UNUSED(pt))
|
|
|
|
{
|
2012-08-04 12:54:27 +00:00
|
|
|
SpaceNode *snode = CTX_wm_space_node(C);
|
2011-11-07 22:28:49 +00:00
|
|
|
|
2012-08-08 18:21:54 +00:00
|
|
|
return (snode && snode->nodetree && G.debug_value == 777);
|
2011-11-07 22:28:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void node_sockets_panel(const bContext *C, Panel *pa)
|
|
|
|
{
|
2012-08-04 12:54:27 +00:00
|
|
|
SpaceNode *snode = CTX_wm_space_node(C);
|
|
|
|
bNodeTree *ntree = (snode) ? snode->edittree : NULL;
|
2011-11-07 22:28:49 +00:00
|
|
|
bNode *node = (ntree) ? nodeGetActive(ntree) : NULL;
|
|
|
|
bNodeSocket *sock;
|
2012-08-04 12:54:27 +00:00
|
|
|
uiLayout *layout = pa->layout, *split;
|
2011-11-07 22:28:49 +00:00
|
|
|
char name[UI_MAX_NAME_STR];
|
|
|
|
|
2012-03-24 06:38:07 +00:00
|
|
|
if (ELEM(NULL, ntree, node))
|
2011-11-07 22:28:49 +00:00
|
|
|
return;
|
|
|
|
|
2012-08-04 12:54:27 +00:00
|
|
|
for (sock = node->inputs.first; sock; sock = sock->next) {
|
2011-11-07 22:28:49 +00:00
|
|
|
BLI_snprintf(name, sizeof(name), "%s:", sock->name);
|
|
|
|
|
2012-06-19 23:08:16 +00:00
|
|
|
split = uiLayoutSplit(layout, 0.35f, FALSE);
|
2011-11-07 22:28:49 +00:00
|
|
|
uiItemL(split, name, ICON_NONE);
|
|
|
|
uiTemplateNodeLink(split, ntree, node, sock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-18 16:34:57 +00:00
|
|
|
static int node_tree_interface_poll(const bContext *C, PanelType *UNUSED(pt))
|
|
|
|
{
|
2013-03-18 18:25:05 +00:00
|
|
|
SpaceNode *snode = CTX_wm_space_node(C);
|
2013-03-18 16:34:57 +00:00
|
|
|
|
|
|
|
return (snode && snode->edittree && (snode->edittree->inputs.first || snode->edittree->outputs.first));
|
|
|
|
}
|
|
|
|
|
2014-02-05 22:36:15 +11:00
|
|
|
static bool node_tree_find_active_socket(bNodeTree *ntree, bNodeSocket **r_sock, int *r_in_out)
|
2013-03-18 16:34:57 +00:00
|
|
|
{
|
|
|
|
bNodeSocket *sock;
|
|
|
|
for (sock = ntree->inputs.first; sock; sock = sock->next) {
|
|
|
|
if (sock->flag & SELECT) {
|
|
|
|
*r_sock = sock;
|
|
|
|
*r_in_out = SOCK_IN;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (sock = ntree->outputs.first; sock; sock = sock->next) {
|
|
|
|
if (sock->flag & SELECT) {
|
|
|
|
*r_sock = sock;
|
|
|
|
*r_in_out = SOCK_OUT;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*r_sock = NULL;
|
|
|
|
*r_in_out = 0;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void node_tree_interface_panel(const bContext *C, Panel *pa)
|
|
|
|
{
|
2013-03-18 18:25:05 +00:00
|
|
|
SpaceNode *snode = CTX_wm_space_node(C);
|
|
|
|
bNodeTree *ntree = (snode) ? snode->edittree : NULL;
|
2013-03-18 16:34:57 +00:00
|
|
|
bNodeSocket *sock;
|
|
|
|
int in_out;
|
2013-03-18 18:25:05 +00:00
|
|
|
uiLayout *layout = pa->layout, *row, *split, *col;
|
2013-03-18 16:34:57 +00:00
|
|
|
PointerRNA ptr, sockptr, opptr;
|
2013-03-18 18:25:05 +00:00
|
|
|
|
|
|
|
if (!ntree)
|
2013-03-18 16:34:57 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
RNA_id_pointer_create((ID *)ntree, &ptr);
|
|
|
|
|
|
|
|
node_tree_find_active_socket(ntree, &sock, &in_out);
|
|
|
|
RNA_pointer_create((ID *)ntree, &RNA_NodeSocketInterface, sock, &sockptr);
|
|
|
|
|
|
|
|
row = uiLayoutRow(layout, FALSE);
|
|
|
|
|
|
|
|
split = uiLayoutRow(row, TRUE);
|
|
|
|
col = uiLayoutColumn(split, TRUE);
|
2013-03-27 19:09:50 +00:00
|
|
|
uiItemL(col, IFACE_("Inputs:"), ICON_NONE);
|
2013-08-27 15:27:41 +00:00
|
|
|
uiTemplateList(col, (bContext *)C, "NODE_UL_interface_sockets", "inputs", &ptr, "inputs", &ptr, "active_input",
|
|
|
|
0, 0, 0, 0);
|
2013-03-18 16:34:57 +00:00
|
|
|
opptr = uiItemFullO(col, "NODE_OT_tree_socket_add", "", ICON_PLUS, NULL, WM_OP_EXEC_DEFAULT, UI_ITEM_O_RETURN_PROPS);
|
|
|
|
RNA_enum_set(&opptr, "in_out", SOCK_IN);
|
|
|
|
|
|
|
|
col = uiLayoutColumn(split, TRUE);
|
2013-03-27 19:09:50 +00:00
|
|
|
uiItemL(col, IFACE_("Outputs:"), ICON_NONE);
|
2013-08-27 15:27:41 +00:00
|
|
|
uiTemplateList(col, (bContext *)C, "NODE_UL_interface_sockets", "outputs", &ptr, "outputs", &ptr, "active_output",
|
|
|
|
0, 0, 0, 0);
|
2013-03-18 16:34:57 +00:00
|
|
|
opptr = uiItemFullO(col, "NODE_OT_tree_socket_add", "", ICON_PLUS, NULL, WM_OP_EXEC_DEFAULT, UI_ITEM_O_RETURN_PROPS);
|
|
|
|
RNA_enum_set(&opptr, "in_out", SOCK_OUT);
|
|
|
|
|
|
|
|
col = uiLayoutColumn(row, TRUE);
|
|
|
|
opptr = uiItemFullO(col, "NODE_OT_tree_socket_move", "", ICON_TRIA_UP, NULL, WM_OP_EXEC_DEFAULT, UI_ITEM_O_RETURN_PROPS);
|
|
|
|
RNA_enum_set(&opptr, "direction", 1);
|
|
|
|
opptr = uiItemFullO(col, "NODE_OT_tree_socket_move", "", ICON_TRIA_DOWN, NULL, WM_OP_EXEC_DEFAULT, UI_ITEM_O_RETURN_PROPS);
|
|
|
|
RNA_enum_set(&opptr, "direction", 2);
|
|
|
|
|
|
|
|
if (sock) {
|
|
|
|
row = uiLayoutRow(layout, TRUE);
|
|
|
|
uiItemR(row, &sockptr, "name", 0, NULL, ICON_NONE);
|
|
|
|
uiItemO(row, "", ICON_X, "NODE_OT_tree_socket_remove");
|
|
|
|
|
2013-03-18 19:59:11 +00:00
|
|
|
if (sock->typeinfo->interface_draw) {
|
|
|
|
uiItemS(layout);
|
2013-03-18 18:25:05 +00:00
|
|
|
sock->typeinfo->interface_draw((bContext *)C, layout, &sockptr);
|
2013-03-18 19:59:11 +00:00
|
|
|
}
|
2013-03-18 16:34:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-11 08:12:54 +00:00
|
|
|
/* ******************* node buttons registration ************** */
|
|
|
|
|
|
|
|
void node_buttons_register(ARegionType *art)
|
|
|
|
{
|
|
|
|
PanelType *pt;
|
|
|
|
|
2012-08-04 12:54:27 +00:00
|
|
|
pt = MEM_callocN(sizeof(PanelType), "spacetype node panel node sockets");
|
2011-11-07 22:28:49 +00:00
|
|
|
strcpy(pt->idname, "NODE_PT_sockets");
|
2013-03-27 19:09:50 +00:00
|
|
|
strcpy(pt->label, N_("Sockets"));
|
|
|
|
strcpy(pt->translation_context, BLF_I18NCONTEXT_DEFAULT_BPYRNA);
|
2012-08-04 12:54:27 +00:00
|
|
|
pt->draw = node_sockets_panel;
|
|
|
|
pt->poll = node_sockets_poll;
|
2011-11-07 22:28:49 +00:00
|
|
|
pt->flag |= PNL_DEFAULT_CLOSED;
|
|
|
|
BLI_addtail(&art->paneltypes, pt);
|
2013-03-18 16:34:57 +00:00
|
|
|
|
2013-03-18 18:25:05 +00:00
|
|
|
pt = MEM_callocN(sizeof(PanelType), "spacetype node panel tree interface");
|
2013-03-18 16:34:57 +00:00
|
|
|
strcpy(pt->idname, "NODE_PT_node_tree_interface");
|
2013-03-27 19:09:50 +00:00
|
|
|
strcpy(pt->label, N_("Interface"));
|
|
|
|
strcpy(pt->translation_context, BLF_I18NCONTEXT_DEFAULT_BPYRNA);
|
2013-03-18 18:25:05 +00:00
|
|
|
pt->draw = node_tree_interface_panel;
|
|
|
|
pt->poll = node_tree_interface_poll;
|
2013-03-18 16:34:57 +00:00
|
|
|
BLI_addtail(&art->paneltypes, pt);
|
|
|
|
|
2012-08-04 12:54:27 +00:00
|
|
|
pt = MEM_callocN(sizeof(PanelType), "spacetype node panel gpencil");
|
2009-11-11 08:12:54 +00:00
|
|
|
strcpy(pt->idname, "NODE_PT_gpencil");
|
2013-03-27 19:09:50 +00:00
|
|
|
strcpy(pt->label, N_("Grease Pencil"));
|
|
|
|
strcpy(pt->translation_context, BLF_I18NCONTEXT_DEFAULT_BPYRNA);
|
2012-12-17 02:34:53 +00:00
|
|
|
pt->draw_header = gpencil_panel_standard_header;
|
2012-08-04 12:54:27 +00:00
|
|
|
pt->draw = gpencil_panel_standard;
|
|
|
|
pt->poll = active_nodetree_poll;
|
2009-11-11 08:12:54 +00:00
|
|
|
BLI_addtail(&art->paneltypes, pt);
|
|
|
|
}
|
|
|
|
|
2013-07-28 17:06:31 +00:00
|
|
|
static int node_properties_toggle_exec(bContext *C, wmOperator *UNUSED(op))
|
2009-11-11 08:12:54 +00:00
|
|
|
{
|
2012-08-04 12:54:27 +00:00
|
|
|
ScrArea *sa = CTX_wm_area(C);
|
|
|
|
ARegion *ar = node_has_buttons_region(sa);
|
2009-11-11 08:12:54 +00:00
|
|
|
|
2012-03-24 06:38:07 +00:00
|
|
|
if (ar)
|
2009-11-11 08:12:54 +00:00
|
|
|
ED_region_toggle_hidden(C, ar);
|
|
|
|
|
|
|
|
return OPERATOR_FINISHED;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* non-standard poll operator which doesn't care if there are any nodes */
|
|
|
|
static int node_properties_poll(bContext *C)
|
|
|
|
{
|
2012-08-04 12:54:27 +00:00
|
|
|
ScrArea *sa = CTX_wm_area(C);
|
2009-11-11 08:12:54 +00:00
|
|
|
return (sa && (sa->spacetype == SPACE_NODE));
|
|
|
|
}
|
|
|
|
|
|
|
|
void NODE_OT_properties(wmOperatorType *ot)
|
|
|
|
{
|
2012-03-22 07:26:09 +00:00
|
|
|
ot->name = "Properties";
|
|
|
|
ot->description = "Toggles the properties panel display";
|
|
|
|
ot->idname = "NODE_OT_properties";
|
2009-11-11 08:12:54 +00:00
|
|
|
|
2013-07-28 17:06:31 +00:00
|
|
|
ot->exec = node_properties_toggle_exec;
|
2012-03-22 07:26:09 +00:00
|
|
|
ot->poll = node_properties_poll;
|
2009-11-11 08:12:54 +00:00
|
|
|
|
|
|
|
/* flags */
|
2012-03-22 07:26:09 +00:00
|
|
|
ot->flag = 0;
|
2009-11-11 08:12:54 +00:00
|
|
|
}
|