]> git.sesse.net Git - kdenlive/blobdiff - src/clipmanager.h
Make render NTSC/PAL standard more strict.
[kdenlive] / src / clipmanager.h
index b96abf06ca8720cae18a471f9b3590a07c4fd605..f9ac1722b27b2b56e0be1e91e1c852e9bb25b3dd 100644 (file)
 #include <KUndoStack>
 #include <KDirWatch>
 #include <klocale.h>
+#include <kdeversion.h>
+
+#if KDE_IS_VERSION(4,5,0)
+#include <KImageCache>
+#endif
+
 
 #include "gentime.h"
 #include "definitions.h"
@@ -95,7 +101,7 @@ Q_OBJECT public:
     void askForAudioThumb(const QString &id);
     QString projectFolder() const;
     void clearUnusedProducers();
-    void resetProducersList(const QList <Mlt::Producer *> prods, bool displayRatioChanged);
+    void resetProducersList(const QList <Mlt::Producer *> prods, bool displayRatioChanged, bool fpsChanged);
     void addFolder(const QString&, const QString&);
     void deleteFolder(const QString&);
     void clear();
@@ -104,6 +110,10 @@ Q_OBJECT public:
     QDomElement groupsXml() const;
     int clipsCount() const;
 
+#if KDE_IS_VERSION(4,5,0)
+    KImageCache* pixmapCache;
+#endif
+
 private slots:
     /** A clip was externally modified, monitor for more changes and prepare for reload */
     void slotClipModified(const QString &path);
@@ -135,7 +145,7 @@ signals:
     void modifiedClip(const QString &);
     void missingClip(const QString &);
     void availableClip(const QString &);
-    void checkAllClips(bool displayRatioChanged);
+    void checkAllClips(bool displayRatioChanged, bool fpsChanged);
 };
 
 #endif