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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2010-04-09 21:30:01 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100409213001-4bfyibrd359rn7o3
Tags: 2:1.2.0-0ubuntu1
* New upstream release (LP: #560576)
* Remove all patches, fixed upstream
  - Remove quilt build-depend

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-05-03
 
7
 * Description : blur image 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 BLUR_H_
 
25
#define BLUR_H_
 
26
 
 
27
#include "batchtool.h"
 
28
 
 
29
// LibKDcraw includes
 
30
 
 
31
#include <libkdcraw/rnuminput.h>
 
32
 
 
33
using namespace KDcrawIface;
 
34
 
 
35
namespace Digikam
 
36
{
 
37
 
 
38
class Blur : public BatchTool
 
39
{
 
40
    Q_OBJECT
 
41
 
 
42
public:
 
43
 
 
44
    Blur(QObject* parent=0);
 
45
    ~Blur();
 
46
 
 
47
    BatchToolSettings defaultSettings();
 
48
 
 
49
private:
 
50
 
 
51
    bool toolOperations();
 
52
 
 
53
private Q_SLOTS:
 
54
 
 
55
    void slotAssignSettings2Widget();
 
56
    void slotSettingsChanged();
 
57
 
 
58
private:
 
59
 
 
60
    RDoubleNumInput* m_radiusInput;
 
61
};
 
62
 
 
63
} // namespace Digikam
 
64
 
 
65
#endif /* BLUR_H_ */