]> git.sesse.net Git - kdenlive/blobdiff - src/titlewidget.h
Fix HTML tags in i18n strings
[kdenlive] / src / titlewidget.h
index cfafd89707061f406c37e81671b39e6c5825b2cf..a76c085577a246fe91e38a16b86497e0c11c3dbd 100644 (file)
 #include <QMap>
 #include <QSignalMapper>
 
+class TitleTemplate
+{
+public:
+       QString file;
+       QString name;
+       QIcon icon;
+};
 
 class Transform
 {
@@ -36,12 +43,15 @@ public:
     Transform() {
         scalex = 1.0;
         scaley = 1.0;
-        rotate = 0.0;
+        rotatex = 0.0;
+        rotatey = 0.0;
+        rotatez = 0.0;
     }
     double scalex, scaley;
-    double rotate;
+    double rotatex, rotatey, rotatez;
 };
 
+
 class TitleWidget : public QDialog , public Ui::TitleWidget_UI
 {
     Q_OBJECT
@@ -67,6 +77,11 @@ public:
     */
     static QStringList extractImageList(QString xml);
 
+    /** \brief Return a list af all fonts included in a title
+     * \param xml The xml data for title
+    */
+    static QStringList extractFontList(QString xml);
+
     /** \brief Build a filename from a projectUrl and a titleName
      * \param projectUrl Url to directory of project.
      * \param titleName Name of title, on the form "titleXXX"
@@ -78,6 +93,8 @@ public:
 
     /** \brief Get clip duration. */
     int duration() const;
+       /** load Title Templates*/
+       static void refreshTitleTemplates();
 
 protected:
     virtual void resizeEvent(QResizeEvent * event);
@@ -117,6 +134,7 @@ private:
     /** project path for storing title clips */
     QString m_projectTitlePath;
     Timecode m_tc;
+       QString lastDocumentHash;
 
     /** See http://doc.trolltech.com/4.5/signalsandslots.html#advanced-signals-and-slots-usage */
     QSignalMapper *m_signalMapper;
@@ -160,9 +178,17 @@ private:
     void updateInfoText();
     /** \brief Remove the "start" and "end" info text from animation viewports */
     void deleteAnimInfoText();
-    
+
     qreal maxZIndex();
-    qreal zIndexBounds(bool maxBound);
+    /**
+     * \brief Get the minimum/maximum z index value of items.
+     * \param maxBound true: Use maximum z index. false: Use minimum
+     * \param intersectingOnly Only considers the items intersecting with
+     * the currently selected item if true.
+     */
+    qreal zIndexBounds(bool maxBound, bool intersectingOnly);
+
+    void itemRotate(qreal val, int axis);
 
 public slots:
     void slotNewText(QGraphicsTextItem *tt);
@@ -173,7 +199,9 @@ public slots:
     void setupViewports();
     void zIndexChanged(int);
     void itemScaled(int);
-    void itemRotate(int);
+    void itemRotateX(qreal);
+    void itemRotateY(qreal);
+    void itemRotateZ(qreal);
     void saveTitle(KUrl url = KUrl());
     void loadTitle(KUrl url = KUrl());
 
@@ -267,12 +295,13 @@ private slots:
     void slotEditBlur(int ix);
     void slotEditShadow();
     void slotEditTypewriter(int ix);
-    
+
     /** \brief Changes the z index of objects. */
     void slotZIndexUp();
     void slotZIndexDown();
     void slotZIndexTop();
     void slotZIndexBottom();
+       void templateIndexChanged(int);
 };