digiKam
dngconverteractions.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of kipi-plugins project
4  * https://www.digikam.org
5  *
6  * Date : 2006-09-24
7  * Description : DNG converter plugin action descriptions
8  *
9  * Copyright (C) 2008-2013 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) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU General Public License for more details.
20  *
21  * ============================================================ */
22 
23 #ifndef DIGIKAM_DNG_CONVERTER_ACTIONS_H
24 #define DIGIKAM_DNG_CONVERTER_ACTIONS_H
25 
26 // Qt includes
27 
28 #include <QString>
29 #include <QImage>
30 #include <QMetaType>
31 #include <QUrl>
32 
33 // Local includes
34 
35 #include "dngwriter.h"
36 
37 using namespace Digikam;
38 
40 {
41 
43 {
44  NONE = 0,
46  PROCESS
47 };
48 
50 {
51 
52 public:
53 
55  : starting(false),
56  result (DNGWriter::PROCESS_COMPLETE),
57  action (NONE)
58  {
59  }
60 
61  bool starting;
62  int result;
63 
64  QString destPath;
65  QString message;
66 
67  QImage image;
68 
69  QUrl fileUrl;
70 
72 };
73 
74 } // namespace DigikamGenericDNGConverterPlugin
75 
77 
78 #endif
DNGConverterAction action
Definition: dngconverteractions.h:71
QUrl fileUrl
Definition: dngconverteractions.h:69
QImage image
Definition: dngconverteractions.h:67
QString message
Definition: dngconverteractions.h:65
int result
Definition: dngconverteractions.h:62
DNGConverterActionData()
Definition: dngconverteractions.h:54
QString destPath
Definition: dngconverteractions.h:64
bool starting
Definition: dngconverteractions.h:61
Definition: dngwriter.h:40
Definition: dngconverteractions.h:40
DNGConverterAction
Definition: dngconverteractions.h:43
@ NONE
Definition: dngconverteractions.h:44
@ IDENTIFY
Definition: dngconverteractions.h:45
@ PROCESS
Definition: dngconverteractions.h:46
Definition: datefolderview.cpp:43