~ubuntu-branches/ubuntu/trusty/digikam/trusty

« back to all changes in this revision

Viewing changes to core/imageplugins/enhance/antivignettingtool.h

  • Committer: Package Import Robot
  • Author(s): Mark Purcell
  • Date: 2012-09-27 21:41:30 UTC
  • mfrom: (1.2.43)
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: package-import@ubuntu.com-20120927214130-i8v3ufr21nesp29i
Tags: 4:3.0.0~beta1a-1
* New upstream release

* Fix "wrongly conflicts phonon-backend-vlc" dropped (Closes: #688142)
* debian/watch include download.kde.org

* digikam 3.0.0 uses features from unreleased kdegraphics >=4.10 & ships 
a private version of the kdegraphics libs - this is not the Debian way :-(
* Unsatisfactory Conflicts: libkipi8, libkexiv2-10, libkdcraw20, libksane0
* Suspend digikam-dbg >130Mb

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 * Description : a digiKam image plugin to reduce
8
8
 *               vignetting on an image.
9
9
 *
10
 
 * Copyright (C) 2005-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 * Copyright (C) 2005-2012 by Gilles Caulier <caulier dot gilles at gmail dot com>
11
11
 *
12
12
 * This program is free software; you can redistribute it
13
13
 * and/or modify it under the terms of the GNU General
40
40
 
41
41
public:
42
42
 
43
 
    AntiVignettingTool(QObject* parent);
 
43
    AntiVignettingTool(QObject* const parent);
44
44
    ~AntiVignettingTool();
45
45
 
46
46
private Q_SLOTS:
51
51
 
52
52
    void writeSettings();
53
53
    void readSettings();
54
 
    void prepareEffect();
 
54
    void preparePreview();
55
55
    void prepareFinal();
56
 
    void putPreviewData();
57
 
    void putFinalData();
 
56
    void setPreviewImage();
 
57
    void setFinalImage();
58
58
 
59
59
private:
60
60
 
61
 
    class AntiVignettingToolPriv;
62
 
    AntiVignettingToolPriv* const d;
 
61
    class Private;
 
62
    Private* const d;
63
63
};
64
64
 
65
65
}  // namespace DigikamEnhanceImagePlugin