sp-femorphology.cpp revision 761a541468cc0b8a7fcfb8c65784c0896f0f80f4
#define __SP_FEMORPHOLOGY_CPP__
/** \file
* SVG <feMorphology> 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-femorphology.h"
#include "xml/repr.h"
//#define SP_MACROS_SILENT
//#include "macros.h"
#define DEBUG_FEMORPHOLOGY
#ifdef DEBUG_FEMORPHOLOGY
# 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
/* FeMorphology base class */
static void sp_feMorphology_class_init(SPFeMorphologyClass *klass);
static void sp_feMorphology_init(SPFeMorphology *feMorphology);
static void sp_feMorphology_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr);
static void sp_feMorphology_release(SPObject *object);
static void sp_feMorphology_set(SPObject *object, unsigned int key, gchar const *value);
static void sp_feMorphology_update(SPObject *object, SPCtx *ctx, guint flags);
static Inkscape::XML::Node *sp_feMorphology_write(SPObject *object, Inkscape::XML::Node *repr, guint flags);
static SPObjectClass *feMorphology_parent_class;
GType
sp_feMorphology_get_type()
{
static GType feMorphology_type = 0;
if (!feMorphology_type) {
GTypeInfo feMorphology_info = {
sizeof(SPFeMorphologyClass),
NULL, NULL,
(GClassInitFunc) sp_feMorphology_class_init,
NULL, NULL,
sizeof(SPFeMorphology),
16,
(GInstanceInitFunc) sp_feMorphology_init,
NULL, /* value_table */
};
feMorphology_type = g_type_register_static(SP_TYPE_OBJECT, "SPFeMorphology", &feMorphology_info, (GTypeFlags)0);
}
return feMorphology_type;
}
static void
sp_feMorphology_class_init(SPFeMorphologyClass *klass)
{
SPObjectClass *sp_object_class = (SPObjectClass *)klass;
feMorphology_parent_class = (SPObjectClass*)g_type_class_peek_parent(klass);
sp_object_class->build = sp_feMorphology_build;
sp_object_class->release = sp_feMorphology_release;
sp_object_class->write = sp_feMorphology_write;
sp_object_class->set = sp_feMorphology_set;
sp_object_class->update = sp_feMorphology_update;
}
static void
sp_feMorphology_init(SPFeMorphology *feMorphology)
{
debug("0x%p",feMorphology);
}
/**
* Reads the Inkscape::XML::Node, and initializes SPFeMorphology 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_feMorphology_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr)
{
debug("0x%p",object);
if (((SPObjectClass *) feMorphology_parent_class)->build) {
((SPObjectClass *) feMorphology_parent_class)->build(object, document, repr);
}
/*LOAD ATTRIBUTES FROM REPR HERE*/
}
/**
* Drops any allocated memory.
*/
static void
sp_feMorphology_release(SPObject *object)
{
debug("0x%p",object);
if (((SPObjectClass *) feMorphology_parent_class)->release)
((SPObjectClass *) feMorphology_parent_class)->release(object);
}
/**
* Sets a specific value in the SPFeMorphology.
*/
static void
sp_feMorphology_set(SPObject *object, unsigned int key, gchar const *value)
{
debug("0x%p %s(%u): '%s'",object,
sp_attribute_name(key),key,value);
SPFeMorphology *feMorphology = SP_FEMORPHOLOGY(object);
switch(key) {
/*DEAL WITH SETTING ATTRIBUTES HERE*/
default:
if (((SPObjectClass *) feMorphology_parent_class)->set)
((SPObjectClass *) feMorphology_parent_class)->set(object, key, value);
break;
}
}
/**
* Receives update notifications.
*/
static void
sp_feMorphology_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 *) feMorphology_parent_class)->update) {
((SPObjectClass *) feMorphology_parent_class)->update(object, ctx, flags);
}
}
/**
* Writes its settings to an incoming repr object, if any.
*/
static Inkscape::XML::Node *
sp_feMorphology_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 *) feMorphology_parent_class)->write) {
((SPObjectClass *) feMorphology_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 :