Code

Filters. New custom predefined filters (all ABCs, Neon draw, Color shilf, Silhouette...
[inkscape.git] / src / extension / internal / filter / color.h
index 05173b6843a810715fd95d70533d3e8284391598..559ecd3cc84763b359403e6e437ea1a4f31adf5f 100755 (executable)
@@ -3,13 +3,14 @@
 /* Change the 'COLOR' above to be your file name */
 
 /*
- * Copyright (C) 2010 Authors:
+ * Copyright (C) 2011 Authors:
  *   Ivan Louette (filters)
  *   Nicolas Dufour (UI) <nicoduf@yahoo.fr>
  *
  * Color filters
  *   Colorize
  *   Duochrome
+ *   Electrize
  *   Quadritone
  *   Solarize
  *   Tritone
@@ -45,53 +46,59 @@ namespace Filter {
 
 class Colorize : public Inkscape::Extension::Internal::Filter::Filter {
 protected:
-       virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
+    virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
 
 public:
-       Colorize ( ) : Filter() { };
-       virtual ~Colorize ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
-
-       static void init (void) {
-               Inkscape::Extension::build_from_mem(
-                       "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
-                               "<name>" N_("Colorize, custom (color)") "</name>\n"
-                               "<id>org.inkscape.effect.filter.Colorize</id>\n"
-                        "<param name=\"hlight\" gui-text=\"" N_("Harsh light:") "\" type=\"float\" min=\"0\" max=\"10\">0</param>\n"
-                        "<param name=\"nlight\" gui-text=\"" N_("Normal light:") "\" type=\"float\" min=\"0\" max=\"10\">1</param>\n"
-                        "<param name=\"duotone\" gui-text=\"" N_("Duotone") "\" type=\"boolean\" >false</param>\n"
-                        "<param name=\"blend1\" gui-text=\"" N_("Blend1:") "\" type=\"enum\">\n"
-                            "<_item value=\"multiply\">Multiply</_item>\n"
-                            "<_item value=\"normal\">Normal</_item>\n"
-                            "<_item value=\"screen\">Screen</_item>\n"
-                            "<_item value=\"lighten\">Lighten</_item>\n"
-                            "<_item value=\"darken\">Darken</_item>\n"
-                        "</param>\n"
-                        "<param name=\"blend2\" gui-text=\"" N_("Blend2:") "\" type=\"enum\">\n"
-                            "<_item value=\"screen\">Screen</_item>\n"
-                            "<_item value=\"multiply\">Multiply</_item>\n"
-                            "<_item value=\"normal\">Normal</_item>\n"
-                            "<_item value=\"lighten\">Lighten</_item>\n"
-                            "<_item value=\"darken\">Darken</_item>\n"
-                        "</param>\n"
-                                       "<param name=\"color\" gui-text=\"" N_("Color 1") "\" type=\"color\">-1639776001</param>\n"
-                               "<effect>\n"
-                                       "<object-type>all</object-type>\n"
-                                       "<effects-menu>\n"
-                                               "<submenu name=\"" N_("Filters") "\">\n"
-                                               "<submenu name=\"" N_("Experimental") "\"/>\n"
-                             "</submenu>\n"
-                                       "</effects-menu>\n"
-                                       "<menu-tip>" N_("Blend image or object with a flood color") "</menu-tip>\n"
-                               "</effect>\n"
-                       "</inkscape-extension>\n", new Colorize());
-       };
+    Colorize ( ) : Filter() { };
+    virtual ~Colorize ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
+
+    static void init (void) {
+        Inkscape::Extension::build_from_mem(
+            "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
+                "<name>" N_("Colorize, custom (Color)") "</name>\n"
+                "<id>org.inkscape.effect.filter.Colorize</id>\n"
+                "<param name=\"tab\" type=\"notebook\">\n"
+                  "<page name=\"optionstab\" _gui-text=\"Options\">\n"
+                    "<param name=\"hlight\" gui-text=\"" N_("Harsh light:") "\" type=\"float\" min=\"0\" max=\"10\">0</param>\n"
+                    "<param name=\"nlight\" gui-text=\"" N_("Normal light:") "\" type=\"float\" min=\"0\" max=\"10\">1</param>\n"
+                    "<param name=\"duotone\" gui-text=\"" N_("Duotone") "\" type=\"boolean\" >false</param>\n"
+                    "<param name=\"blend1\" gui-text=\"" N_("Blend 1:") "\" type=\"enum\">\n"
+                      "<_item value=\"multiply\">Multiply</_item>\n"
+                      "<_item value=\"normal\">Normal</_item>\n"
+                      "<_item value=\"screen\">Screen</_item>\n"
+                      "<_item value=\"lighten\">Lighten</_item>\n"
+                      "<_item value=\"darken\">Darken</_item>\n"
+                    "</param>\n"
+                    "<param name=\"blend2\" gui-text=\"" N_("Blend 2:") "\" type=\"enum\">\n"
+                      "<_item value=\"screen\">Screen</_item>\n"
+                      "<_item value=\"multiply\">Multiply</_item>\n"
+                      "<_item value=\"normal\">Normal</_item>\n"
+                      "<_item value=\"lighten\">Lighten</_item>\n"
+                      "<_item value=\"darken\">Darken</_item>\n"
+                    "</param>\n"
+                  "</page>\n"
+                  "<page name=\"colortab\" _gui-text=\"Color\">\n"
+                    "<param name=\"color\" gui-text=\"" N_("Color") "\" type=\"color\">-1639776001</param>\n"
+                  "</page>\n"
+                "</param>\n"
+                "<effect>\n"
+                "<object-type>all</object-type>\n"
+                "<effects-menu>\n"
+                  "<submenu name=\"" N_("Filters") "\">\n"
+                    "<submenu name=\"" N_("Experimental") "\"/>\n"
+                  "</submenu>\n"
+                  "</effects-menu>\n"
+                "<menu-tip>" N_("Blend image or object with a flood color") "</menu-tip>\n"
+              "</effect>\n"
+            "</inkscape-extension>\n", new Colorize());
+    };
 
 };
 
 gchar const *
 Colorize::get_filter_text (Inkscape::Extension::Extension * ext)
 {
-       if (_filter != NULL) g_free((void *)_filter);
+    if (_filter != NULL) g_free((void *)_filter);
 
     std::ostringstream a;
     std::ostringstream r;
@@ -118,18 +125,18 @@ Colorize::get_filter_text (Inkscape::Extension::Extension * ext)
     else
         duotone << "1";
 
-       _filter = g_strdup_printf(
-               "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Colorize, custom\">\n"
-            "<feComposite in2=\"SourceGraphic\" operator=\"arithmetic\" k1=\"%s\" k2=\"%s\" result=\"composite1\" />\n"
-            "<feColorMatrix in=\"composite1\" values=\"%s\" type=\"saturate\" result=\"colormatrix1\" />\n"
-            "<feFlood flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood1\" />\n"
-            "<feBlend in=\"flood1\" in2=\"colormatrix1\" mode=\"%s\" result=\"blend1\" />\n"
-            "<feBlend in2=\"blend1\" mode=\"%s\" result=\"blend2\" />\n"
-            "<feColorMatrix in=\"blend2\" values=\"1\" type=\"saturate\" result=\"colormatrix2\" />\n"
-            "<feComposite in=\"colormatrix2\" in2=\"SourceGraphic\" operator=\"in\" k2=\"1\" result=\"composite2\" />\n"
+    _filter = g_strdup_printf(
+        "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Colorize, custom\">\n"
+          "<feComposite in2=\"SourceGraphic\" operator=\"arithmetic\" k1=\"%s\" k2=\"%s\" result=\"composite1\" />\n"
+          "<feColorMatrix in=\"composite1\" values=\"%s\" type=\"saturate\" result=\"colormatrix1\" />\n"
+          "<feFlood flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood1\" />\n"
+          "<feBlend in=\"flood1\" in2=\"colormatrix1\" mode=\"%s\" result=\"blend1\" />\n"
+          "<feBlend in2=\"blend1\" mode=\"%s\" result=\"blend2\" />\n"
+          "<feColorMatrix in=\"blend2\" values=\"1\" type=\"saturate\" result=\"colormatrix2\" />\n"
+          "<feComposite in=\"colormatrix2\" in2=\"SourceGraphic\" operator=\"in\" k2=\"1\" result=\"composite2\" />\n"
         "</filter>\n", hlight.str().c_str(), nlight.str().c_str(), duotone.str().c_str(), a.str().c_str(), r.str().c_str(), g.str().c_str(), b.str().c_str(), blend1.str().c_str(), blend2.str().c_str());
 
-       return _filter;
+    return _filter;
 }; /* Colorize filter */
 
 
@@ -147,52 +154,52 @@ Colorize::get_filter_text (Inkscape::Extension::Extension * ext)
 
 class Duochrome : public Inkscape::Extension::Internal::Filter::Filter {
 protected:
-       virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
+    virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
 
 public:
-       Duochrome ( ) : Filter() { };
-       virtual ~Duochrome ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
-
-       static void init (void) {
-               Inkscape::Extension::build_from_mem(
-                       "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
-                               "<name>" N_("Duochrome, custom (color)") "</name>\n"
-                               "<id>org.inkscape.effect.filter.Duochrome</id>\n"
-                   "<param name=\"tab\" type=\"notebook\">\n"
-                    "<page name=\"optionstab\" _gui-text=\"Options\">\n"
-                        "<param name=\"fluo\" gui-text=\"" N_("Fluorescence level:") "\" type=\"float\" min=\"0\" max=\"2\">0</param>\n"
-                        "<param name=\"swap\" gui-text=\"" N_("Swap:") "\" type=\"enum\">\n"
-                            "<_item value=\"none\">No swap</_item>\n"
-                            "<_item value=\"full\">Color and alpha</_item>\n"
-                            "<_item value=\"color\">Color only</_item>\n"
-                            "<_item value=\"alpha\">Alpha only</_item>\n"
-                        "</param>\n"
-                    "</page>\n"
-                    "<page name=\"co11tab\" _gui-text=\"Color 1\">\n"
-                                       "<param name=\"color1\" gui-text=\"" N_("Color 1") "\" type=\"color\">1364325887</param>\n"
-                    "</page>\n"
-                    "<page name=\"co12tab\" _gui-text=\"Color 2\">\n"
-                                       "<param name=\"color2\" gui-text=\"" N_("Color 2") "\" type=\"color\">-65281</param>\n"
-                    "</page>\n"
-                "</param>\n"
-                               "<effect>\n"
-                                       "<object-type>all</object-type>\n"
-                                       "<effects-menu>\n"
-                                               "<submenu name=\"" N_("Filters") "\">\n"
-                                               "<submenu name=\"" N_("Experimental") "\"/>\n"
-                             "</submenu>\n"
-                                       "</effects-menu>\n"
-                                       "<menu-tip>" N_("Convert luminance values to a duochrome palette") "</menu-tip>\n"
-                               "</effect>\n"
-                       "</inkscape-extension>\n", new Duochrome());
-       };
+    Duochrome ( ) : Filter() { };
+    virtual ~Duochrome ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
+
+    static void init (void) {
+        Inkscape::Extension::build_from_mem(
+            "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
+              "<name>" N_("Duochrome, custom (Color)") "</name>\n"
+              "<id>org.inkscape.effect.filter.Duochrome</id>\n"
+              "<param name=\"tab\" type=\"notebook\">\n"
+                "<page name=\"optionstab\" _gui-text=\"Options\">\n"
+                  "<param name=\"fluo\" gui-text=\"" N_("Fluorescence level:") "\" type=\"float\" min=\"0\" max=\"2\">0</param>\n"
+                  "<param name=\"swap\" gui-text=\"" N_("Swap:") "\" type=\"enum\">\n"
+                    "<_item value=\"none\">No swap</_item>\n"
+                    "<_item value=\"full\">Color and alpha</_item>\n"
+                    "<_item value=\"color\">Color only</_item>\n"
+                    "<_item value=\"alpha\">Alpha only</_item>\n"
+                  "</param>\n"
+                "</page>\n"
+                "<page name=\"co11tab\" _gui-text=\"Color 1\">\n"
+                  "<param name=\"color1\" gui-text=\"" N_("Color 1") "\" type=\"color\">1364325887</param>\n"
+                "</page>\n"
+                "<page name=\"co12tab\" _gui-text=\"Color 2\">\n"
+                  "<param name=\"color2\" gui-text=\"" N_("Color 2") "\" type=\"color\">-65281</param>\n"
+                "</page>\n"
+              "</param>\n"
+              "<effect>\n"
+                "<object-type>all</object-type>\n"
+                "<effects-menu>\n"
+                  "<submenu name=\"" N_("Filters") "\">\n"
+                    "<submenu name=\"" N_("Experimental") "\"/>\n"
+                  "</submenu>\n"
+                "</effects-menu>\n"
+                "<menu-tip>" N_("Convert luminance values to a duochrome palette") "</menu-tip>\n"
+              "</effect>\n"
+            "</inkscape-extension>\n", new Duochrome());
+    };
 
 };
 
 gchar const *
 Duochrome::get_filter_text (Inkscape::Extension::Extension * ext)
 {
-       if (_filter != NULL) g_free((void *)_filter);
+    if (_filter != NULL) g_free((void *)_filter);
 
     std::ostringstream a1;
     std::ostringstream r1;
@@ -240,23 +247,107 @@ Duochrome::get_filter_text (Inkscape::Extension::Extension * ext)
         a2 << (color2 & 0xff) / 255.0F;
     }
 
-       _filter = g_strdup_printf(
-               "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Duochrome, custom\">\n"
-            "<feColorMatrix type=\"luminanceToAlpha\" result=\"colormatrix1\" />\n"
-            "<feFlood flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood1\" />\n"
-            "<feComposite in2=\"colormatrix1\" operator=\"%s\" result=\"composite1\" />\n"
-            "<feFlood in=\"colormatrix1\" flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood2\" />\n"
-            "<feComposite in2=\"colormatrix1\" result=\"composite2\" operator=\"%s\" />\n"
-            "<feComposite in=\"composite2\" in2=\"composite1\" k2=\"1\"  k3=\"1\" operator=\"arithmetic\" result=\"composite3\" />\n"
-            "<feColorMatrix in=\"composite3\" type=\"matrix\" values=\"2 -1 0 0 0 0 2 -1 0 0 -1 0 2 0 0 0 0 0 1 0 \" result=\"colormatrix2\" />\n"
-            "<feComposite in=\"colormatrix2\" in2=\"composite3\" operator=\"arithmetic\" k2=\"%s\" result=\"composite4\" />\n"
-            "<feBlend in=\"composite4\" in2=\"composite3\" blend=\"normal\" mode=\"normal\" result=\"blend\" />\n"
-            "<feComposite in2=\"SourceGraphic\" operator=\"in\" />\n"
+    _filter = g_strdup_printf(
+        "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Duochrome, custom\">\n"
+          "<feColorMatrix type=\"luminanceToAlpha\" result=\"colormatrix1\" />\n"
+          "<feFlood flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood1\" />\n"
+          "<feComposite in2=\"colormatrix1\" operator=\"%s\" result=\"composite1\" />\n"
+          "<feFlood in=\"colormatrix1\" flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood2\" />\n"
+          "<feComposite in2=\"colormatrix1\" result=\"composite2\" operator=\"%s\" />\n"
+          "<feComposite in=\"composite2\" in2=\"composite1\" k2=\"1\"  k3=\"1\" operator=\"arithmetic\" result=\"composite3\" />\n"
+          "<feColorMatrix in=\"composite3\" type=\"matrix\" values=\"2 -1 0 0 0 0 2 -1 0 0 -1 0 2 0 0 0 0 0 1 0 \" result=\"colormatrix2\" />\n"
+          "<feComposite in=\"colormatrix2\" in2=\"composite3\" operator=\"arithmetic\" k2=\"%s\" result=\"composite4\" />\n"
+          "<feBlend in=\"composite4\" in2=\"composite3\" blend=\"normal\" mode=\"normal\" result=\"blend\" />\n"
+          "<feComposite in2=\"SourceGraphic\" operator=\"in\" />\n"
         "</filter>\n", a1.str().c_str(), r1.str().c_str(), g1.str().c_str(), b1.str().c_str(), swap1.str().c_str(), a2.str().c_str(), r2.str().c_str(), g2.str().c_str(), b2.str().c_str(), swap2.str().c_str(), fluo.str().c_str());
 
-       return _filter;
+    return _filter;
 }; /* Duochrome filter */
 
+/**
+    \brief    Custom predefined Electrize filter.
+    
+    Electro solarization effects.
+
+    Filter's parameters:
+    * Simplify (0.01->10., default 2.) -> blur (stdDeviation)
+    * Effect type (enum: table or discrete, default "table") -> component (type)
+    * Level (0->10, default 3) -> component (tableValues)
+    * Inverted (boolean, default false) -> component (tableValues)
+*/
+class Electrize : public Inkscape::Extension::Internal::Filter::Filter {
+protected:
+    virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
+
+public:
+    Electrize ( ) : Filter() { };
+    virtual ~Electrize ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
+
+    static void init (void) {
+        Inkscape::Extension::build_from_mem(
+            "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
+              "<name>" N_("Electrize, custom (Color)") "</name>\n"
+              "<id>org.inkscape.effect.filter.Electrize</id>\n"
+              "<param name=\"blur\" gui-text=\"" N_("Simplify:") "\" type=\"float\" min=\"0.01\" max=\"10.0\">2.0</param>\n"
+              "<param name=\"type\" gui-text=\"" N_("Effect type:") "\" type=\"enum\">\n"
+                "<_item value=\"table\">Table</_item>\n"
+                "<_item value=\"discrete\">Discrete</_item>\n"
+              "</param>\n"
+              "<param name=\"levels\" gui-text=\"" N_("Levels:") "\" type=\"int\" min=\"0\" max=\"10\">3</param>\n"
+              "<param name=\"invert\" gui-text=\"" N_("Inverted") "\" type=\"boolean\">false</param>\n"
+              "<effect>\n"
+                "<object-type>all</object-type>\n"
+                "<effects-menu>\n"
+                  "<submenu name=\"" N_("Filters") "\">\n"
+                    "<submenu name=\"" N_("Experimental") "\"/>\n"
+                  "</submenu>\n"
+                "</effects-menu>\n"
+                "<menu-tip>" N_("Electro solarization effects") "</menu-tip>\n"
+              "</effect>\n"
+            "</inkscape-extension>\n", new Electrize());
+    };
+};
+
+gchar const *
+Electrize::get_filter_text (Inkscape::Extension::Extension * ext)
+{
+    if (_filter != NULL) g_free((void *)_filter);
+
+    std::ostringstream blur;
+    std::ostringstream type;
+    std::ostringstream values;
+
+    blur << ext->get_param_float("blur");
+    type << ext->get_param_enum("type");
+
+    // TransfertComponent table values are calculated based on the effect level and inverted parameters.
+    int val = 0;
+    int levels = ext->get_param_int("levels") + 1;
+    if (ext->get_param_bool("invert"))
+        val = 1;
+    values << val;
+    for ( int step = 1 ; step <= levels ; step++ ) {
+        if (val == 1) {
+            val = 0;
+        }
+        else {
+            val = 1;
+        }
+        values << " " << val;
+    }
+  
+    _filter = g_strdup_printf(
+        "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Electrize, custom\">\n"
+          "<feGaussianBlur stdDeviation=\"%s\" result=\"blur\" />\n"
+          "<feComponentTransfer in=\"blur\" stdDeviation=\"2\" result=\"component\" >\n"
+            "<feFuncR type=\"%s\" tableValues=\"%s\" />\n"
+            "<feFuncG type=\"%s\" tableValues=\"%s\" />\n"
+            "<feFuncB type=\"%s\" tableValues=\"%s\" />\n"
+          "</feComponentTransfer>\n"
+        "</filter>\n", blur.str().c_str(), type.str().c_str(), values.str().c_str(), type.str().c_str(), values.str().c_str(), type.str().c_str(), values.str().c_str());
+
+    return _filter;
+}; /* Electrize filter */
 
 /**
     \brief    Custom predefined Quadritone filter.
@@ -273,50 +364,50 @@ Duochrome::get_filter_text (Inkscape::Extension::Extension * ext)
 
 class Quadritone : public Inkscape::Extension::Internal::Filter::Filter {
 protected:
-       virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
+    virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
 
 public:
-       Quadritone ( ) : Filter() { };
-       virtual ~Quadritone ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
-
-       static void init (void) {
-               Inkscape::Extension::build_from_mem(
-                       "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
-                               "<name>" N_("Quadritone fantasy, custom (color)") "</name>\n"
-                               "<id>org.inkscape.effect.filter.Quadritone</id>\n"
-                        "<param name=\"dist\" gui-text=\"" N_("Hue distribution:") "\" type=\"int\" min=\"0\" max=\"360\">280</param>\n"
-                        "<param name=\"colors\" gui-text=\"" N_("Colors:") "\" type=\"int\" min=\"0\" max=\"360\">100</param>\n"
-                        "<param name=\"blend1\" gui-text=\"" N_("Blend1:") "\" type=\"enum\">\n"
-                            "<_item value=\"normal\">Normal</_item>\n"
-                            "<_item value=\"multiply\">Multiply</_item>\n"
-                            "<_item value=\"screen\">Screen</_item>\n"
-                        "</param>\n"
-                        "<param name=\"sat\" gui-text=\"" N_("Over-saturation:") "\" type=\"float\" min=\"0\" max=\"1\">0</param>\n"
-                        "<param name=\"blend2\" gui-text=\"" N_("Blend2:") "\" type=\"enum\">\n"
-                            "<_item value=\"normal\">Normal</_item>\n"
-                            "<_item value=\"screen\">Screen</_item>\n"
-                            "<_item value=\"multiply\">Multiply</_item>\n"
-                            "<_item value=\"lighten\">Lighten</_item>\n"
-                            "<_item value=\"darken\">Darken</_item>\n"
-                        "</param>\n"
-                               "<effect>\n"
-                                       "<object-type>all</object-type>\n"
-                                       "<effects-menu>\n"
-                                               "<submenu name=\"" N_("Filters") "\">\n"
-                                               "<submenu name=\"" N_("Experimental") "\"/>\n"
-                             "</submenu>\n"
-                                       "</effects-menu>\n"
-                                       "<menu-tip>" N_("Replace hue by two colors") "</menu-tip>\n"
-                               "</effect>\n"
-                       "</inkscape-extension>\n", new Quadritone());
-       };
+    Quadritone ( ) : Filter() { };
+    virtual ~Quadritone ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
+
+    static void init (void) {
+        Inkscape::Extension::build_from_mem(
+            "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
+              "<name>" N_("Quadritone fantasy, custom (Color)") "</name>\n"
+              "<id>org.inkscape.effect.filter.Quadritone</id>\n"
+                "<param name=\"dist\" gui-text=\"" N_("Hue distribution:") "\" type=\"int\" min=\"0\" max=\"360\">280</param>\n"
+                "<param name=\"colors\" gui-text=\"" N_("Colors:") "\" type=\"int\" min=\"0\" max=\"360\">100</param>\n"
+                "<param name=\"blend1\" gui-text=\"" N_("Blend 1:") "\" type=\"enum\">\n"
+                  "<_item value=\"normal\">Normal</_item>\n"
+                  "<_item value=\"multiply\">Multiply</_item>\n"
+                  "<_item value=\"screen\">Screen</_item>\n"
+                "</param>\n"
+                "<param name=\"sat\" gui-text=\"" N_("Over-saturation:") "\" type=\"float\" min=\"0\" max=\"1\">0</param>\n"
+                "<param name=\"blend2\" gui-text=\"" N_("Blend 2:") "\" type=\"enum\">\n"
+                  "<_item value=\"normal\">Normal</_item>\n"
+                  "<_item value=\"screen\">Screen</_item>\n"
+                  "<_item value=\"multiply\">Multiply</_item>\n"
+                  "<_item value=\"lighten\">Lighten</_item>\n"
+                  "<_item value=\"darken\">Darken</_item>\n"
+                "</param>\n"
+                "<effect>\n"
+                  "<object-type>all</object-type>\n"
+                  "<effects-menu>\n"
+                    "<submenu name=\"" N_("Filters") "\">\n"
+                      "<submenu name=\"" N_("Experimental") "\"/>\n"
+                    "</submenu>\n"
+                  "</effects-menu>\n"
+                "<menu-tip>" N_("Replace hue by two colors") "</menu-tip>\n"
+              "</effect>\n"
+            "</inkscape-extension>\n", new Quadritone());
+    };
 
 };
 
 gchar const *
 Quadritone::get_filter_text (Inkscape::Extension::Extension * ext)
 {
-       if (_filter != NULL) g_free((void *)_filter);
+    if (_filter != NULL) g_free((void *)_filter);
 
     std::ostringstream dist;
     std::ostringstream colors;
@@ -330,18 +421,18 @@ Quadritone::get_filter_text (Inkscape::Extension::Extension * ext)
     sat << ext->get_param_float("sat");
     blend2 << ext->get_param_enum("blend2");
 
-       _filter = g_strdup_printf(
-               "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Quadritone fantasy, custom\">\n"
-            "<feColorMatrix in=\"SourceGraphic\" type=\"hueRotate\" values=\"%s\" result=\"colormatrix1\" />\n"
-            "<feColorMatrix type=\"matrix\" values=\"0.5 0 0.5 0 0 0 1 0 0 0 0.5 0 0.5 0 0 0 0 0 1 0 \" result=\"colormatrix2\" />\n"
-            "<feColorMatrix type=\"hueRotate\" values=\"%s\" result=\"colormatrix3\" />\n"
-            "<feBlend in2=\"colormatrix3\" blend=\"normal\" mode=\"%s\" result=\"blend1\" />\n"
-            "<feColorMatrix type=\"matrix\" values=\"2.5 -0.75 -0.75 0 0 -0.75 2.5 -0.75 0 0 -0.75 -0.75 2.5 0 0 0 0 0 1 0 \" result=\"colormatrix4\" />\n"
-            "<feComposite in=\"colormatrix4\" in2=\"blend1\" operator=\"arithmetic\" k2=\"%s\" result=\"composite1\" />\n"
-            "<feBlend in2=\"blend1\" blend=\"normal\" mode=\"%s\" result=\"blend2\" />\n"
+    _filter = g_strdup_printf(
+        "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Quadritone fantasy, custom\">\n"
+          "<feColorMatrix in=\"SourceGraphic\" type=\"hueRotate\" values=\"%s\" result=\"colormatrix1\" />\n"
+          "<feColorMatrix type=\"matrix\" values=\"0.5 0 0.5 0 0 0 1 0 0 0 0.5 0 0.5 0 0 0 0 0 1 0 \" result=\"colormatrix2\" />\n"
+          "<feColorMatrix type=\"hueRotate\" values=\"%s\" result=\"colormatrix3\" />\n"
+          "<feBlend in2=\"colormatrix3\" blend=\"normal\" mode=\"%s\" result=\"blend1\" />\n"
+          "<feColorMatrix type=\"matrix\" values=\"2.5 -0.75 -0.75 0 0 -0.75 2.5 -0.75 0 0 -0.75 -0.75 2.5 0 0 0 0 0 1 0 \" result=\"colormatrix4\" />\n"
+          "<feComposite in=\"colormatrix4\" in2=\"blend1\" operator=\"arithmetic\" k2=\"%s\" result=\"composite1\" />\n"
+          "<feBlend in2=\"blend1\" blend=\"normal\" mode=\"%s\" result=\"blend2\" />\n"
         "</filter>\n", dist.str().c_str(), colors.str().c_str(), blend1.str().c_str(), sat.str().c_str(), blend2.str().c_str());
 
-       return _filter;
+    return _filter;
 }; /* Quadritone filter */
 
 
@@ -360,40 +451,40 @@ Quadritone::get_filter_text (Inkscape::Extension::Extension * ext)
 
 class Solarize : public Inkscape::Extension::Internal::Filter::Filter {
 protected:
-       virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
+    virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
 
 public:
-       Solarize ( ) : Filter() { };
-       virtual ~Solarize ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
-
-       static void init (void) {
-               Inkscape::Extension::build_from_mem(
-                       "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
-                               "<name>" N_("Solarize, custom (color)") "</name>\n"
-                               "<id>org.inkscape.effect.filter.Solarize</id>\n"
-                        "<param name=\"rotate\" gui-text=\"" N_("Hue rotation:") "\" type=\"int\" min=\"0\" max=\"360\">0</param>\n"
-                        "<param name=\"type\" gui-text=\"" N_("Type:") "\" type=\"enum\">\n"
-                            "<_item value=\"solarize\">Solarize</_item>\n"
-                            "<_item value=\"moonarize\">Moonarize</_item>\n"
-                        "</param>\n"
-                               "<effect>\n"
-                                       "<object-type>all</object-type>\n"
-                                       "<effects-menu>\n"
-                                               "<submenu name=\"" N_("Filters") "\">\n"
-                                               "<submenu name=\"" N_("Experimental") "\"/>\n"
-                             "</submenu>\n"
-                                       "</effects-menu>\n"
-                                       "<menu-tip>" N_("Classic photographic solarization effect") "</menu-tip>\n"
-                               "</effect>\n"
-                       "</inkscape-extension>\n", new Solarize());
-       };
+    Solarize ( ) : Filter() { };
+    virtual ~Solarize ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
+
+    static void init (void) {
+        Inkscape::Extension::build_from_mem(
+            "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
+              "<name>" N_("Solarize, custom (Color)") "</name>\n"
+              "<id>org.inkscape.effect.filter.Solarize</id>\n"
+              "<param name=\"rotate\" gui-text=\"" N_("Hue rotation:") "\" type=\"int\" min=\"0\" max=\"360\">0</param>\n"
+              "<param name=\"type\" gui-text=\"" N_("Type:") "\" type=\"enum\">\n"
+                "<_item value=\"solarize\">Solarize</_item>\n"
+                "<_item value=\"moonarize\">Moonarize</_item>\n"
+              "</param>\n"
+              "<effect>\n"
+                "<object-type>all</object-type>\n"
+                "<effects-menu>\n"
+                  "<submenu name=\"" N_("Filters") "\">\n"
+                    "<submenu name=\"" N_("Experimental") "\"/>\n"
+                  "</submenu>\n"
+                "</effects-menu>\n"
+                "<menu-tip>" N_("Classic photographic solarization effect") "</menu-tip>\n"
+              "</effect>\n"
+            "</inkscape-extension>\n", new Solarize());
+    };
 
 };
 
 gchar const *
 Solarize::get_filter_text (Inkscape::Extension::Extension * ext)
 {
-       if (_filter != NULL) g_free((void *)_filter);
+    if (_filter != NULL) g_free((void *)_filter);
 
     std::ostringstream rotate;
     std::ostringstream blend1;
@@ -411,17 +502,17 @@ Solarize::get_filter_text (Inkscape::Extension::Extension * ext)
         blend2 << "multiply";
     }
 
-       _filter = g_strdup_printf(
-               "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Solarize, custom\">\n"
-        "<feColorMatrix values=\"1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 \" />\n"
-        "<feColorMatrix type=\"hueRotate\" values=\"%s\" result=\"colormatrix2\" />\n"
-        "<feColorMatrix in=\"colormatrix2\" values=\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 \" result=\"colormatrix3\" />\n"
-        "<feBlend in=\"colormatrix3\" in2=\"colormatrix2\" mode=\"%s\" result=\"blend1\" />\n"
-        "<feBlend in2=\"blend1\" mode=\"%s\" result=\"blend2\" />\n"
-        "<feComposite in2=\"SourceGraphic\" operator=\"in\" />\n"
+    _filter = g_strdup_printf(
+        "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Solarize, custom\">\n"
+          "<feColorMatrix values=\"1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 \" />\n"
+          "<feColorMatrix type=\"hueRotate\" values=\"%s\" result=\"colormatrix2\" />\n"
+          "<feColorMatrix in=\"colormatrix2\" values=\"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0 \" result=\"colormatrix3\" />\n"
+          "<feBlend in=\"colormatrix3\" in2=\"colormatrix2\" mode=\"%s\" result=\"blend1\" />\n"
+          "<feBlend in2=\"blend1\" mode=\"%s\" result=\"blend2\" />\n"
+          "<feComposite in2=\"SourceGraphic\" operator=\"in\" />\n"
         "</filter>\n", rotate.str().c_str(), blend1.str().c_str(), blend2.str().c_str());
 
-       return _filter;
+    return _filter;
 }; /* Solarize filter */
 
 
@@ -447,63 +538,63 @@ Solarize::get_filter_text (Inkscape::Extension::Extension * ext)
 
 class Tritone : public Inkscape::Extension::Internal::Filter::Filter {
 protected:
-       virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
+    virtual gchar const * get_filter_text (Inkscape::Extension::Extension * ext);
 
 public:
-       Tritone ( ) : Filter() { };
-       virtual ~Tritone ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
-
-       static void init (void) {
-               Inkscape::Extension::build_from_mem(
-                       "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
-                               "<name>" N_("Tritone, custom (color)") "</name>\n"
-                               "<id>org.inkscape.effect.filter.Tritone</id>\n"
-                   "<param name=\"tab\" type=\"notebook\">\n"
-                    "<page name=\"optionstab\" _gui-text=\"Options\">\n"
-                        "<param name=\"type\" gui-text=\"" N_("Type:") "\" type=\"enum\">\n"
-                            "<_item value=\"normal\">Normal</_item>\n"
-                            "<_item value=\"enhue\">Enhance hue</_item>\n"
-                            "<_item value=\"rad\">Radiation</_item>\n"
-                            "<_item value=\"htb\">Hue to background</_item>\n"
-                        "</param>\n"
-                        "<param name=\"globalblend\" gui-text=\"" N_("Global blend:") "\" type=\"enum\">\n"
-                            "<_item value=\"lighten\">Lighten</_item>\n"
-                            "<_item value=\"screen\">Screen</_item>\n"
-                            "<_item value=\"multiply\">Multiply</_item>\n"
-                            "<_item value=\"darken\">Darken</_item>\n"
-                        "</param>\n"
-                        "<param name=\"glow\" gui-text=\"" N_("Glow:") "\" type=\"float\" min=\"0.01\" max=\"10\">0.01</param>\n"
-                         "<param name=\"glowblend\" gui-text=\"" N_("Glow blend:") "\" type=\"enum\">\n"
-                            "<_item value=\"normal\">Normal</_item>\n"
-                            "<_item value=\"multiply\">Multiply</_item>\n"
-                            "<_item value=\"darken\">Darken</_item>\n"
-                        "</param>\n"
-                        "<param name=\"llight\" gui-text=\"" N_("Local light:") "\" type=\"float\" min=\"0\" max=\"10\">0</param>\n"
-                        "<param name=\"glight\" gui-text=\"" N_("Global light:") "\" type=\"float\" min=\"0\" max=\"10\">1</param>\n"
-                    "</page>\n"
-                    "<page name=\"co1tab\" _gui-text=\"Color\">\n"
-                        "<param name=\"dist\" gui-text=\"" N_("Hue distribution:") "\" type=\"int\" min=\"0\" max=\"360\">0</param>\n"
-                                       "<param name=\"color\" gui-text=\"" N_("Color") "\" type=\"color\">-73203457</param>\n"
-                    "</page>\n"
-                "</param>\n"
-                               "<effect>\n"
-                                       "<object-type>all</object-type>\n"
-                                       "<effects-menu>\n"
-                                               "<submenu name=\"" N_("Filters") "\">\n"
-                                               "<submenu name=\"" N_("Experimental") "\"/>\n"
-                             "</submenu>\n"
-                                       "</effects-menu>\n"
-                                       "<menu-tip>" N_("Create a custom tritone palette with additional glow, blend modes and hue moving") "</menu-tip>\n"
-                               "</effect>\n"
-                       "</inkscape-extension>\n", new Tritone());
-       };
+    Tritone ( ) : Filter() { };
+    virtual ~Tritone ( ) { if (_filter != NULL) g_free((void *)_filter); return; }
+
+    static void init (void) {
+        Inkscape::Extension::build_from_mem(
+            "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
+              "<name>" N_("Tritone, custom (Color)") "</name>\n"
+              "<id>org.inkscape.effect.filter.Tritone</id>\n"
+              "<param name=\"tab\" type=\"notebook\">\n"
+                "<page name=\"optionstab\" _gui-text=\"Options\">\n"
+                  "<param name=\"type\" gui-text=\"" N_("Type:") "\" type=\"enum\">\n"
+                    "<_item value=\"normal\">Normal</_item>\n"
+                    "<_item value=\"enhue\">Enhance hue</_item>\n"
+                    "<_item value=\"rad\">Radiation</_item>\n"
+                    "<_item value=\"htb\">Hue to background</_item>\n"
+                  "</param>\n"
+                  "<param name=\"globalblend\" gui-text=\"" N_("Global blend:") "\" type=\"enum\">\n"
+                    "<_item value=\"lighten\">Lighten</_item>\n"
+                    "<_item value=\"screen\">Screen</_item>\n"
+                    "<_item value=\"multiply\">Multiply</_item>\n"
+                    "<_item value=\"darken\">Darken</_item>\n"
+                  "</param>\n"
+                  "<param name=\"glow\" gui-text=\"" N_("Glow:") "\" type=\"float\" min=\"0.01\" max=\"10\">0.01</param>\n"
+                  "<param name=\"glowblend\" gui-text=\"" N_("Glow blend:") "\" type=\"enum\">\n"
+                    "<_item value=\"normal\">Normal</_item>\n"
+                    "<_item value=\"multiply\">Multiply</_item>\n"
+                    "<_item value=\"darken\">Darken</_item>\n"
+                  "</param>\n"
+                  "<param name=\"llight\" gui-text=\"" N_("Local light:") "\" type=\"float\" min=\"0\" max=\"10\">0</param>\n"
+                  "<param name=\"glight\" gui-text=\"" N_("Global light:") "\" type=\"float\" min=\"0\" max=\"10\">1</param>\n"
+                "</page>\n"
+                "<page name=\"co1tab\" _gui-text=\"Color\">\n"
+                  "<param name=\"dist\" gui-text=\"" N_("Hue distribution:") "\" type=\"int\" min=\"0\" max=\"360\">0</param>\n"
+                  "<param name=\"color\" gui-text=\"" N_("Color") "\" type=\"color\">-73203457</param>\n"
+                "</page>\n"
+              "</param>\n"
+              "<effect>\n"
+                "<object-type>all</object-type>\n"
+                "<effects-menu>\n"
+                  "<submenu name=\"" N_("Filters") "\">\n"
+                    "<submenu name=\"" N_("Experimental") "\"/>\n"
+                  "</submenu>\n"
+                "</effects-menu>\n"
+                "<menu-tip>" N_("Create a custom tritone palette with additional glow, blend modes and hue moving") "</menu-tip>\n"
+              "</effect>\n"
+            "</inkscape-extension>\n", new Tritone());
+    };
 
 };
 
 gchar const *
 Tritone::get_filter_text (Inkscape::Extension::Extension * ext)
 {
-       if (_filter != NULL) g_free((void *)_filter);
+    if (_filter != NULL) g_free((void *)_filter);
     
     std::ostringstream dist;
     std::ostringstream a;
@@ -564,30 +655,30 @@ Tritone::get_filter_text (Inkscape::Extension::Extension * ext)
         b6in2 << "qminpc";
     }
     
-       _filter = g_strdup_printf(
-               "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Tritone, custom\">\n"
-        "<feColorMatrix type=\"hueRotate\" result=\"colormatrix1\" values=\"%s\" />\n"
-        "<feColorMatrix in=\"colormatrix1\" result=\"r\" type=\"matrix\" values=\"1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 \" />\n"
-        "<feColorMatrix in=\"colormatrix1\" result=\"g\" type=\"matrix\" values=\"0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 \" />\n"
-        "<feColorMatrix in=\"colormatrix1\" result=\"b\" type=\"matrix\" values=\"0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 \" />\n"
-        "<feBlend in2=\"g\" mode=\"darken\" in=\"r\" result=\"minrg\" />\n"
-        "<feBlend in2=\"b\" mode=\"darken\" in=\"minrg\" result=\"p\" />\n"
-        "<feBlend in2=\"g\" mode=\"lighten\" in=\"r\" result=\"maxrg\" />\n"
-        "<feBlend in2=\"b\" mode=\"lighten\" in=\"maxrg\" result=\"q\" />\n"
-        "<feComponentTransfer in=\"q\" result=\"q2\">\n"
+    _filter = g_strdup_printf(
+        "<filter xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\" color-interpolation-filters=\"sRGB\" height=\"1\" width=\"1\" y=\"0\" x=\"0\" inkscape:label=\"Tritone, custom\">\n"
+          "<feColorMatrix type=\"hueRotate\" result=\"colormatrix1\" values=\"%s\" />\n"
+          "<feColorMatrix in=\"colormatrix1\" result=\"r\" type=\"matrix\" values=\"1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 1 \" />\n"
+          "<feColorMatrix in=\"colormatrix1\" result=\"g\" type=\"matrix\" values=\"0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 \" />\n"
+          "<feColorMatrix in=\"colormatrix1\" result=\"b\" type=\"matrix\" values=\"0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 \" />\n"
+          "<feBlend in2=\"g\" mode=\"darken\" in=\"r\" result=\"minrg\" />\n"
+          "<feBlend in2=\"b\" mode=\"darken\" in=\"minrg\" result=\"p\" />\n"
+          "<feBlend in2=\"g\" mode=\"lighten\" in=\"r\" result=\"maxrg\" />\n"
+          "<feBlend in2=\"b\" mode=\"lighten\" in=\"maxrg\" result=\"q\" />\n"
+          "<feComponentTransfer in=\"q\" result=\"q2\">\n"
             "<feFuncR type=\"linear\" slope=\"0\" />\n"
-        "</feComponentTransfer>\n"
-        "<feBlend in2=\"q2\" mode=\"%s\" in=\"p\" result=\"pq\" />\n"
-        "<feColorMatrix in=\"pq\" result=\"qminp\" type=\"matrix\" values=\"-1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 0 0 0 1 \" />\n"
-        "<feFlood in=\"qminp\" flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood\" />\n"
-        "<feComposite in=\"%s\" in2=\"%s\" result=\"qminpc\" operator=\"arithmetic\" k1=\"1\" />\n"
-        "<feGaussianBlur stdDeviation=\"%s\" />\n"
-        "<feBlend in2=\"%s\" blend=\"normal\" result=\"blend6\" mode=\"%s\" />\n"
-        "<feComposite in=\"%s\" in2=\"%s\" operator=\"arithmetic\" k1=\"%s\" k2=\"1\" k3=\"%s\" k4=\"0\" result=\"composite2\" />\n"
-        "<feComposite in2=\"SourceGraphic\" in=\"composite2\" operator=\"in\" />\n"
+          "</feComponentTransfer>\n"
+          "<feBlend in2=\"q2\" mode=\"%s\" in=\"p\" result=\"pq\" />\n"
+          "<feColorMatrix in=\"pq\" result=\"qminp\" type=\"matrix\" values=\"-1 1 0 0 0 -1 1 0 0 0 -1 1 0 0 0 0 0 0 0 1 \" />\n"
+          "<feFlood in=\"qminp\" flood-opacity=\"%s\" flood-color=\"rgb(%s,%s,%s)\" result=\"flood\" />\n"
+          "<feComposite in=\"%s\" in2=\"%s\" result=\"qminpc\" operator=\"arithmetic\" k1=\"1\" />\n"
+          "<feGaussianBlur stdDeviation=\"%s\" />\n"
+          "<feBlend in2=\"%s\" blend=\"normal\" result=\"blend6\" mode=\"%s\" />\n"
+          "<feComposite in=\"%s\" in2=\"%s\" operator=\"arithmetic\" k1=\"%s\" k2=\"1\" k3=\"%s\" k4=\"0\" result=\"composite2\" />\n"
+          "<feComposite in2=\"SourceGraphic\" in=\"composite2\" operator=\"in\" />\n"
         "</filter>\n", dist.str().c_str(), globalblend.str().c_str(), a.str().c_str(), r.str().c_str(), g.str().c_str(), b.str().c_str(), c1in.str().c_str(), c1in2.str().c_str(), glow.str().c_str(), b6in2.str().c_str(), glowblend.str().c_str(), c2in.str().c_str(), c2in2.str().c_str(), llight.str().c_str(), glight.str().c_str());
 
-       return _filter;
+    return _filter;
 }; /* Tritone filter */
 
 }; /* namespace Filter */