Code

moving trunk for module inkscape
[inkscape.git] / src / extension / internal / grid.h
1 /*
2  * Authors:
3  *   Ted Gould <ted@gould.cx>
4  *
5  * Copyright (C) 2004-2005 Authors
6  *
7  * Released under GNU GPL, read the file 'COPYING' for more information
8  */
10 #include "extension/implementation/implementation.h"
11 #include "extension/extension-forward.h"
13 namespace Inkscape {
14 namespace Extension {
15 namespace Internal {
17 /** \brief  Implementation class of the GIMP gradient plugin.  This mostly
18             just creates a namespace for the GIMP gradient plugin today.
19 */
20 class Grid : public Inkscape::Extension::Implementation::Implementation {
22 public:
23     bool load(Inkscape::Extension::Extension *module);
24     void effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View *document);
25     Gtk::Widget * prefs_effect(Inkscape::Extension::Effect *module, Inkscape::UI::View::View * view);
27     static void init (void);
28 };
30 }; /* namespace Internal */
31 }; /* namespace Extension */
32 }; /* namespace Inkscape */
34 /*
35   Local Variables:
36   mode:c++
37   c-file-style:"stroustrup"
38   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
39   indent-tabs-mode:nil
40   fill-column:99
41   End:
42 */
43 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :