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

« back to all changes in this revision

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