]> git.sesse.net Git - kdenlive/blobdiff - src/kdenlivedoc.h
Change tab icon & font when document was modified
[kdenlive] / src / kdenlivedoc.h
index e55777371df8443391ea4377cf5e7bbf46219f26..6c6f783f94b84c159054937075627cb7a87ea4c0 100644 (file)
@@ -26,6 +26,7 @@
 #include <qmap.h>
 #include <QList>
 #include <QObject>
+#include <QUndoGroup>
 
 #include <KUndoStack>
 #include <kurl.h>
 class KdenliveDoc: public QObject {
 Q_OBJECT public:
 
-    KdenliveDoc(const KUrl &url, MltVideoProfile profile, QWidget *parent = 0);
+    KdenliveDoc(const KUrl &url, MltVideoProfile profile, QUndoGroup *undoGroup, QWidget *parent = 0);
     ~KdenliveDoc();
-    QString documentName();
     QDomNodeList producersList();
-    double fps();
-    int width();
-    int height();
-    KUrl url();
+    double fps() const;
+    int width() const;
+    int height() const;
+    KUrl url() const;
     void backupMltPlaylist();
-    Timecode timecode();
-    QDomDocument toXml();
+    Timecode timecode() const;
+    QDomDocument toXml() const;
     void setRenderer(Render *render);
     KUndoStack *commandStack();
     QString producerName(int id);
@@ -67,7 +67,15 @@ Q_OBJECT public:
     void deleteProjectClip(const uint clipId);
     /** Inform application of the audio thumbnails generation progress */
     void setThumbsProgress(KUrl url, int progress);
-    QString profilePath();
+    QString profilePath() const;
+    QString description() const;
+    /** Returns the document format: PAL or NTSC */
+    QString getDocumentStandard();
+    void setUrl(KUrl url);
+    QDomElement documentInfoXml();
+    void setProfilePath(QString path);
+    /** Set to true if document needs saving, false otherwise */
+    void setModified(bool mod);
 
 private:
     KUrl m_url;
@@ -83,6 +91,8 @@ private:
     ClipManager *m_clipManager;
     MltVideoProfile m_profile;
     QString m_scenelist;
+    /** tells whether current doc has been changed since last save event */
+    bool m_modified;
 
 public slots:
 
@@ -92,6 +102,8 @@ signals:
     void updateClipDisplay(int);
     void deletTimelineClip(int);
     void thumbsProgress(KUrl, int);
+    /** emited when the document state has been modified (= needs saving or not) */
+    void docModified(bool);
 };
 
 #endif