]> git.sesse.net Git - kdenlive/blob - src/projecttree/abstractclipjob.h
* Fix missing proxy not re-created on project opening
[kdenlive] / src / projecttree / abstractclipjob.h
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 #ifndef ABSTRACTCLIPJOB
22 #define ABSTRACTCLIPJOB
23
24 #include <QObject>
25 #include <QProcess>
26
27 #include "definitions.h"
28
29 enum JOBTYPE { NOJOBTYPE = 0, PROXYJOB = 1, CUTJOB = 2, MLTJOB = 3};
30
31 class AbstractClipJob : public QObject
32 {
33     Q_OBJECT
34
35 public:
36     AbstractClipJob(JOBTYPE type, CLIPTYPE cType, const QString &id, QStringList parameters);    virtual ~ AbstractClipJob();
37     CLIPTYPE clipType;
38     JOBTYPE jobType;
39     CLIPJOBSTATUS jobStatus;
40     QString m_clipId;
41     QString description;
42     bool addClipToProject;
43     bool replaceClip;
44     const QString clipId() const;
45     const QString errorMessage() const;
46     const QString logDetails() const;
47     void setStatus(CLIPJOBSTATUS status);
48     virtual const QString destination() const;
49     virtual void startJob();
50     virtual stringMap cancelProperties();
51     virtual void processLogInfo();
52     virtual const QString statusMessage();
53     /** @brief Returns true if only one instance of this job can be run on a clip. */
54     virtual bool isExclusive();
55     
56 protected:
57     QString m_errorMessage;
58     QString m_logDetails;
59     QProcess *m_jobProcess;
60     
61 signals:
62     void jobProgress(QString, int, int);
63     void cancelRunningJob(const QString, stringMap);
64     void gotFilterJobResults(const QString &id, int startPos, int track, const QString &filterName, stringMap params);
65 };
66
67
68 #endif
69