]> git.sesse.net Git - kdenlive/blob - src/kdenlivedoc.h
folders in project view
[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
89 private:
90     KUrl m_url;
91     QDomDocument m_document;
92     QString m_projectName;
93     double m_fps;
94     int m_width;
95     int m_height;
96     Timecode m_timecode;
97     Render *m_render;
98     KUndoStack *m_commandStack;
99     QDomDocument generateSceneList();
100     ClipManager *m_clipManager;
101     MltVideoProfile m_profile;
102     QString m_scenelist;
103     /** tells whether current doc has been changed since last save event */
104     bool m_modified;
105
106 public slots:
107
108 signals:
109     void addProjectClip(DocClipBase *);
110     void addProjectFolder(const QString, int, bool, bool edit = false);
111     void signalDeleteProjectClip(int);
112     void updateClipDisplay(int);
113     void deletTimelineClip(int);
114     void thumbsProgress(KUrl, int);
115     /** emited when the document state has been modified (= needs saving or not) */
116     void docModified(bool);
117 };
118
119 #endif