summaryrefslogtreecommitdiffstats
path: root/src/extension/internal/bitmap/flop.cpp
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2007-09-19 05:51:51 +0000
committergouldtj <gouldtj@users.sourceforge.net>2007-09-19 05:51:51 +0000
commit7f37fd5c3a36a3932c33ed4cf1b88b44f2e58bef (patch)
tree39010abeba82af91910208dceb6bda1b3fe0b79f /src/extension/internal/bitmap/flop.cpp
parentMove more dialog event handling into Dialog class, work in progress on (diff)
downloadinkscape-7f37fd5c3a36a3932c33ed4cf1b88b44f2e58bef.tar.gz
inkscape-7f37fd5c3a36a3932c33ed4cf1b88b44f2e58bef.zip
r16593@tres: ted | 2007-09-18 09:16:31 -0700
Commenting out convolve completely and removing flop. (bzr r3768)
Diffstat (limited to 'src/extension/internal/bitmap/flop.cpp')
-rw-r--r--src/extension/internal/bitmap/flop.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/extension/internal/bitmap/flop.cpp b/src/extension/internal/bitmap/flop.cpp
deleted file mode 100644
index ef5d41d49..000000000
--- a/src/extension/internal/bitmap/flop.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * Copyright (C) 2007 Authors:
- * Christopher Brown <audiere@gmail.com>
- * Ted Gould <ted@gould.cx>
- *
- * Released under GNU GPL, read the file 'COPYING' for more information
- */
-
-#include "extension/effect.h"
-#include "extension/system.h"
-
-#include "flop.h"
-
-namespace Inkscape {
-namespace Extension {
-namespace Internal {
-namespace Bitmap {
-
-void
-Flop::applyEffect(Magick::Image *image) {
- image->flop();
-}
-
-void
-Flop::refreshParameters(Inkscape::Extension::Effect *module) { }
-
-#include "../clear-n_.h"
-
-void
-Flop::init(void)
-{
- Inkscape::Extension::build_from_mem(
- "<inkscape-extension>\n"
- "<name>" N_("Flop") "</name>\n"
- "<id>org.inkscape.effect.bitmap.flop</id>\n"
- "<effect>\n"
- "<object-type>all</object-type>\n"
- "<effects-menu>\n"
- "<submenu name=\"" N_("Raster") "\" />\n"
- "</effects-menu>\n"
- "<menu-tip>" N_("Flop selected bitmap(s) -- reflect each scanline in the horizontal direction.") "</menu-tip>\n"
- "</effect>\n"
- "</inkscape-extension>\n", new Flop());
-}
-
-}; /* namespace Bitmap */
-}; /* namespace Internal */
-}; /* namespace Extension */
-}; /* namespace Inkscape */