]> git.sesse.net Git - kdenlive/blob - src/projecttree/abstractclipjob.cpp
1956430a07561e8c36e32eeac13b2d9b100767dd
[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 <KLocalizedString>
27
28
29 AbstractClipJob::AbstractClipJob(JOBTYPE type, CLIPTYPE cType, const QString &id, const QStringList &) :
30         QObject(),
31         clipType(cType),
32         jobType(type),
33         replaceClip(false),
34         m_jobStatus(NOJOB),
35         m_clipId(id),
36         m_addClipToProject(false),
37         m_jobProcess(NULL)
38 {
39 }
40
41 AbstractClipJob::~AbstractClipJob()
42 {
43 }
44
45
46 bool AbstractClipJob::addClipToProject() const
47 {
48     return m_addClipToProject;
49 }
50
51 void AbstractClipJob::setAddClipToProject(bool add)
52 {
53     m_addClipToProject = add;
54 }
55
56 void AbstractClipJob::setStatus(CLIPJOBSTATUS status)
57 {
58     m_jobStatus = status;
59 }
60
61 CLIPJOBSTATUS AbstractClipJob::status()
62 {
63     return m_jobStatus;
64 }
65
66 const QString AbstractClipJob::clipId() const
67 {
68     return m_clipId;
69 }
70
71 const QString AbstractClipJob::errorMessage() const
72 {
73     return m_errorMessage;
74 }
75
76 const QString AbstractClipJob::logDetails() const
77 {
78     return m_logDetails;
79 }
80
81 void AbstractClipJob::startJob()
82 {
83 }
84
85 const QString AbstractClipJob::destination() const
86 {
87     return QString();
88 }
89
90 stringMap AbstractClipJob::cancelProperties()
91 {
92     return QMap <QString, QString>();
93 }
94
95 void AbstractClipJob::processLogInfo()
96 {
97 }
98
99 const QString AbstractClipJob::statusMessage()
100 {
101     return QString();
102 }
103
104 bool AbstractClipJob::isExclusive()
105 {
106     return true;
107 }
108
109
110
111 #include "abstractclipjob.moc"