]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.h
More work on title widget:
[kdenlive] / src / kdenlivedoc.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef KDENLIVEDOC_H
22 #define KDENLIVEDOC_H
23
24 #include <qdom.h>
25 #include <qstring.h>
26 #include <qmap.h>
27 #include <QList>
28 #include <QObject>
29 #include <QUndoGroup>
30
31 #include <KUndoStack>
32 #include <kurl.h>
33
34 #include "gentime.h"
35 #include "timecode.h"
36 #include "definitions.h"
37
38 class Render;
39 class ClipManager;
40 class DocClipBase;
41
42 class KdenliveDoc: public QObject {
43 Q_OBJECT public:
44
45     KdenliveDoc(const KUrl &url, MltVideoProfile profile, QUndoGroup *undoGroup, QWidget *parent = 0);
46     ~KdenliveDoc();
47     QDomNodeList producersList();
48     double fps() const;
49     int width() const;
50     int height() const;
51     KUrl url() const;
52     void backupMltPlaylist();
53     Timecode timecode() const;
54     QDomDocument toXml() const;
55     void setRenderer(Render *render);
56     KUndoStack *commandStack();
57     QString producerName(int id);
58     void setProducerDuration(int id, int duration);
59     int getProducerDuration(int id);
60     Render *renderer();
61     ClipManager *clipManager();
62     void addClip(const QDomElement &elem, const int clipId);
63     void addFolder(const QString foldername, int clipId, bool edit);
64     void deleteFolder(const QString foldername, int clipId);
65     void slotAddClipFile(const KUrl url, const QString group, const int groupId = -1);
66     void slotAddFolder(const QString folderName);
67     void slotDeleteFolder(const QString folderName, const int id);
68     void slotEditFolder(const QString folderName, const QString oldfolderName, int clipId);
69     void slotAddColorClipFile(const QString name, const QString color, QString duration, const QString group, const int groupId = -1);
70     void deleteClip(const uint clipId);
71     int getFramePos(QString duration);
72     DocClipBase *getBaseClip(int clipId);
73     void updateClip(int id);
74     void deleteProjectClip(QList <int> ids);
75     void deleteProjectFolder(QMap <QString, int> map);
76     /** Inform application of the audio thumbnails generation progress */
77     void setThumbsProgress(KUrl url, int progress);
78     QString profilePath() const;
79     QString description() const;
80     /** Returns the document format: PAL or NTSC */
81     QString getDocumentStandard();
82     void setUrl(KUrl url);
83     QDomElement documentInfoXml();
84     void setProfilePath(QString path);
85     /** Set to true if document needs saving, false otherwise */
86     void setModified(bool mod);
87     int getFreeClipId();
88     /** does the document need saving */
89     bool isModified();
90
91 private:
92     KUrl m_url;
93     QDomDocument m_document;
94     QString m_projectName;
95     double m_fps;
96     int m_width;
97     int m_height;
98     Timecode m_timecode;
99     Render *m_render;
100     KUndoStack *m_commandStack;
101     QDomDocument generateSceneList();
102     ClipManager *m_clipManager;
103     MltVideoProfile m_profile;
104     QString m_scenelist;
105     /** tells whether current doc has been changed since last save event */
106     bool m_modified;
107
108 public slots:
109     void slotCreateTextClip(QString group, int groupId);
110
111 signals:
112     void addProjectClip(DocClipBase *);
113     void addProjectFolder(const QString, int, bool, bool edit = false);
114     void signalDeleteProjectClip(int);
115     void updateClipDisplay(int);
116     void deletTimelineClip(int);
117     void thumbsProgress(KUrl, int);
118     /** emited when the document state has been modified (= needs saving or not) */
119     void docModified(bool);
120 };
121
122 #endif