]> git.sesse.net Git - kdenlive/blob - src/projecttree/abstractclipjob.cpp
Some improvements in clip jobs
[kdenlive] / src / projecttree / abstractclipjob.cpp
1 /***************************************************************************
2  *                                                                         *
3  *   Copyright (C) 2011 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
19  ***************************************************************************/
20
21 #include "abstractclipjob.h"
22 #include "kdenlivesettings.h"
23 #include "kdenlivedoc.h"
24
25 #include <KDebug>
26 #include <KLocale>
27
28
29 AbstractClipJob::AbstractClipJob(JOBTYPE type, CLIPTYPE cType, const QString &id, QStringList) :
30         QObject(),
31         clipType(cType),
32         jobType(type),
33         jobStatus(NOJOB),
34         m_clipId(id),
35         m_jobProcess(NULL)
36 {
37 }
38
39 AbstractClipJob::~AbstractClipJob()
40 {
41 }
42
43 void AbstractClipJob::setStatus(CLIPJOBSTATUS status)
44 {
45     jobStatus = status;
46 }
47
48 const QString AbstractClipJob::clipId() const
49 {
50     return m_clipId;
51 }
52
53 const QString AbstractClipJob::errorMessage() const
54 {
55     return m_errorMessage;
56 }
57
58 QProcess *AbstractClipJob::startJob(bool */*ok*/)
59 {
60     return NULL;
61 }
62
63 const QString AbstractClipJob::destination() const
64 {
65     return QString();
66 }
67
68 stringMap AbstractClipJob::cancelProperties()
69 {
70     return QMap <QString, QString>();
71 }
72
73 int AbstractClipJob::processLogInfo()
74 {
75     return -1;
76 }
77
78 const QString AbstractClipJob::statusMessage()
79 {
80     return QString();
81 }
82
83