Code

Work on filters. spFilterPrimitive structure added. Blur slider updated. Fixed sp...
[inkscape.git] / src / sp-fecomposite.cpp
1 #define __SP_FECOMPOSITE_CPP__
3 /** \file
4  * SVG <feComposite> implementation.
5  *
6  */
7 /*
8  * Authors:
9  *   hugo Rodrigues <haa.rodrigues@gmail.com>
10  *
11  * Copyright (C) 2006 Hugo Rodrigues
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #ifdef HAVE_CONFIG_H
17 # include "config.h"
18 #endif
20 #include "attributes.h"
21 #include "svg/svg.h"
22 #include "sp-fecomposite.h"
23 #include "xml/repr.h"
26 /* FeComposite base class */
28 static void sp_feComposite_class_init(SPFeCompositeClass *klass);
29 static void sp_feComposite_init(SPFeComposite *feComposite);
31 static void sp_feComposite_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr);
32 static void sp_feComposite_release(SPObject *object);
33 static void sp_feComposite_set(SPObject *object, unsigned int key, gchar const *value);
34 static void sp_feComposite_update(SPObject *object, SPCtx *ctx, guint flags);
35 static Inkscape::XML::Node *sp_feComposite_write(SPObject *object, Inkscape::XML::Node *repr, guint flags);
37 static SPFilterPrimitiveClass *feComposite_parent_class;
39 GType
40 sp_feComposite_get_type()
41 {
42     static GType feComposite_type = 0;
44     if (!feComposite_type) {
45         GTypeInfo feComposite_info = {
46             sizeof(SPFeCompositeClass),
47             NULL, NULL,
48             (GClassInitFunc) sp_feComposite_class_init,
49             NULL, NULL,
50             sizeof(SPFeComposite),
51             16,
52             (GInstanceInitFunc) sp_feComposite_init,
53             NULL,    /* value_table */
54         };
55         feComposite_type = g_type_register_static(SP_TYPE_FILTER_PRIMITIVE, "SPFeComposite", &feComposite_info, (GTypeFlags)0);
56     }
57     return feComposite_type;
58 }
60 static void
61 sp_feComposite_class_init(SPFeCompositeClass *klass)
62 {
63     SPObjectClass *sp_object_class = (SPObjectClass *)klass;
65     feComposite_parent_class = (SPFilterPrimitiveClass*)g_type_class_peek_parent(klass);
67     sp_object_class->build = sp_feComposite_build;
68     sp_object_class->release = sp_feComposite_release;
69     sp_object_class->write = sp_feComposite_write;
70     sp_object_class->set = sp_feComposite_set;
71     sp_object_class->update = sp_feComposite_update;
72 }
74 static void
75 sp_feComposite_init(SPFeComposite *feComposite)
76 {
77 }
79 /**
80  * Reads the Inkscape::XML::Node, and initializes SPFeComposite variables.  For this to get called,
81  * our name must be associated with a repr via "sp_object_type_register".  Best done through
82  * sp-object-repr.cpp's repr_name_entries array.
83  */
84 static void
85 sp_feComposite_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr)
86 {
87     if (((SPObjectClass *) feComposite_parent_class)->build) {
88         ((SPObjectClass *) feComposite_parent_class)->build(object, document, repr);
89     }
91     /*LOAD ATTRIBUTES FROM REPR HERE*/
92 }
94 /**
95  * Drops any allocated memory.
96  */
97 static void
98 sp_feComposite_release(SPObject *object)
99 {
100     if (((SPObjectClass *) feComposite_parent_class)->release)
101         ((SPObjectClass *) feComposite_parent_class)->release(object);
104 /**
105  * Sets a specific value in the SPFeComposite.
106  */
107 static void
108 sp_feComposite_set(SPObject *object, unsigned int key, gchar const *value)
110     SPFeComposite *feComposite = SP_FECOMPOSITE(object);
112     switch(key) {\r
113         /*DEAL WITH SETTING ATTRIBUTES HERE*/
114         default:
115             if (((SPObjectClass *) feComposite_parent_class)->set)
116                 ((SPObjectClass *) feComposite_parent_class)->set(object, key, value);
117             break;
118     }
122 /**
123  * Receives update notifications.
124  */
125 static void
126 sp_feComposite_update(SPObject *object, SPCtx *ctx, guint flags)
128     if (flags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG |
129                  SP_OBJECT_VIEWPORT_MODIFIED_FLAG)) {
131         /* do something to trigger redisplay, updates? */
133     }
135     if (((SPObjectClass *) feComposite_parent_class)->update) {
136         ((SPObjectClass *) feComposite_parent_class)->update(object, ctx, flags);
137     }
140 /**
141  * Writes its settings to an incoming repr object, if any.
142  */
143 static Inkscape::XML::Node *
144 sp_feComposite_write(SPObject *object, Inkscape::XML::Node *repr, guint flags)
146     // Inkscape-only object, not copied during an "plain SVG" dump:
147     if (flags & SP_OBJECT_WRITE_EXT) {
148         if (repr) {
149             // is this sane?
150             repr->mergeFrom(SP_OBJECT_REPR(object), "id");
151         } else {
152             repr = SP_OBJECT_REPR(object)->duplicate();
153         }
154     }
156     if (((SPObjectClass *) feComposite_parent_class)->write) {
157         ((SPObjectClass *) feComposite_parent_class)->write(object, repr, flags);
158     }
160     return repr;
164 /*
165   Local Variables:
166   mode:c++
167   c-file-style:"stroustrup"
168   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
169   indent-tabs-mode:nil
170   fill-column:99
171   End:
172 */
173 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :