From 31f41e23c5f4653263b564ad080649f10be055e5 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Wed, 10 Dec 2008 13:36:50 -0800 Subject: * Removing the bitmap files that aren't being used. * Removing the filter files that haven't been used. * Adding a small little script to pull the strings out of the filters.svg file and pull them into a header file so that they can be translated. * Fix generate_POTFILES.sh so that it warns that it'll probably break things * Update POTFILES.in so that it matches the files better. * Making a bunch of .svg files not executable. * Patching the effects code so that the sorting of the menus is correct and the first entry is not ignored. (bzr r6984) --- src/Makefile.am | 3 +- src/dom/Makefile_insert | 5 +- src/extension/effect.cpp | 3 +- src/extension/internal/Makefile_insert | 2 + src/extension/internal/bitmap/convolve.cpp | 67 ------------------------- src/extension/internal/bitmap/convolve.h | 29 ----------- src/extension/internal/filter/apparition.h | 44 ---------------- src/extension/internal/filter/bloom.h | 55 -------------------- src/extension/internal/filter/clouds.h | 46 ----------------- src/extension/internal/filter/crystal.h | 56 --------------------- src/extension/internal/filter/cutout.h | 44 ---------------- src/extension/internal/filter/emboss.h | 47 ----------------- src/extension/internal/filter/etched-glass.h | 44 ---------------- src/extension/internal/filter/fire.h | 54 -------------------- src/extension/internal/filter/frost.h | 50 ------------------ src/extension/internal/filter/ink-bleed.h | 47 ----------------- src/extension/internal/filter/jelly-bean.h | 47 ----------------- src/extension/internal/filter/jigsaw-piece.h | 47 ----------------- src/extension/internal/filter/leopard-fur.h | 61 ---------------------- src/extension/internal/filter/melt.h | 46 ----------------- src/extension/internal/filter/metal.h | 47 ----------------- src/extension/internal/filter/motion-blur.h | 42 ---------------- src/extension/internal/filter/oil-slick.h | 47 ----------------- src/extension/internal/filter/patterned-glass.h | 45 ----------------- src/extension/internal/filter/ridged-border.h | 49 ------------------ src/extension/internal/filter/ripple.h | 44 ---------------- src/extension/internal/filter/roughen.h | 43 ---------------- src/extension/internal/filter/rubber-stamp.h | 49 ------------------ src/extension/internal/filter/sepia.h | 42 ---------------- src/extension/internal/filter/speckle.h | 47 ----------------- src/extension/internal/filter/zebra.h | 45 ----------------- src/helper/Makefile_insert | 1 + 32 files changed, 9 insertions(+), 1289 deletions(-) delete mode 100644 src/extension/internal/bitmap/convolve.cpp delete mode 100644 src/extension/internal/bitmap/convolve.h delete mode 100644 src/extension/internal/filter/apparition.h delete mode 100644 src/extension/internal/filter/bloom.h delete mode 100644 src/extension/internal/filter/clouds.h delete mode 100644 src/extension/internal/filter/crystal.h delete mode 100644 src/extension/internal/filter/cutout.h delete mode 100644 src/extension/internal/filter/emboss.h delete mode 100644 src/extension/internal/filter/etched-glass.h delete mode 100644 src/extension/internal/filter/fire.h delete mode 100644 src/extension/internal/filter/frost.h delete mode 100644 src/extension/internal/filter/ink-bleed.h delete mode 100644 src/extension/internal/filter/jelly-bean.h delete mode 100644 src/extension/internal/filter/jigsaw-piece.h delete mode 100644 src/extension/internal/filter/leopard-fur.h delete mode 100644 src/extension/internal/filter/melt.h delete mode 100644 src/extension/internal/filter/metal.h delete mode 100644 src/extension/internal/filter/motion-blur.h delete mode 100644 src/extension/internal/filter/oil-slick.h delete mode 100644 src/extension/internal/filter/patterned-glass.h delete mode 100644 src/extension/internal/filter/ridged-border.h delete mode 100644 src/extension/internal/filter/ripple.h delete mode 100644 src/extension/internal/filter/roughen.h delete mode 100644 src/extension/internal/filter/rubber-stamp.h delete mode 100644 src/extension/internal/filter/sepia.h delete mode 100644 src/extension/internal/filter/speckle.h delete mode 100644 src/extension/internal/filter/zebra.h (limited to 'src') diff --git a/src/Makefile.am b/src/Makefile.am index 7272c7888..842c3eb45 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -135,14 +135,13 @@ DISTCLEANFILES = \ # Extra files not mentioned as sources to include in the source tarball EXTRA_DIST = \ - Doxyfile \ + $(top_srcdir)/Doxyfile \ sp-skeleton.cpp sp-skeleton.h \ algorithms/makefile.in \ application/makefile.in \ bind/makefile.in \ debug/makefile.in \ dialogs/makefile.in \ - dialogs/filedialog-win32.cpp \ display/makefile.in \ dom/makefile.in \ extension/implementation/makefile.in \ diff --git a/src/dom/Makefile_insert b/src/dom/Makefile_insert index 730ad798a..28edddcfa 100644 --- a/src/dom/Makefile_insert +++ b/src/dom/Makefile_insert @@ -10,13 +10,12 @@ dom_libdom_a_SOURCES = \ dom/cssreader.cpp \ dom/cssreader.h \ dom/dom.h \ - dom/domconfig.h \ dom/domimpl.cpp \ dom/domimpl.h \ dom/domptr.cpp \ + dom/domptr.h \ dom/domstring.cpp \ dom/domstring.h \ - dom/domstringimpl.h \ dom/events.h \ dom/ls.h \ dom/lsimpl.cpp \ @@ -28,6 +27,7 @@ dom_libdom_a_SOURCES = \ dom/smilimpl.cpp \ dom/smilimpl.h \ dom/stylesheets.h \ + dom/svg2.h \ dom/svg.h \ dom/svgimpl.cpp \ dom/svgimpl.h \ @@ -40,6 +40,7 @@ dom_libdom_a_SOURCES = \ dom/uri.cpp \ dom/uri.h \ dom/views.h \ + dom/views-level3.h \ dom/xmlreader.cpp \ dom/xmlreader.h \ dom/xpath.h \ diff --git a/src/extension/effect.cpp b/src/extension/effect.cpp index e6b1bf60b..5abcdbf79 100644 --- a/src/extension/effect.cpp +++ b/src/extension/effect.cpp @@ -135,12 +135,13 @@ Effect::merge_menu (Inkscape::XML::Node * base, if (start != NULL) { Inkscape::XML::Node * menupass; - for (menupass = start->next(); menupass != NULL; menupass = menupass->next()) { + for (menupass = start; menupass != NULL; menupass = menupass->next()) { gchar const * compare_char = NULL; if (!strcmp(menupass->name(), "verb")) { gchar const * verbid = menupass->attribute("verb-id"); Inkscape::Verb * verb = Inkscape::Verb::getbyid(verbid); if (verb == NULL) { + g_warning("Unable to find verb '%s' which is referred to in the menus.", verbid); continue; } compare_char = verb->get_name(); diff --git a/src/extension/internal/Makefile_insert b/src/extension/internal/Makefile_insert index ee431ee48..6620a1228 100644 --- a/src/extension/internal/Makefile_insert +++ b/src/extension/internal/Makefile_insert @@ -134,6 +134,8 @@ extension_internal_libinternal_a_SOURCES = \ extension/internal/filter/filter-file.cpp \ extension/internal/filter/filter.cpp \ extension/internal/filter/filter.h \ + extension/internal/filter/drop-shadow.h \ + extension/internal/filter/snow.h \ extension/internal/win32.h \ extension/internal/win32.cpp \ extension/internal/emf-win32-print.h \ diff --git a/src/extension/internal/bitmap/convolve.cpp b/src/extension/internal/bitmap/convolve.cpp deleted file mode 100644 index 2a27fc1ed..000000000 --- a/src/extension/internal/bitmap/convolve.cpp +++ /dev/null @@ -1,67 +0,0 @@ -/* - * Copyright (C) 2007 Authors: - * Christopher Brown - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#include "extension/effect.h" -#include "extension/system.h" - -#include "convolve.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Bitmap { - -void -Convolve::applyEffect(Magick::Image *image) { - image->convolve(_order, _kernel); -} - -void -Convolve::refreshParameters(Inkscape::Extension::Effect *module) { - _order = module->get_param_int("order"); - if (_order % 2 == 0) _order--; - _kernel = new double[_order]; - int i = 0; - - char *arrayStr = g_strdup(module->get_param_string("kernel")); - - char *num = strtok(arrayStr, ","); - while (num != NULL) - { - _kernel[i++] = atof(num); - - num = strtok(NULL, ","); - } -} - -#include "../clear-n_.h" - -void -Convolve::init(void) -{ - Inkscape::Extension::build_from_mem( - "\n" -// TRANSLATORS: see http://docs.gimp.org/en/gimp-tool-convolve.html - "" N_("Convolve") "\n" - "org.inkscape.effect.bitmap.convolve\n" - "4\n" - "1,1,0,0\n" - "\n" - "all\n" - "\n" - "\n" - "\n" - "" N_("Apply Convolve Effect") "\n" - "\n" - "\n", new Convolve()); -} - -}; /* namespace Bitmap */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ diff --git a/src/extension/internal/bitmap/convolve.h b/src/extension/internal/bitmap/convolve.h deleted file mode 100644 index 3cfdc7fd3..000000000 --- a/src/extension/internal/bitmap/convolve.h +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (C) 2007 Authors: - * Christopher Brown - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#include "imagemagick.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Bitmap { - -class Convolve : public ImageMagick { -private: - int _order; - double* _kernel; -public: - void applyEffect(Magick::Image *image); - void refreshParameters(Inkscape::Extension::Effect *module); - static void init (void); -}; - -}; /* namespace Bitmap */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ diff --git a/src/extension/internal/filter/apparition.h b/src/extension/internal/filter/apparition.h deleted file mode 100644 index b6f00add5..000000000 --- a/src/extension/internal/filter/apparition.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_APPARITION_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_APPARITION_H__ -/* Change the 'APPARITION' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Apparition : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("apparition", /* ID -- should be unique */ - N_("Apparition"), /* Name in the menus, should have a N_() around it for translation */ - N_("I'm not sure what this word means"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'APPARITION' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_APPARITION_H__ */ diff --git a/src/extension/internal/filter/bloom.h b/src/extension/internal/filter/bloom.h deleted file mode 100644 index f161edf2f..000000000 --- a/src/extension/internal/filter/bloom.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_BLOOM_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_BLOOM_H__ -/* Change the 'BLOOM' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Bloom : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("bloom", /* ID -- should be unique */ - N_("Bloom"), /* Name in the menus, should have a N_() around it for translation */ - N_("Not sure, nobody tell me these things"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'BLOOM' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_BLOOM_H__ */ diff --git a/src/extension/internal/filter/clouds.h b/src/extension/internal/filter/clouds.h deleted file mode 100644 index a057dd644..000000000 --- a/src/extension/internal/filter/clouds.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_CLOUDS_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_CLOUDS_H__ -/* Change the 'CLOUDS' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Clouds : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("clouds", /* ID -- should be unique */ - N_("Clouds"), /* Name in the menus, should have a N_() around it for translation */ - N_("Yes, more descriptions"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'CLOUDS' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_CLOUDS_H__ */ diff --git a/src/extension/internal/filter/crystal.h b/src/extension/internal/filter/crystal.h deleted file mode 100644 index 05922a23a..000000000 --- a/src/extension/internal/filter/crystal.h +++ /dev/null @@ -1,56 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_CRYSTAL_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_CRYSTAL_H__ -/* Change the 'CRYSTAL' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Crystal : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("crystal", /* ID -- should be unique */ - N_("Crystal"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist, insert data here"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'CRYSTAL' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_CRYSTAL_H__ */ diff --git a/src/extension/internal/filter/cutout.h b/src/extension/internal/filter/cutout.h deleted file mode 100644 index 897692d03..000000000 --- a/src/extension/internal/filter/cutout.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_CUTOUT_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_CUTOUT_H__ -/* Change the 'CUTOUT' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Cutout : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("cutout", /* ID -- should be unique */ - N_("Cutout"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist text"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'CUTOUT' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_CUTOUT_H__ */ diff --git a/src/extension/internal/filter/emboss.h b/src/extension/internal/filter/emboss.h deleted file mode 100644 index ec4722449..000000000 --- a/src/extension/internal/filter/emboss.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_EMBOSS_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_EMBOSS_H__ -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * Filter designed by Chrisdesign (http://chrisdesign.wordpress.com/filter-effects/) - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Emboss : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("emboss", /* ID -- should be unique */ - N_("Emboss"), /* Name in the menus, should have a N_() around it for translation */ - N_("Emboss effect"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_EMBOSS_H__ */ diff --git a/src/extension/internal/filter/etched-glass.h b/src/extension/internal/filter/etched-glass.h deleted file mode 100644 index a28804286..000000000 --- a/src/extension/internal/filter/etched-glass.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_ETCHED_GLASS_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_ETCHED_GLASS_H__ -/* Change the 'ETCHED_GLASS' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class EtchedGlass : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("etched-glass", /* ID -- should be unique */ - N_("Etched Glass"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist text"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'ETCHED_GLASS' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_ETCHED_GLASS_H__ */ diff --git a/src/extension/internal/filter/fire.h b/src/extension/internal/filter/fire.h deleted file mode 100644 index 7816f19bb..000000000 --- a/src/extension/internal/filter/fire.h +++ /dev/null @@ -1,54 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_FIRE_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_FIRE_H__ -/* Change the 'FIRE' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Fire : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("fire", /* ID -- should be unique */ - N_("Fire"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist on fire"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'FIRE' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_FIRE_H__ */ diff --git a/src/extension/internal/filter/frost.h b/src/extension/internal/filter/frost.h deleted file mode 100644 index 9c5dcb25a..000000000 --- a/src/extension/internal/filter/frost.h +++ /dev/null @@ -1,50 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_FROST_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_FROST_H__ -/* Change the 'FROST' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Frost : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("frost", /* ID -- should be unique */ - N_("Frost"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist text"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'FROST' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_FROST_H__ */ diff --git a/src/extension/internal/filter/ink-bleed.h b/src/extension/internal/filter/ink-bleed.h deleted file mode 100644 index 6168b38e7..000000000 --- a/src/extension/internal/filter/ink-bleed.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_INK_BLEED_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_INK_BLEED_H__ -/* Change the 'INK_BLEED' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class InkBleed : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("ink-bleed", /* ID -- should be unique */ - N_("InkBleed"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist Text"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'INK_BLEED' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_INK_BLEED_H__ */ diff --git a/src/extension/internal/filter/jelly-bean.h b/src/extension/internal/filter/jelly-bean.h deleted file mode 100644 index d063ac900..000000000 --- a/src/extension/internal/filter/jelly-bean.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_JELLY_BEAN_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_JELLY_BEAN_H__ -/* Change the 'JELLY_BEAN' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class JellyBean : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("jelly-bean", /* ID -- should be unique */ - N_("Jelly Bean"), /* Name in the menus, should have a N_() around it for translation */ - N_("Mmmm, yummy."), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'JELLY_BEAN' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_JELLY_BEAN_H__ */ diff --git a/src/extension/internal/filter/jigsaw-piece.h b/src/extension/internal/filter/jigsaw-piece.h deleted file mode 100644 index 654c1e051..000000000 --- a/src/extension/internal/filter/jigsaw-piece.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_JIGSAW_PIECE_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_JIGSAW_PIECE_H__ -/* Change the 'JIGSAW_PIECE' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class JigsawPiece : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("jigsaw-piece", /* ID -- should be unique */ - N_("JigsawPiece"), /* Name in the menus, should have a N_() around it for translation */ - N_("It's a puzzle, no hints"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'JIGSAW_PIECE' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_JIGSAW_PIECE_H__ */ diff --git a/src/extension/internal/filter/leopard-fur.h b/src/extension/internal/filter/leopard-fur.h deleted file mode 100644 index 7e160c0a2..000000000 --- a/src/extension/internal/filter/leopard-fur.h +++ /dev/null @@ -1,61 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_LEOPARD_FUR_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_LEOPARD_FUR_H__ -/* Change the 'LEOPARD_FUR' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class LeopardFur : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("leopard-fur", /* ID -- should be unique */ - N_("Leopard Fur"), /* Name in the menus, should have a N_() around it for translation */ - N_("Purrrr, quiet the kitty is sleeping"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'LEOPARD_FUR' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_LEOPARD_FUR_H__ */ diff --git a/src/extension/internal/filter/melt.h b/src/extension/internal/filter/melt.h deleted file mode 100644 index d6372c13f..000000000 --- a/src/extension/internal/filter/melt.h +++ /dev/null @@ -1,46 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_MELT_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_MELT_H__ -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * Filter designed by Chrisdesign (http://chrisdesign.wordpress.com/filter-effects/) - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Melt : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("melt", /* ID -- should be unique */ - N_("Melt"), /* Name in the menus, should have a N_() around it for translation */ - N_("Melt effect"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_MELT_H__ */ diff --git a/src/extension/internal/filter/metal.h b/src/extension/internal/filter/metal.h deleted file mode 100644 index b0d41a1af..000000000 --- a/src/extension/internal/filter/metal.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_METAL_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_METAL_H__ -/* Change the 'METAL' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Metal : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("metal", /* ID -- should be unique */ - N_("Metal"), /* Name in the menus, should have a N_() around it for translation */ - N_("Iron Man vector objects"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'METAL' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_METAL_H__ */ diff --git a/src/extension/internal/filter/motion-blur.h b/src/extension/internal/filter/motion-blur.h deleted file mode 100644 index 85a5df4b8..000000000 --- a/src/extension/internal/filter/motion-blur.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_MOTION_BLUR_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_MOTION_BLUR_H__ -/* Change the 'MOTION_BLUR' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class MotionBlur : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("motion-blur", /* ID -- should be unique */ - N_("Motion Blur"), /* Name in the menus, should have a N_() around it for translation */ - N_("Hmm, fast vectors"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'MOTION_BLUR' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_MOTION_BLUR_H__ */ diff --git a/src/extension/internal/filter/oil-slick.h b/src/extension/internal/filter/oil-slick.h deleted file mode 100644 index cc24aca07..000000000 --- a/src/extension/internal/filter/oil-slick.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_OIL_SLICK_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_OIL_SLICK_H__ -/* Change the 'OIL_SLICK' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class OilSlick : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("oil-slick", /* ID -- should be unique */ - N_("OilSlick"), /* Name in the menus, should have a N_() around it for translation */ - N_("Ooops! Slippery!"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'OIL_SLICK' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_OIL_SLICK_H__ */ diff --git a/src/extension/internal/filter/patterned-glass.h b/src/extension/internal/filter/patterned-glass.h deleted file mode 100644 index 0ded94a81..000000000 --- a/src/extension/internal/filter/patterned-glass.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_PATTERNED_GLASS_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_PATTERNED_GLASS_H__ -/* Change the 'PATTERNED_GLASS' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class PatternedGlass : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("patterned-glass", /* ID -- should be unique */ - N_("PatternedGlass"), /* Name in the menus, should have a N_() around it for translation */ - N_("Doesn't work, bug"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'PATTERNED_GLASS' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_PATTERNED_GLASS_H__ */ diff --git a/src/extension/internal/filter/ridged-border.h b/src/extension/internal/filter/ridged-border.h deleted file mode 100644 index 855f36b36..000000000 --- a/src/extension/internal/filter/ridged-border.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_RIDGED_BORDER_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_RIDGED_BORDER_H__ -/* Change the 'RIDGED_BORDER' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class RidgedBorder : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("ridged-border", /* ID -- should be unique */ - N_("Ridged Border"), /* Name in the menus, should have a N_() around it for translation */ - N_("Artist text"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'RIDGED_BORDER' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_RIDGED_BORDER_H__ */ diff --git a/src/extension/internal/filter/ripple.h b/src/extension/internal/filter/ripple.h deleted file mode 100644 index 39bef1e0f..000000000 --- a/src/extension/internal/filter/ripple.h +++ /dev/null @@ -1,44 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_RIPPLE_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_RIPPLE_H__ -/* Change the 'RIPPLE' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Ripple : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("ripple", /* ID -- should be unique */ - N_("Ripple"), /* Name in the menus, should have a N_() around it for translation */ - N_("You're 80% water"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'RIPPLE' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_RIPPLE_H__ */ diff --git a/src/extension/internal/filter/roughen.h b/src/extension/internal/filter/roughen.h deleted file mode 100644 index 421c2e60c..000000000 --- a/src/extension/internal/filter/roughen.h +++ /dev/null @@ -1,43 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_ROUGHEN_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_ROUGHEN_H__ -/* Change the 'ROUGHEN' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Roughen : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("roughen", /* ID -- should be unique */ - N_("Roughen"), /* Name in the menus, should have a N_() around it for translation */ - N_("Like Brad Pitt's stubble"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'ROUGHEN' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_ROUGHEN_H__ */ diff --git a/src/extension/internal/filter/rubber-stamp.h b/src/extension/internal/filter/rubber-stamp.h deleted file mode 100644 index 429beb618..000000000 --- a/src/extension/internal/filter/rubber-stamp.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_RUBBER_STAMP_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_RUBBER_STAMP_H__ -/* Change the 'RUBBER_STAMP' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class RubberStamp : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("rubber-stamp", /* ID -- should be unique */ - N_("RubberStamp"), /* Name in the menus, should have a N_() around it for translation */ - N_("Use this to forge your passport"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'RUBBER_STAMP' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_RUBBER_STAMP_H__ */ diff --git a/src/extension/internal/filter/sepia.h b/src/extension/internal/filter/sepia.h deleted file mode 100644 index 1472bb543..000000000 --- a/src/extension/internal/filter/sepia.h +++ /dev/null @@ -1,42 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_SEPIA_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_SEPIA_H__ -/* Change the 'SEPIA' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Sepia : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("sepia", /* ID -- should be unique */ - N_("Sepia"), /* Name in the menus, should have a N_() around it for translation */ - N_("Turn all the colors to be sepia tones"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'SEPIA' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_SEPIA_H__ */ diff --git a/src/extension/internal/filter/speckle.h b/src/extension/internal/filter/speckle.h deleted file mode 100644 index b0a9733e2..000000000 --- a/src/extension/internal/filter/speckle.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_SPECKLE_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_SPECKLE_H__ -/* Change the 'SPECKLE' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Speckle : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("speckle", /* ID -- should be unique */ - N_("Speckle"), /* Name in the menus, should have a N_() around it for translation */ - N_("You look cute with speckles"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'SPECKLE' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_SPECKLE_H__ */ diff --git a/src/extension/internal/filter/zebra.h b/src/extension/internal/filter/zebra.h deleted file mode 100644 index 0292808e4..000000000 --- a/src/extension/internal/filter/zebra.h +++ /dev/null @@ -1,45 +0,0 @@ -#ifndef __INKSCAPE_EXTENSION_INTERNAL_FILTER_ZEBRA_H__ -#define __INKSCAPE_EXTENSION_INTERNAL_FILTER_ZEBRA_H__ -/* Change the 'ZEBRA' above to be your file name */ - -/* - * Copyright (C) 2008 Authors: - * Ted Gould - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ -/* ^^^ Change the copyright to be you and your e-mail address ^^^ */ - -#include "filter.h" - -namespace Inkscape { -namespace Extension { -namespace Internal { -namespace Filter { - -class Zebra : public Inkscape::Extension::Internal::Filter::Filter { -public: - static void init (void) { - filter_init("zebra", /* ID -- should be unique */ - N_("Zebra Stripes"), /* Name in the menus, should have a N_() around it for translation */ - N_("Paint your object with zebra stripes"), - /* Menu tooltip to help users understand the name. Should also have a N_() */ - "\n" - "\n" - "\n" - "\n" - "\n" - "\n"); - /* The XML of the filter that should be added. There - * should be a surrounding what you'd like - * to be added with this effect. */ - }; -}; - -}; /* namespace Filter */ -}; /* namespace Internal */ -}; /* namespace Extension */ -}; /* namespace Inkscape */ - -/* Change the 'ZEBRA' below to be your file name */ -#endif /* __INKSCAPE_EXTENSION_INTERNAL_FILTER_ZEBRA_H__ */ diff --git a/src/helper/Makefile_insert b/src/helper/Makefile_insert index 73cc3d5ee..1801d0ea1 100644 --- a/src/helper/Makefile_insert +++ b/src/helper/Makefile_insert @@ -26,6 +26,7 @@ helper_libspchelp_a_SOURCES = \ helper/helper-forward.h \ helper/png-write.cpp \ helper/png-write.h \ + helper/recthull.h \ helper/sp-marshal.cpp \ helper/sp-marshal.h \ helper/stlport.h \ -- cgit v1.2.3