]> git.sesse.net Git - kdenlive/blobdiff - src/documentvalidator.h
Use const'ref.
[kdenlive] / src / documentvalidator.h
index a4427b7f9040d418a91ba5b15e39bb2048976a68..70766ed5726be71d420ecbc22ad71c8f9a0f4e74 100644 (file)
 #include <QDomDocument>
 #include <QColor>
 
+#include <KUrl>
+
+class QScriptValue;
+
 class DocumentValidator
 {
 
 public:
-    DocumentValidator(QDomDocument doc);
+    DocumentValidator(QDomDocument doc, KUrl documentUrl);
     bool isProject() const;
     bool validate(const double currentVersion);
     bool isModified() const;
 
 private:
     QDomDocument m_doc;
+    KUrl m_url;
     bool m_modified;
     bool upgrade(double version, const double currentVersion);
     QStringList getInfoFromEffectName(const QString oldName);
     QString colorToString(const QColor& c);
+    /** @brief Updates effects that were created using a different version of the underlaying filter than the one installed. */
+    void updateEffects();
+    /** @brief Updates the parameters according to the updateRules.
+     * @see the related in README in effects/update */
+    bool updateEffectParameters(QDomNodeList parameters, const QScriptValue *updateRules, const double serviceVersion, const double effectVersion);
 };
 
 #endif