blob: 70f6ce13deaaf2f201b27470bca394a765e8f390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_EXTENSION_INTERNAL_BITMAP_IMAGEMAGICK_H
#define INKSCAPE_EXTENSION_INTERNAL_BITMAP_IMAGEMAGICK_H
/*
* Copyright (C) 2007 Authors:
* Christopher Brown <audiere@gmail.com>
* Ted Gould <ted@gould.cx>
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "extension/implementation/implementation.h"
class SPItem;
namespace Magick {
class Image;
}
namespace Inkscape {
namespace Extension {
class Effect;
class Extension;
namespace Internal {
namespace Bitmap {
class ImageMagick : public Inkscape::Extension::Implementation::Implementation {
public:
/* Functions to be implemented by subclasses */
virtual void applyEffect(Magick::Image */*image*/) { };
virtual void refreshParameters(Inkscape::Extension::Effect */*module*/) { };
virtual void postEffect(Magick::Image */*image*/, SPItem */*item*/) { };
/* Functions implemented from ::Implementation */
bool load(Inkscape::Extension::Extension *module) override;
Inkscape::Extension::Implementation::ImplementationDocumentCache * newDocCache (Inkscape::Extension::Extension * ext, Inkscape::UI::View::View * doc) override;
void effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View *document, Inkscape::Extension::Implementation::ImplementationDocumentCache * docCache) override;
Gtk::Widget* prefs_effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View * view, sigc::signal<void ()> * changeSignal, Inkscape::Extension::Implementation::ImplementationDocumentCache * docCache) override;
};
}; /* namespace Bitmap */
}; /* namespace Internal */
}; /* namespace Extension */
}; /* namespace Inkscape */
#endif // INKSCAPE_EXTENSION_INTERNAL_BITMAP_IMAGEMAGICK_H
|