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

« back to all changes in this revision

Viewing changes to utilities/queuemanager/basetools/enhance/lensautofix.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-24 00:20:43 UTC
  • mfrom: (1.2.31 upstream)
  • Revision ID: james.westby@ubuntu.com-20101024002043-y7y9fg4rvxy0obcc
Tags: 2:1.5.0-0ubuntu1
* New upstream release
  - Bump build-dependencies
  - Build against libkipi-dev 1.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ============================================================
 
2
 *
 
3
 * This file is a part of digiKam project
 
4
 * http://www.digikam.org
 
5
 *
 
6
 * Date        : 2010-09-18
 
7
 * Description : lens auto-fix batch tool.
 
8
 *
 
9
 * Copyright (C) 2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
 
10
 *
 
11
 * This program is free software; you can redistribute it
 
12
 * and/or modify it under the terms of the GNU General
 
13
 * Public License as published by the Free Software Foundation;
 
14
 * either version 2, or (at your option)
 
15
 * any later version.
 
16
 *
 
17
 * This program is distributed in the hope that it will be useful,
 
18
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
19
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
20
 * GNU General Public License for more details.
 
21
 *
 
22
 * ============================================================ */
 
23
 
 
24
#ifndef LENS_AUTO_FIX_H_
 
25
#define LENS_AUTO_FIX_H_
 
26
 
 
27
#include "batchtool.h"
 
28
 
 
29
namespace Digikam
 
30
{
 
31
 
 
32
class LensAutoFix : public BatchTool
 
33
{
 
34
    Q_OBJECT
 
35
 
 
36
public:
 
37
 
 
38
    LensAutoFix(QObject* parent=0);
 
39
    ~LensAutoFix();
 
40
 
 
41
    BatchToolSettings defaultSettings();
 
42
 
 
43
private:
 
44
 
 
45
    bool toolOperations();
 
46
 
 
47
private Q_SLOTS:
 
48
 
 
49
    void slotAssignSettings2Widget();
 
50
    void slotSettingsChanged();
 
51
 
 
52
private:
 
53
 
 
54
    class LensAutoFixPriv;
 
55
    LensAutoFixPriv* const d;
 
56
};
 
57
 
 
58
} // namespace Digikam
 
59
 
 
60
#endif /* LENS_AUTO_FIX_H_ */