sp-femerge.cpp revision 1ed1764f573921b7f9d210a3fcca322234c36480
#define __SP_FEMERGE_CPP__
/** \file
* SVG <feMerge> 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 "sp-femerge.h"
/* FeMerge base class */
static Inkscape::XML::Node *sp_feMerge_write(SPObject *object, Inkscape::XML::Node *repr, guint flags);
{
static GType feMerge_type = 0;
if (!feMerge_type) {
sizeof(SPFeMergeClass),
sizeof(SPFeMerge),
16,
NULL, /* value_table */
};
feMerge_type = g_type_register_static(SP_TYPE_FILTER_PRIMITIVE, "SPFeMerge", &feMerge_info, (GTypeFlags)0);
}
return feMerge_type;
}
static void
{
}
static void
{
}
/**
* Reads the Inkscape::XML::Node, and initializes SPFeMerge 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
{
}
/*LOAD ATTRIBUTES FROM REPR HERE*/
}
/**
* Drops any allocated memory.
*/
static void
{
}
/**
* Sets a specific value in the SPFeMerge.
*/
static void
{
(void)feMerge;
switch(key) {
/*DEAL WITH SETTING ATTRIBUTES HERE*/
default:
break;
}
}
/**
* Receives update notifications.
*/
static void
{
/* do something to trigger redisplay, updates? */
}
}
}
/**
* Writes its settings to an incoming repr object, if any.
*/
{
// Inkscape-only object, not copied during an "plain SVG" dump:
if (flags & SP_OBJECT_WRITE_EXT) {
if (repr) {
// is this sane?
} else {
}
}
}
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 :