Code

Mnemonics in "Fill and stroke", "Align and distribute", and "Transform" dialogs ...
[inkscape.git] / src / extension / internal / bitmap / normalize.h
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 "imagemagick.h"
11 namespace Inkscape {
12 namespace Extension {
13 namespace Internal {
14 namespace Bitmap {
16 class Normalize : public ImageMagick
17 {
18 public:
19   void applyEffect(Magick::Image *image);
20   void refreshParameters(Inkscape::Extension::Effect *module);
21   static void init(void);
22 };
24 }; /* namespace Bitmap */
25 }; /* namespace Internal */
26 }; /* namespace Extension */
27 }; /* namespace Inkscape */