X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkdenlivedoc.h;h=b4a21b7be90c7c6b235ed988151b67058142377d;hb=33f426b7702f49eed1c119bb6d6e27b319f7c1c8;hp=4f285f3f4cd0392c798b92074e45b4744b5ba274;hpb=3510284b258edff6a82442691cb2380fb4994922;p=kdenlive diff --git a/src/kdenlivedoc.h b/src/kdenlivedoc.h index 4f285f3f..b4a21b7b 100644 --- a/src/kdenlivedoc.h +++ b/src/kdenlivedoc.h @@ -22,69 +22,154 @@ #define KDENLIVEDOC_H #include -#include -#include +#include +#include #include +#include #include +#include +#include +#include -#include -#include +#include +#include #include "gentime.h" #include "timecode.h" -#include "renderer.h" -#include "clipmanager.h" +#include "definitions.h" +#include "guide.h" -class KdenliveDoc:public QObject { - Q_OBJECT public: +class Render; +class ClipManager; +class DocClipBase; +class MainWindow; +class TrackInfo; - KdenliveDoc(const KUrl &url, double fps, int width, int height, QWidget *parent = 0); +class KdenliveDoc: public QObject +{ +Q_OBJECT public: + + KdenliveDoc(const KUrl &url, const KUrl &projectFolder, QUndoGroup *undoGroup, QString profileName, const QPoint tracks, Render *render, MainWindow *parent = 0); ~KdenliveDoc(); - QString documentName(); QDomNodeList producersList(); - double fps(); - int width(); - int height(); - KUrl url(); - void setProducers(QDomElement doc); - Timecode timecode(); + double fps() const; + int width() const; + int height() const; + KUrl url() const; + KAutoSaveFile *m_autosave; + Timecode timecode() const; QDomDocument toXml(); - void setRenderer(Render *render); - KUndoStack *commandStack(); - QString producerName(int id); - void setProducerDuration(int id, int duration); - int getProducerDuration(int id); + //void setRenderer(Render *render); + QUndoStack *commandStack(); + QString producerName(const QString &id); Render *renderer(); + QDomDocument m_guidesXml; + QDomElement guidesXml() const; ClipManager *clipManager(); - void addClip(const QDomElement &elem, const int clipId); - void slotAddClipFile(const KUrl url, const QString group); - void slotAddColorClipFile(const QString name, const QString color, QString duration, const QString group); - void deleteClip(const uint clipId); + void addClip(QDomElement elem, QString clipId, bool createClipItem = true); + void 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 deleteClip(const QString &clipId); int getFramePos(QString duration); - DocClipBase *getBaseClip(int clipId); - void updateClip(int id); - void deleteProjectClip(const uint clipId); + DocClipBase *getBaseClip(const QString &clipId); + void updateClip(const QString &id); + void deleteProjectClip(QList ids); + /** Inform application of the audio thumbnails generation progress */ + void setThumbsProgress(const QString &message, int progress); + const QString &profilePath() const; + MltVideoProfile mltProfile() const; + const QString description() const; + void setUrl(KUrl url); + void setProfilePath(QString path); + const QString getFreeClipId(); + /** does the document need saving */ + bool isModified() const; + /** Returns project folder, used to store project files (titles, effects,...) */ + KUrl projectFolder() const; + /** Used to inform main app of the current document loading progress */ + void loadingProgressed(); + void syncGuides(QList guides); + void setZoom(int factor); + int zoom() const; + double dar(); + double projectDuration() const; + bool saveSceneList(const QString &path, const QString &scene); + int tracksCount() const; + TrackInfo trackInfoAt(int ix) const; + void insertTrack(int ix, TrackInfo type); + void deleteTrack(int ix); + void setTrackType(int ix, TrackInfo type); + const QList tracksList() const; + QPoint getTracksCount() const; + void switchTrackVideo(int ix, bool hide); + void switchTrackAudio(int ix, bool hide); + void switchTrackLock(int ix, bool lock); + void cachePixmap(const QString &fileId, const QPixmap &pix) const; + void setProjectFolder(KUrl url); + QString getLadspaFile() const; + void setZone(int start, int end); + QPoint zone() const; + 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: +private: KUrl m_url; QDomDocument m_document; - QString m_projectName; double m_fps; int m_width; int m_height; Timecode m_timecode; Render *m_render; - KUndoStack *m_commandStack; - QDomDocument generateSceneList(); + QUndoStack *m_commandStack; ClipManager *m_clipManager; + MltVideoProfile m_profile; + QTimer *m_autoSaveTimer; + QString m_searchFolder; + /** 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; + QMap m_documentProperties; + + QList m_tracksList; + + QDomDocument createEmptyDocument(const int videotracks, const int audiotracks); + + 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 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(); - public slots: - - signals: - void addProjectClip(DocClipBase *); - void signalDeleteProjectClip(int); - void updateClipDisplay(int); - void deletTimelineClip(int); +signals: + void resetProjectList(); + void addProjectClip(DocClipBase *, bool getInfo = true); + void signalDeleteProjectClip(const QString &); + 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) */ + void docModified(bool); + void selectLastAddedClip(const QString &); + void guidesUpdated(); }; #endif