]> git.sesse.net Git - kdenlive/blob - src/projecttree/abstractclipjob.h
74c656ca7fec120d07f54b298985a6dcb76951ce
[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 { PROXYJOB = 1, CUTJOB = 2};
30
31 class AbstractClipJob : public QObject
32 {
33     Q_OBJECT
34
35 public:
36     AbstractClipJob(JOBTYPE type, CLIPTYPE cType, const QString &id, QStringList parameters);
37     virtual ~ AbstractClipJob();
38     CLIPTYPE clipType;
39     JOBTYPE jobType;
40     QString m_clipId;
41     QString description;
42     const QString clipId() const;
43     virtual const QString destination() const;
44     virtual QProcess *startJob(bool */*ok*/);
45     virtual stringMap cancelProperties();
46     virtual int processLogInfo();
47     QProcess *m_jobProcess;
48     
49 signals:
50     void jobProgress(int progress);
51
52 };
53
54
55 #endif
56