componenttransfer-funcnode.cpp revision 2ee985b728402e20092ee821697f4c5117247290
/** \file
* SVG <funcR>, <funcG>, <funcB> and <funcA> implementations.
*/
/*
* Authors:
* Hugo Rodrigues <haa.rodrigues@gmail.com>
* Niko Kiirala <niko@kiirala.com>
* Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>
* Abhishek Sharma
*
* Copyright (C) 2006, 2007, 2008 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <glib.h>
#include "attributes.h"
#include "document.h"
#include "componenttransfer.h"
#include "componenttransfer-funcnode.h"
#include "display/nr-filter-component-transfer.h"
#include "helper-fns.h"
#define SP_MACROS_SILENT
#include "macros.h"
/* FeFuncNode class */
delete this->cobject;
this->cobject = this;
//this->tableValues = NULL;
this->slope = 1;
this->intercept = 0;
this->amplitude = 1;
this->exponent = 1;
this->offset = 0;
}
SPFeFuncNode::~SPFeFuncNode() {
}
/**
* Reads the Inkscape::XML::Node, and initializes SPDistantLight variables. For this to get called,
* our name must be associated with a repr via "sp_object_type_register". Best done through
* sp-object-repr.cpp's repr_name_entries array.
*/
SPFeFuncNode* object = this;
//Read values of key attributes from XML nodes into object.
//is this necessary?
}
/**
* Drops any allocated memory.
*/
void SPFeFuncNode::release() {
SPFeFuncNode* object = this;
//SPFeFuncNode *fefuncnode = SP_FEFUNCNODE(object);
// Unregister ourselves
}
//TODO: release resources here
}
static Inkscape::Filters::FilterComponentTransferType sp_feComponenttransfer_read_type(gchar const *value){
switch(value[0]){
case 'i':
break;
case 't':
break;
case 'd':
break;
case 'l':
break;
case 'g':
break;
}
}
/**
* Sets a specific value in the SPFeFuncNode.
*/
SPFeFuncNode* object = this;
double read_num;
switch(key) {
case SP_ATTR_TYPE:
}
break;
case SP_ATTR_TABLEVALUES:
if (value){
}
break;
case SP_ATTR_SLOPE:
}
break;
case SP_ATTR_INTERCEPT:
}
break;
case SP_ATTR_AMPLITUDE:
}
break;
case SP_ATTR_EXPONENT:
}
break;
case SP_ATTR_OFFSET:
}
break;
default:
// if (((SPObjectClass *) feFuncNode_parent_class)->set)
// ((SPObjectClass *) feFuncNode_parent_class)->set(object, key, value);
break;
}
}
/**
* * Receives update notifications.
* */
SPFeFuncNode* object = this;
(void)feFuncNode;
if (flags & SP_OBJECT_MODIFIED_FLAG) {
/* do something to trigger redisplay, updates? */
//TODO
//object->readAttr( "azimuth" );
//object->readAttr( "elevation" );
}
}
/**
* Writes its settings to an incoming repr object, if any.
*/
Inkscape::XML::Node* SPFeFuncNode::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) {
SPFeFuncNode* object = this;
if (!repr) {
}
(void)fefuncnode;
/*
TODO: I'm not sure what to do here...
if (fefuncnode->azimuth_set)
sp_repr_set_css_double(repr, "azimuth", fefuncnode->azimuth);
if (fefuncnode->elevation_set)
sp_repr_set_css_double(repr, "elevation", fefuncnode->elevation);*/
return repr;
}
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :