]> git.sesse.net Git - kdenlive/blobdiff - src/titledocument.h
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / titledocument.h
index ca5e92bc7fc14885d3e4fa93ed5d6d00106ca09f..d73760a06ba9779722cd39dd3f3ecad219e7ef8e 100644 (file)
@@ -34,14 +34,16 @@ class TitleDocument
 public:
     TitleDocument();
     void setScene(QGraphicsScene* scene, int width, int height);
-    bool saveDocument(const KUrl& url, QGraphicsRectItem* startv, QGraphicsRectItem* endv, int out, bool embed_images = false );
-    QDomDocument xml(QGraphicsRectItem* startv, QGraphicsRectItem* endv, bool embed_images = false );
-    int loadFromXml(QDomDocument doc, QGraphicsRectItem* startv, QGraphicsRectItem* endv, int *out,const QString& projectpath="");
+    bool saveDocument(const KUrl& url, QGraphicsRectItem* startv, QGraphicsRectItem* endv, int duration, bool embed_images = false);
+    QDomDocument xml(QGraphicsRectItem* startv, QGraphicsRectItem* endv, bool embed_images = false);
+    int loadFromXml(const QDomDocument& doc, QGraphicsRectItem* startv, QGraphicsRectItem* endv, int *duration, const QString& projectpath = QString());
     /** \brief Get the background color (incl. alpha) from the document, if possibly
      * \returns The background color of the document, inclusive alpha. If none found, returns (0,0,0,0) */
-    QColor getBackgroundColor();
+    QColor getBackgroundColor() const;
     int frameWidth() const;
     int frameHeight() const;
+    /** \brief Extract embeded images in project titles folder. */
+    static const QString extractBase64Image(const QString &titlePath, const QString &data);
 
     enum ItemOrigin {OriginXLeft = 0, OriginYTop = 1};
     enum AxisPosition {AxisDefault = 0, AxisInverted = 1};