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:
authorJoshua Leung <aligorith@gmail.com>2009-11-11 13:51:40 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-11 13:51:40 +0300
commit1d84b6bb3c2067c25c1a9a2b64272b641c9b00c9 (patch)
tree093b43f41e0d2e90d7a3d854f496d1be59ae9c70 /source/blender/editors/space_node/node_buttons.c
parent4157e51a251762384298836b027983f4b4cc6c08 (diff)
Nodes Editor + other warning fixes:
* Added 'active node' panel for the Nodes Editor. This panel, in the NKEY region, shows the settings for the active node. Included in this panel is a field used for editing the unique-name of the node too. * Fixed a number of uninitialised vars warnings that I missed in previous commit...
Diffstat (limited to 'source/blender/editors/space_node/node_buttons.c')
-rw-r--r--source/blender/editors/space_node/node_buttons.c48
1 files changed, 45 insertions, 3 deletions
diff --git a/source/blender/editors/space_node/node_buttons.c b/source/blender/editors/space_node/node_buttons.c
index 63361f2be66..20650812d52 100644
--- a/source/blender/editors/space_node/node_buttons.c
+++ b/source/blender/editors/space_node/node_buttons.c
@@ -49,6 +49,7 @@
#include "BKE_depsgraph.h"
#include "BKE_idprop.h"
#include "BKE_object.h"
+#include "BKE_node.h"
#include "BKE_global.h"
#include "BKE_scene.h"
#include "BKE_screen.h"
@@ -78,7 +79,6 @@
#define B_NOP 1
#define B_REDR 2
-#if 0 // XXX not used...
static void do_node_region_buttons(bContext *C, void *arg, int event)
{
//SpaceNode *snode= CTX_wm_space_node(C);
@@ -89,7 +89,44 @@ static void do_node_region_buttons(bContext *C, void *arg, int event)
return; /* no notifier! */
}
}
-#endif
+
+/* poll callback for active node */
+static int active_node_poll(const bContext *C, PanelType *pt)
+{
+ SpaceNode *snode= CTX_wm_space_node(C);
+
+ // TODO: include check for whether there is an active node...
+ return (snode && snode->nodetree);
+}
+
+/* active node */
+static void active_node_panel(const bContext *C, Panel *pa)
+{
+ SpaceNode *snode= CTX_wm_space_node(C);
+ bNodeTree *ntree= (snode) ? snode->nodetree : NULL; // XXX what's up with edittree then?
+ bNode *node = (ntree) ? nodeGetActive(ntree) : NULL;
+ uiLayout *layout= pa->layout;
+ uiBlock *block;
+ PointerRNA ptr;
+
+ /* verify pointers, and create RNA pointer for the node */
+ if ELEM(NULL, ntree, node)
+ return;
+ RNA_pointer_create(&ntree->id, &RNA_Node, node, &ptr);
+
+ /* set update callback */
+ // xxx is this really needed
+ block= uiLayoutGetBlock(layout);
+ uiBlockSetHandleFunc(block, do_node_region_buttons, NULL);
+
+ /* draw this node's name, etc. */
+ uiItemR(layout, NULL, ICON_NODE, &ptr, "name", 0);
+ // TODO: a separator would be nice...
+
+ /* draw this node's settings */
+ if (node->typeinfo && node->typeinfo->uifunc)
+ node->typeinfo->uifunc(layout, (bContext *)C, &ptr);
+}
/* ******************* node buttons registration ************** */
@@ -97,7 +134,12 @@ void node_buttons_register(ARegionType *art)
{
PanelType *pt;
- // XXX active node
+ pt= MEM_callocN(sizeof(PanelType), "spacetype node panel active node");
+ strcpy(pt->idname, "NODE_PT_item");
+ strcpy(pt->label, "Active Node");
+ pt->draw= active_node_panel;
+ pt->poll= active_node_poll;
+ BLI_addtail(&art->paneltypes, pt);
pt= MEM_callocN(sizeof(PanelType), "spacetype node panel gpencil");
strcpy(pt->idname, "NODE_PT_gpencil");