Code

Corrected the parenting of the browse dialog, so that it cannot fall underneath the...
[inkscape.git] / src / sp-fecolormatrix.h
index 8f3c8093a33d0e5b3ce8211c6e78254203dcb628..e091a0725282d2d84abc65db41d53fc34897aeb1 100644 (file)
 
 #include "sp-filter.h"
 #include "sp-fecolormatrix-fns.h"
+#include "display/nr-filter-colormatrix.h"
+#include <vector>
 
 /* FeColorMatrix base class */
 class SPFeColorMatrixClass;
 
-struct SPFeColorMatrix : public SPFilter {
+struct SPFeColorMatrix : public SPFilterPrimitive {
     /** COLORMATRIX ATTRIBUTES HERE */
-    
+    NR::FilterColorMatrixType type;
+    gdouble value;
+    std::vector<gdouble> values;
 };
 
 struct SPFeColorMatrixClass {
-    SPFilterClass parent_class;
+    SPFilterPrimitiveClass parent_class;
 };
 
 GType sp_feColorMatrix_get_type();