~ubuntu-branches/ubuntu/precise/gwenview/precise-proposed

« back to all changes in this revision

Viewing changes to lib/redeyereduction/redeyereductionimageoperation.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:54 UTC
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20111215141754-z043hyx69dulbggf
Tags: upstream-4.7.90
Import upstream version 4.7.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// vim: set tabstop=4 shiftwidth=4 noexpandtab:
 
1
// vim: set tabstop=4 shiftwidth=4 expandtab:
2
2
/*
3
3
Gwenview: an image viewer
4
4
Copyright 2007 Aurélien Gâteau <agateau@kde.org>
32
32
 
33
33
class QRectF;
34
34
 
35
 
namespace Gwenview {
36
 
 
 
35
namespace Gwenview
 
36
{
37
37
 
38
38
struct RedEyeReductionImageOperationPrivate;
39
 
class GWENVIEWLIB_EXPORT RedEyeReductionImageOperation : public AbstractImageOperation {
 
39
class GWENVIEWLIB_EXPORT RedEyeReductionImageOperation : public AbstractImageOperation
 
40
{
40
41
public:
41
 
        RedEyeReductionImageOperation(const QRectF&);
42
 
        ~RedEyeReductionImageOperation();
43
 
 
44
 
        virtual void redo();
45
 
        virtual void undo();
46
 
 
47
 
        static void apply(QImage* img, const QRectF& rectF);
 
42
    RedEyeReductionImageOperation(const QRectF&);
 
43
    ~RedEyeReductionImageOperation();
 
44
 
 
45
    virtual void redo();
 
46
    virtual void undo();
 
47
 
 
48
    static void apply(QImage* img, const QRectF& rectF);
48
49
 
49
50
private:
50
 
        RedEyeReductionImageOperationPrivate* const d;
 
51
    RedEyeReductionImageOperationPrivate* const d;
51
52
};
52
53
 
53
 
 
54
54
} // namespace
55
55
 
56
56
#endif /* REDEYEREDUCTIONIMAGEOPERATION_H */