]> git.sesse.net Git - kdenlive/blob - src/projecttree/abstractclipjob.cpp
* Fix missing proxy not re-created on project opening
[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         addClipToProject(false),
36         replaceClip(false),
37         m_jobProcess(NULL)
38 {
39 }
40
41 AbstractClipJob::~AbstractClipJob()
42 {
43 }
44
45 void AbstractClipJob::setStatus(CLIPJOBSTATUS status)
46 {
47     jobStatus = status;
48 }
49
50 const QString AbstractClipJob::clipId() const
51 {
52     return m_clipId;
53 }
54
55 const QString AbstractClipJob::errorMessage() const
56 {
57     return m_errorMessage;
58 }
59
60 const QString AbstractClipJob::logDetails() const
61 {
62     return m_logDetails;
63 }
64
65 void AbstractClipJob::startJob()
66 {
67 }
68
69 const QString AbstractClipJob::destination() const
70 {
71     return QString();
72 }
73
74 stringMap AbstractClipJob::cancelProperties()
75 {
76     return QMap <QString, QString>();
77 }
78
79 void AbstractClipJob::processLogInfo()
80 {
81 }
82
83 const QString AbstractClipJob::statusMessage()
84 {
85     return QString();
86 }
87
88 bool AbstractClipJob::isExclusive()
89 {
90     return true;
91 }
92