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

« back to all changes in this revision

Viewing changes to imageplugins/infrared/imageplugin_infrared.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        : 2005-02-22
7
 
 * Description : a digiKam image editor plugin for simulate
8
 
 *               infrared film.
9
 
 *
10
 
 * Copyright (C) 2005-2010 by Gilles Caulier <caulier dot gilles at gmail dot com>
11
 
 *
12
 
 * This program is free software; you can redistribute it
13
 
 * and/or modify it under the terms of the GNU General
14
 
 * Public License as published by the Free Software Foundation;
15
 
 * either version 2, or (at your option)
16
 
 * any later version.
17
 
 *
18
 
 * This program is distributed in the hope that it will be useful,
19
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 
 * GNU General Public License for more details.
22
 
 *
23
 
 * ============================================================ */
24
 
 
25
 
#ifndef IMAGEPLUGIN_INFRARED_H
26
 
#define IMAGEPLUGIN_INFRARED_H
27
 
 
28
 
// Qt includes
29
 
 
30
 
#include <QVariant>
31
 
 
32
 
// Local includes
33
 
 
34
 
#include "imageplugin.h"
35
 
#include "digikam_export.h"
36
 
 
37
 
class KAction;
38
 
 
39
 
class ImagePlugin_Infrared : public Digikam::ImagePlugin
40
 
{
41
 
    Q_OBJECT
42
 
 
43
 
public:
44
 
 
45
 
    ImagePlugin_Infrared(QObject *parent, const QVariantList& args);
46
 
    ~ImagePlugin_Infrared();
47
 
 
48
 
    void setEnabledActions(bool enable);
49
 
 
50
 
private Q_SLOTS:
51
 
 
52
 
    void slotInfrared();
53
 
 
54
 
private:
55
 
 
56
 
    KAction* m_infraredAction;
57
 
};
58
 
 
59
 
#endif /* IMAGEPLUGIN_INFRARED_H */