X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkdenlivedoc.h;h=cc74e5d34078058d4ba7fdc6168af01febc21c4f;hb=0ae1ad35ac158ca3a89de99c25dff38575ea1ae5;hp=77818ade0b87d3c5d0b90fa1465871be3c59d2c3;hpb=d1e6242c20436bfa1ac8d1c3a5dc9f55bd8f10ca;p=kdenlive diff --git a/src/kdenlivedoc.h b/src/kdenlivedoc.h index 77818ade..cc74e5d3 100644 --- a/src/kdenlivedoc.h +++ b/src/kdenlivedoc.h @@ -52,7 +52,7 @@ class KdenliveDoc: public QObject { Q_OBJECT public: - KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, QString profileName, QMap properties, const QPoint tracks, Render *render, KTextEdit *notes, bool *openBackup, MainWindow *parent = 0, KProgressDialog *progressDialog = 0); + KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, QString profileName, QMap properties, QMap metadata, const QPoint &tracks, Render *render, KTextEdit *notes, bool *openBackup, MainWindow *parent = 0, KProgressDialog *progressDialog = 0); ~KdenliveDoc(); QDomNodeList producersList(); double fps() const; @@ -83,12 +83,12 @@ Q_OBJECT public: * * If the clip wasn't added before, it tries to add it to the project. */ bool addClipInfo(QDomElement elem, QDomElement orig, QString clipId); - void slotAddClipFile(const KUrl url, const QString group, const QString &groupId = QString()); - void slotAddClipList(const KUrl::List urls, const QString group, const QString &groupId = QString()); + void slotAddClipFile(const KUrl &url, const QString &group = QString(), const QString &groupId = QString(), const QString &comment = QString()); + void slotAddClipList(const KUrl::List urls, const QString &group = QString(), const QString &groupId = QString()); void deleteClip(const QString &clipId); int getFramePos(QString duration); DocClipBase *getBaseClip(const QString &clipId); - void updateClip(const QString id); + void updateClip(const QString &id); /** @brief Informs Kdenlive of the audio thumbnails generation progress. */ void setThumbsProgress(const QString &message, int progress); @@ -113,9 +113,9 @@ Q_OBJECT public: double dar() const; double projectDuration() const; /** @brief Returns the project file xml. */ - QDomDocument xmlSceneList(const QString &scene, const QStringList expandedFolders); + QDomDocument xmlSceneList(const QString &scene, const QStringList &expandedFolders); /** @brief Saves the project file xml to a file. */ - bool saveSceneList(const QString &path, const QString &scene, const QStringList expandedFolders, bool autosave = false); + bool saveSceneList(const QString &path, const QString &scene, const QStringList &expandedFolders, bool autosave = false); int tracksCount() const; TrackInfo trackInfoAt(int ix) const; void insertTrack(int ix, TrackInfo type); @@ -140,8 +140,7 @@ Q_OBJECT public: * The returned duration might differ from the actual track duration! * It is the one stored in the track's TrackInfo. */ int trackDuration(int ix); - - void cachePixmap(const QString &fileId, const QPixmap &pix) const; + void cacheImage(const QString &fileId, const QImage &img) const; void setProjectFolder(KUrl url); void setZone(int start, int end); QPoint zone() const; @@ -155,13 +154,21 @@ Q_OBJECT public: void removeTrackEffect(int ix, QDomElement effect); void setTrackEffect(int trackIndex, int effectIndex, QDomElement effect); const EffectsList getTrackEffects(int ix); + /** @brief Enable / disable an effect in Kdenlive's xml list. */ + void enableTrackEffects(int trackIndex, QList effectIndexes, bool disable); QDomElement getTrackEffect(int trackIndex, int effectIndex) const; + /** @brief Check if a track already contains a specific effect. */ + int hasTrackEffect(int trackIndex, const QString &tag, const QString &id) const; /** @brief Get a list of folder id's that were opened on last save. */ QStringList getExpandedFolders(); /** @brief Read the display ratio from an xml project file. */ static double getDisplayRatio(const QString &path); /** @brief Backup the project file */ void backupLastSavedVersion(const QString &path); + /** @brief Returns the document metadata (author, copyright, ...) */ + const QMap metadata() const; + /** @brief Set the document metadata (author, copyright, ...) */ + void setMetadata(const QMap meta); private: KUrl m_url; @@ -184,6 +191,7 @@ private: /** @brief The project folder, used to store project files (titles, effects...). */ KUrl m_projectFolder; QMap m_documentProperties; + QMap m_documentMetadata; QList m_tracksList; void setNewClipResource(const QString &id, const QString &path); @@ -206,13 +214,7 @@ private: public slots: void slotCreateXmlClip(const QString &name, const QDomElement xml, 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 crop, - const bool fade, const QString &luma_duration, - const QString &luma_file, const int softness, - const QString &animation, QString group, - const QString &groupId); + void slotCreateSlideshowClipFile(QMap properties, 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); @@ -238,7 +240,7 @@ signals: void selectLastAddedClip(const QString &); void guidesUpdated(); /** @brief When creating a backup file, also save a thumbnail of current timeline */ - void saveTimelinePreview(const QString path); + void saveTimelinePreview(const QString &path); }; #endif