X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkdenlivedoc.h;h=0f7cca0414efebe5c5ed4ad35403a5f346bc348f;hb=31e84d6bd7f7b1ac64d942a9171d98ad8d0f7d62;hp=f85d6592c00d78329149072eca7c157a90e715c4;hpb=4a47150aaf6f75c45ddca8a071c3bc291117bdd3;p=kdenlive diff --git a/src/kdenlivedoc.h b/src/kdenlivedoc.h index f85d6592..0f7cca04 100644 --- a/src/kdenlivedoc.h +++ b/src/kdenlivedoc.h @@ -45,10 +45,11 @@ class DocClipBase; class MainWindow; class TrackInfo; -class KdenliveDoc: public QObject { +class KdenliveDoc: public QObject +{ Q_OBJECT public: - KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, const QString &profileName, const QPoint tracks, Render *render, MainWindow *parent = 0); + KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, QString profileName, const QPoint tracks, Render *render, MainWindow *parent = 0); ~KdenliveDoc(); QDomNodeList producersList(); double fps() const; @@ -61,10 +62,8 @@ Q_OBJECT public: //void setRenderer(Render *render); QUndoStack *commandStack(); QString producerName(const QString &id); - void setProducerDuration(const QString &id, int duration); - int getProducerDuration(const QString &id); Render *renderer(); - QDomElement m_guidesXml; + QDomDocument m_guidesXml; QDomElement guidesXml() const; ClipManager *clipManager(); void addClip(QDomElement elem, QString clipId, bool createClipItem = true); @@ -114,13 +113,13 @@ Q_OBJECT public: void setSceneList(); void updatePreviewSettings(); bool isTrackLocked(int ix) const; + void setDocumentProperty(const QString &name, const QString &value); + const QString getDocumentProperty(const QString &name) const; private: KUrl m_url; QDomDocument m_document; - QString m_projectName; double m_fps; - int m_zoom; /** Cursor position at document opening */ int m_startPos; int m_width; @@ -128,35 +127,36 @@ private: Timecode m_timecode; Render *m_render; QUndoStack *m_commandStack; - QDomDocument generateSceneList(); ClipManager *m_clipManager; MltVideoProfile m_profile; QTimer *m_autoSaveTimer; QString m_searchFolder; - /** tells whether current doc has been changed since last save event */ + /** tells whether current doc has been changed since last save event */ bool m_modified; /** Project folder, used to store project files (titles, effects,...) */ KUrl m_projectFolder; double m_documentLoadingStep; double m_documentLoadingProgress; bool m_abortLoading; - int m_zoneStart; - int m_zoneEnd; + QMap m_documentProperties; QList m_tracksList; - bool convertDocument(double version); QDomDocument createEmptyDocument(const int videotracks, const int audiotracks); - QString colorToString(const QColor& c); - void checkProjectClips(); + void setNewClipResource(const QString &id, const QString &path); QString searchFileRecursively(const QDir &dir, const QString &matchSize, const QString &matchHash) const; void moveProjectData(KUrl url); + bool checkDocumentClips(QDomNodeList infoproducers); public slots: - void slotCreateTextClip(QString group, const QString &groupId); + void slotCreateColorClip(const QString &name, const QString &color, const QString &duration, QString group, const QString &groupId); + void slotCreateSlideshowClipFile(const QString name, const QString path, int count, const QString duration, const bool loop, const bool fade, const QString &luma_duration, const QString &luma_file, const int softness, QString group, const QString &groupId); + void slotCreateTextClip(QString group, const QString &groupId, const QString &templatePath = QString()); + void slotCreateTextTemplateClip(QString group, const QString &groupId, KUrl path); /** Set to true if document needs saving, false otherwise */ void setModified(bool mod = true); + void checkProjectClips(); private slots: void slotAutoSave(); @@ -168,7 +168,7 @@ signals: void updateClipDisplay(const QString&); void deleteTimelineClip(const QString&); void progressInfo(const QString &, int); - /** emitted when the document state has been modified (= needs saving or not) */ + /** emitted when the document state has been modified (= needs saving or not) */ void docModified(bool); void selectLastAddedClip(const QString &); void guidesUpdated();