~ubuntu-branches/ubuntu/oneiric/inkscape/oneiric-updates

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/extension/internal/bitmap/oilPaint.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 */
 
8
 
 
9
#include "imagemagick.h"
 
10
 
 
11
namespace Inkscape {
 
12
namespace Extension {
 
13
namespace Internal {
 
14
namespace Bitmap {
 
15
 
 
16
class OilPaint : public ImageMagick
 
17
{
 
18
private:
 
19
        float _radius;
 
20
public:
 
21
        void applyEffect(Magick::Image *image);
 
22
        void refreshParameters(Inkscape::Extension::Effect *module);
 
23
        static void init(void);
 
24
};
 
25
 
 
26
}; /* namespace Bitmap */
 
27
}; /* namespace Internal */
 
28
}; /* namespace Extension */
 
29
}; /* namespace Inkscape */