flood.cpp revision efbbfeb08420379fe1cd6a278289cb22e4d67455
/** \file
* SVG <feFlood> implementation.
*
*/
/*
* Authors:
* hugo Rodrigues <haa.rodrigues@gmail.com>
* Abhishek Sharma
*
* 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 "strneq.h"
#include "attributes.h"
#include "svg/svg-color.h"
#include "helper-fns.h"
#include "display/nr-filter.h"
#include "display/nr-filter-flood.h"
/* FeFlood base class */
static Inkscape::XML::Node *sp_feFlood_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags);
static void sp_feFlood_build_renderer(SPFilterPrimitive *primitive, Inkscape::Filters::Filter *filter);
{
static GType feFlood_type = 0;
if (!feFlood_type) {
sizeof(SPFeFloodClass),
sizeof(SPFeFlood),
16,
NULL, /* value_table */
};
feFlood_type = g_type_register_static(SP_TYPE_FILTER_PRIMITIVE, "SPFeFlood", &feFlood_info, (GTypeFlags)0);
}
return feFlood_type;
}
{
}
{
}
/**
* Reads the Inkscape::XML::Node, and initializes SPFeFlood 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.
*/
{
}
/**
* Sets a specific value in the SPFeFlood.
*/
static void
{
(void)feFlood;
double read_num;
bool dirty = false;
switch(key) {
/*DEAL WITH SETTING ATTRIBUTES HERE*/
case SP_PROP_FLOOD_COLOR:
dirty=true;
}
if (cend_ptr){
while (g_ascii_isspace(*cend_ptr)) {
++cend_ptr;
}
}
dirty = true;
}
}
if (dirty)
break;
case SP_PROP_FLOOD_OPACITY:
if (value) {
{
if (*end_ptr)
{
read_num = 1;
}
}
}
else {
read_num = 1;
}
}
break;
default:
break;
}
}
/**
* Receives update notifications.
*/
static void
{
/* do something to trigger redisplay, updates? */
}
}
}
/**
* Writes its settings to an incoming repr object, if any.
*/
sp_feFlood_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags)
{
/* TODO: Don't just clone, but create a new repr node and write all
* relevant values into it */
if (!repr) {
}
}
return repr;
}
static void sp_feFlood_build_renderer(SPFilterPrimitive *primitive, Inkscape::Filters::Filter *filter) {
(void)sp_flood;
Inkscape::Filters::FilterFlood *nr_flood = dynamic_cast<Inkscape::Filters::FilterFlood*>(nr_primitive);
}
/*
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 :