]> git.sesse.net Git - kdenlive/blobdiff - src/titlewidget.h
cleanup
[kdenlive] / src / titlewidget.h
index e213b7790567ad1118957348cc325ff0558f8cc3..88756b9de02620757810632d379f04306f1c6be5 100644 (file)
@@ -43,8 +43,30 @@ public:
 
 class TitleWidget : public QDialog , public Ui::TitleWidget_UI {
     Q_OBJECT
+
 public:
+    /** \brief Constructor
+     * \param projectPath Path to use when user requests loading or saving of titles as .kdenlivetitle documents */
     TitleWidget(KUrl url, QString projectPath, Render *render, QWidget *parent = 0);
+    QDomDocument xml();
+    void setXml(QDomDocument doc);
+
+    /** \brief Find first available filename of the form titleXXX.png in projectUrl + "/titles/" directory
+    * \param projectUrl Url to directory of project.
+     * \returns A list, with the name in the form of "/path/to/titles/titleXXX" as the first element, the extension
+     * ".png" as the second element.
+     *
+     * The path "/titles/" is appended to projectUrl to locate the actual directory that contains the title pngs. */
+    static QStringList getFreeTitleInfo(const KUrl &projectUrl);
+
+    /** \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"
+     *
+     * The path "/titles/" is appended to projectUrl to build the directoryname, then .pgn is appended to
+     * get the filename. It is not checked that the title png actually exists, only the name is build and
+     * returned. */
+    static QString getTitleResourceFromName(const KUrl &projectUrl, const QString &titleName);
 
 protected:
     virtual void resizeEvent(QResizeEvent * event);
@@ -69,6 +91,10 @@ private:
     QAction *m_buttonLoad;
     /** project path for storing title clips */
     QString m_projectPath;
+    /** \brief Store the current choices of font, background and rect values */
+    void writeChoices();
+    /** \brief Read the last stored choices into the dialog */
+    void readChoices();
 
 public slots:
     void slotNewText(QGraphicsTextItem *tt);
@@ -80,9 +106,10 @@ public slots:
     void fontBold();
     void setupViewports();
     void zIndexChanged(int);
-    void svgSelected(const KUrl&);
     void itemScaled(int);
     void itemRotate(int);
+    void itemHCenter();
+    void itemVCenter();
     void saveTitle(KUrl url = KUrl());
     void loadTitle();
     QPixmap renderedPixmap();
@@ -99,6 +126,9 @@ private slots:
     void slotTextTool();
     void slotRectTool();
     void slotSelectTool();
+    void slotImageTool();
+    /** \brief Called when accepted, stores the user selections for next time use */
+    void slotAccepted();
 };