Code

Work on filters. spFilterPrimitive structure added. Blur slider updated. Fixed sp...
[inkscape.git] / src / sp-fecolormatrix.cpp
1 #define __SP_FECOLORMATRIX_CPP__
3 /** \file
4  * SVG <feColorMatrix> 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-fecolormatrix.h"
23 #include "xml/repr.h"
26 /* FeColorMatrix base class */
28 static void sp_feColorMatrix_class_init(SPFeColorMatrixClass *klass);
29 static void sp_feColorMatrix_init(SPFeColorMatrix *feColorMatrix);
31 static void sp_feColorMatrix_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr);
32 static void sp_feColorMatrix_release(SPObject *object);
33 static void sp_feColorMatrix_set(SPObject *object, unsigned int key, gchar const *value);
34 static void sp_feColorMatrix_update(SPObject *object, SPCtx *ctx, guint flags);
35 static Inkscape::XML::Node *sp_feColorMatrix_write(SPObject *object, Inkscape::XML::Node *repr, guint flags);
37 static SPFilterPrimitiveClass *feColorMatrix_parent_class;
39 GType
40 sp_feColorMatrix_get_type()
41 {
42     static GType feColorMatrix_type = 0;
44     if (!feColorMatrix_type) {
45         GTypeInfo feColorMatrix_info = {
46             sizeof(SPFeColorMatrixClass),
47             NULL, NULL,
48             (GClassInitFunc) sp_feColorMatrix_class_init,
49             NULL, NULL,
50             sizeof(SPFeColorMatrix),
51             16,
52             (GInstanceInitFunc) sp_feColorMatrix_init,
53             NULL,    /* value_table */
54         };
55         feColorMatrix_type = g_type_register_static(SP_TYPE_FILTER_PRIMITIVE, "SPFeColorMatrix", &feColorMatrix_info, (GTypeFlags)0);
56     }
57     return feColorMatrix_type;
58 }
60 static void
61 sp_feColorMatrix_class_init(SPFeColorMatrixClass *klass)
62 {
63     SPObjectClass *sp_object_class = (SPObjectClass *)klass;
65     feColorMatrix_parent_class = (SPFilterPrimitiveClass*)g_type_class_peek_parent(klass);
67     sp_object_class->build = sp_feColorMatrix_build;
68     sp_object_class->release = sp_feColorMatrix_release;
69     sp_object_class->write = sp_feColorMatrix_write;
70     sp_object_class->set = sp_feColorMatrix_set;
71     sp_object_class->update = sp_feColorMatrix_update;
72 }
74 static void
75 sp_feColorMatrix_init(SPFeColorMatrix *feColorMatrix)
76 {
77 }
79 /**
80  * Reads the Inkscape::XML::Node, and initializes SPFeColorMatrix 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_feColorMatrix_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr)
86 {
87     if (((SPObjectClass *) feColorMatrix_parent_class)->build) {
88         ((SPObjectClass *) feColorMatrix_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_feColorMatrix_release(SPObject *object)
99 {
100     if (((SPObjectClass *) feColorMatrix_parent_class)->release)
101         ((SPObjectClass *) feColorMatrix_parent_class)->release(object);
104 /**
105  * Sets a specific value in the SPFeColorMatrix.
106  */
107 static void
108 sp_feColorMatrix_set(SPObject *object, unsigned int key, gchar const *value)
110     SPFeColorMatrix *feColorMatrix = SP_FECOLORMATRIX(object);
112     switch(key) {\r
113         /*DEAL WITH SETTING ATTRIBUTES HERE*/
114         default:
115             if (((SPObjectClass *) feColorMatrix_parent_class)->set)
116                 ((SPObjectClass *) feColorMatrix_parent_class)->set(object, key, value);
117             break;
118     }
122 /**
123  * Receives update notifications.
124  */
125 static void
126 sp_feColorMatrix_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 *) feColorMatrix_parent_class)->update) {
136         ((SPObjectClass *) feColorMatrix_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_feColorMatrix_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 *) feColorMatrix_parent_class)->write) {
157         ((SPObjectClass *) feColorMatrix_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 :