~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to imageplugins/enhance/lensautofixtool.h

  • Committer: Package Import Robot
  • Author(s): Felix Geyer, Rohan Garg, Philip Muškovac, Felix Geyer
  • Date: 2011-09-23 18:18:55 UTC
  • mfrom: (1.2.36 upstream)
  • Revision ID: package-import@ubuntu.com-20110923181855-ifs67wxkugshev9k
Tags: 2:2.1.1-0ubuntu1
[ Rohan Garg ]
* New upstream release (LP: #834190)
  - debian/control
    + Build with libqtwebkit-dev
 - debian/kipi-plugins-common
    + Install libkvkontakte required by kipi-plugins
 - debian/digikam
    + Install panoramagui

[ Philip Muškovac ]
* New upstream release
  - debian/control:
    + Add libcv-dev, libcvaux-dev, libhighgui-dev, libboost-graph1.46-dev,
      libksane-dev, libxml2-dev, libxslt-dev, libqt4-opengl-dev, libqjson-dev,
      libgpod-dev and libqca2-dev to build-deps
    + Add packages for kipi-plugins, libmediawiki, libkface, libkgeomap and
      libkvkontakte
  - debian/rules:
    + Don't build with gphoto2 since it doesn't build with it.
  - Add kubuntu_fix_test_linking.diff to fix linking of the dngconverter test
  - update install files
  - update kubuntu_01_mysqld_executable_name.diff for new cmake layout
    and rename to kubuntu_mysqld_executable_name.diff
* Fix typo in digikam-data description (LP: #804894)
* Fix Vcs links

[ Felix Geyer ]
* Move library data files to the new packages libkface-data, libkgeomap-data
  and libkvkontakte-data.
* Override version of the embedded library packages to 1.0~digikam<version>.
* Exclude the library packages from digikam-dbg to prevent file conflicts in
  the future.
* Call dh_install with --list-missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* ============================================================
2
 
 *
3
 
 * Date        : 2008-02-10
4
 
 * Description : a plugin to fix automatically camera lens aberrations
5
 
 *
6
 
 * Copyright (C) 2008 by Adrian Schroeter <adrian at suse dot de>
7
 
 * Copyright (C) 2008-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
8
 
 *
9
 
 * This program is free software; you can redistribute it
10
 
 * and/or modify it under the terms of the GNU General
11
 
 * Public License as published by the Free Software Foundation;
12
 
 * either version 2, or (at your option)
13
 
 * any later version.
14
 
 *
15
 
 * This program is distributed in the hope that it will be useful,
16
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 * GNU General Public License for more details.
19
 
 *
20
 
 * ============================================================ */
21
 
 
22
 
#ifndef LENSAUTOFIXTOOL_H
23
 
#define LENSAUTOFIXTOOL_H
24
 
 
25
 
// Local includes
26
 
 
27
 
#include "editortool.h"
28
 
 
29
 
using namespace Digikam;
30
 
 
31
 
namespace DigikamEnhanceImagePlugin
32
 
{
33
 
 
34
 
class LensAutoFixTool : public EditorToolThreaded
35
 
{
36
 
    Q_OBJECT
37
 
 
38
 
public:
39
 
 
40
 
    LensAutoFixTool(QObject* parent);
41
 
    ~LensAutoFixTool();
42
 
 
43
 
private Q_SLOTS:
44
 
 
45
 
    void slotLensChanged();
46
 
    void slotResetSettings();
47
 
 
48
 
private:
49
 
 
50
 
    void readSettings();
51
 
    void writeSettings();
52
 
    void prepareEffect();
53
 
    void prepareFinal();
54
 
    void putPreviewData();
55
 
    void putFinalData();
56
 
 
57
 
private:
58
 
 
59
 
    class LensAutoFixToolPriv;
60
 
    LensAutoFixToolPriv* const d;
61
 
};
62
 
 
63
 
}  // namespace DigikamEnhanceImagePlugin
64
 
 
65
 
#endif /* LENSAUTOFIXTOOL_H */