diff options
| author | Hugo Rodrigues <me@hugorodrigues.com> | 2006-08-02 21:31:59 +0000 |
|---|---|---|
| committer | haa_rodrigues <haa_rodrigues@users.sourceforge.net> | 2006-08-02 21:31:59 +0000 |
| commit | 8b5a13ebdf2b288d3f888a70e18d143039cb9b3f (patch) | |
| tree | f3cbff6eadac212f95620dfdcdf445e2f91ee106 /src/sp-fecolormatrix.cpp | |
| parent | refactored session establishment (diff) | |
| download | inkscape-8b5a13ebdf2b288d3f888a70e18d143039cb9b3f.tar.gz inkscape-8b5a13ebdf2b288d3f888a70e18d143039cb9b3f.zip | |
Added skeleton files for other filter primitives' SP-objects. Added blur slider on fill/stroke dialog (uncomment on object-properties.cpp).
(bzr r1542)
Diffstat (limited to 'src/sp-fecolormatrix.cpp')
| -rw-r--r-- | src/sp-fecolormatrix.cpp | 196 |
1 files changed, 196 insertions, 0 deletions
diff --git a/src/sp-fecolormatrix.cpp b/src/sp-fecolormatrix.cpp new file mode 100644 index 000000000..eab5bb8be --- /dev/null +++ b/src/sp-fecolormatrix.cpp @@ -0,0 +1,196 @@ +#define __SP_FECOLORMATRIX_CPP__ + +/** \file + * SVG <feColorMatrix> implementation. + * + */ +/* + * Authors: + * hugo Rodrigues <haa.rodrigues@gmail.com> + * + * Copyright (C) 2006 Hugo Rodrigues + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + +#include "attributes.h" +#include "svg/svg.h" +#include "sp-fecolorMatrix.h" +#include "xml/repr.h" + +//#define SP_MACROS_SILENT +//#include "macros.h" + +#define DEBUG_FECOLORMATRIX +#ifdef DEBUG_FECOLORMATRIX +# define debug(f, a...) { g_print("%s(%d) %s:", \ + __FILE__,__LINE__,__FUNCTION__); \ + g_print(f, ## a); \ + g_print("\n"); \ + } +#else +# define debug(f, a...) /**/ +#endif + +/* FeColorMatrix base class */ + +static void sp_feColorMatrix_class_init(SPFeColorMatrixClass *klass); +static void sp_feColorMatrix_init(SPFeColorMatrix *feColorMatrix); + +static void sp_feColorMatrix_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr); +static void sp_feColorMatrix_release(SPObject *object); +static void sp_feColorMatrix_set(SPObject *object, unsigned int key, gchar const *value); +static void sp_feColorMatrix_update(SPObject *object, SPCtx *ctx, guint flags); +static Inkscape::XML::Node *sp_feColorMatrix_write(SPObject *object, Inkscape::XML::Node *repr, guint flags); + +static SPObjectClass *feColorMatrix_parent_class; + +GType +sp_feColorMatrix_get_type() +{ + static GType feColorMatrix_type = 0; + + if (!feColorMatrix_type) { + GTypeInfo feColorMatrix_info = { + sizeof(SPFeColorMatrixClass), + NULL, NULL, + (GClassInitFunc) sp_feColorMatrix_class_init, + NULL, NULL, + sizeof(SPFeColorMatrix), + 16, + (GInstanceInitFunc) sp_feColorMatrix_init, + NULL, /* value_table */ + }; + feColorMatrix_type = g_type_register_static(SP_TYPE_OBJECT, "SPFeColorMatrix", &feColorMatrix_info, (GTypeFlags)0); + } + return feColorMatrix_type; +} + +static void +sp_feColorMatrix_class_init(SPFeColorMatrixClass *klass) +{ + SPObjectClass *sp_object_class = (SPObjectClass *)klass; + + feColorMatrix_parent_class = (SPObjectClass*)g_type_class_peek_parent(klass); + + sp_object_class->build = sp_feColorMatrix_build; + sp_object_class->release = sp_feColorMatrix_release; + sp_object_class->write = sp_feColorMatrix_write; + sp_object_class->set = sp_feColorMatrix_set; + sp_object_class->update = sp_feColorMatrix_update; +} + +static void +sp_feColorMatrix_init(SPFeColorMatrix *feColorMatrix) +{ + debug("0x%p",feColorMatrix); +} + +/** + * Reads the Inkscape::XML::Node, and initializes SPFeColorMatrix 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. + */ +static void +sp_feColorMatrix_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr) +{ + debug("0x%p",object); + if (((SPObjectClass *) feColorMatrix_parent_class)->build) { + ((SPObjectClass *) feColorMatrix_parent_class)->build(object, document, repr); + } + + /*LOAD ATTRIBUTES FROM REPR HERE*/ +} + +/** + * Drops any allocated memory. + */ +static void +sp_feColorMatrix_release(SPObject *object) +{ + debug("0x%p",object); + + if (((SPObjectClass *) feColorMatrix_parent_class)->release) + ((SPObjectClass *) feColorMatrix_parent_class)->release(object); +} + +/** + * Sets a specific value in the SPFeColorMatrix. + */ +static void +sp_feColorMatrix_set(SPObject *object, unsigned int key, gchar const *value) +{ + debug("0x%p %s(%u): '%s'",object, + sp_attribute_name(key),key,value); + SPFeColorMatrix *feColorMatrix = SP_FECOLORMATRIX(object); + + switch(key) {
+ /*DEAL WITH SETTING ATTRIBUTES HERE*/ + default: + if (((SPObjectClass *) feColorMatrix_parent_class)->set) + ((SPObjectClass *) feColorMatrix_parent_class)->set(object, key, value); + break; + } + +} + +/** + * Receives update notifications. + */ +static void +sp_feColorMatrix_update(SPObject *object, SPCtx *ctx, guint flags) +{ + debug("0x%p",object); + + if (flags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG | + SP_OBJECT_VIEWPORT_MODIFIED_FLAG)) { + + /* do something to trigger redisplay, updates? */ + + } + + if (((SPObjectClass *) feColorMatrix_parent_class)->update) { + ((SPObjectClass *) feColorMatrix_parent_class)->update(object, ctx, flags); + } +} + +/** + * Writes its settings to an incoming repr object, if any. + */ +static Inkscape::XML::Node * +sp_feColorMatrix_write(SPObject *object, Inkscape::XML::Node *repr, guint flags) +{ + debug("0x%p",object); + + // Inkscape-only object, not copied during an "plain SVG" dump: + if (flags & SP_OBJECT_WRITE_EXT) { + if (repr) { + // is this sane? + repr->mergeFrom(SP_OBJECT_REPR(object), "id"); + } else { + repr = SP_OBJECT_REPR(object)->duplicate(); + } + } + + if (((SPObjectClass *) feColorMatrix_parent_class)->write) { + ((SPObjectClass *) feColorMatrix_parent_class)->write(object, repr, flags); + } + + 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:encoding=utf-8:textwidth=99 : |
