Code

a52b7c33d3a06c3021656da5a56bce5e3fb24585
[inkscape.git] / src / extension / internal / bitmap / spread.cpp
1 /*
2  * Copyright (C) 2007 Authors:
3  *   Christopher Brown <audiere@gmail.com>
4  *   Ted Gould <ted@gould.cx>
5  *   
6  * Released under GNU GPL, read the file 'COPYING' for more information
7  */
9 #include "extension/effect.h"
10 #include "extension/system.h"
12 #include "spread.h"
14 namespace Inkscape {
15 namespace Extension {
16 namespace Internal {
17 namespace Bitmap {
18         
19 void
20 Spread::applyEffect(Magick::Image* image) {
21         image->spread(_amount);
22 }
24 void
25 Spread::refreshParameters(Inkscape::Extension::Effect* module) {
26         _amount = module->get_param_int("amount");
27 }
29 #include "../clear-n_.h"
31 void
32 Spread::init(void)
33 {
34         Inkscape::Extension::build_from_mem(
35                 "<inkscape-extension xmlns=\"" INKSCAPE_EXTENSION_URI "\">\n"
36                         "<name>" N_("Dither") "</name>\n"
37                         "<id>org.inkscape.effect.bitmap.spread</id>\n"
38                         "<param name=\"amount\" gui-text=\"" N_("Amount") "\" type=\"int\" min=\"0\" max=\"100\">3</param>\n"
39                         "<effect>\n"
40                                 "<object-type>all</object-type>\n"
41                                 "<effects-menu>\n"
42                                         "<submenu name=\"" N_("Raster") "\" />\n"
43                                 "</effects-menu>\n"
44                                 "<menu-tip>" N_("Randomly scatter pixels in selected bitmap(s), within the given radius of the original position") "</menu-tip>\n"
45                         "</effect>\n"
46                 "</inkscape-extension>\n", new Spread());
47 }
49 }; /* namespace Bitmap */
50 }; /* namespace Internal */
51 }; /* namespace Extension */
52 }; /* namespace Inkscape */