]> git.sesse.net Git - kdenlive/blobdiff - src/titlewidget.h
reindent
[kdenlive] / src / titlewidget.h
index 1126c9e3bf049f67d6cad24dd710ad1554743c18..ac60a32556f231ed87e7b63d6d959b3ab54ba5df 100644 (file)
 #include "renderer.h"
 #include "graphicsscenerectmove.h"
 #include "unicodedialog.h"
+#include "timecode.h"
 
 #include <QMap>
+#include <QSignalMapper>
 
 
 class Transform
@@ -47,7 +49,7 @@ class TitleWidget : public QDialog , public Ui::TitleWidget_UI
 public:
     /** \brief Constructor
      * \param projectPath Path to use when user requests loading or saving of titles as .kdenlivetitle documents */
-    TitleWidget(KUrl url, QString projectTitlePath, Render *render, QWidget *parent = 0);
+    TitleWidget(KUrl url, Timecode tc, QString projectTitlePath, Render *render, QWidget *parent = 0);
     virtual ~TitleWidget();
     QDomDocument xml();
     void setXml(QDomDocument doc);
@@ -74,6 +76,9 @@ public:
     */
     const QRect renderedRect();
 
+    /** \brief Get clip duration. */
+    int duration() const;
+
 protected:
     virtual void resizeEvent(QResizeEvent * event);
 
@@ -95,17 +100,34 @@ private:
     QAction *m_buttonCursor;
     QAction *m_buttonSave;
     QAction *m_buttonLoad;
+
+    QAction *m_unicodeAction;
+
     /** \brief Dialog for entering unicode in text fields */
     UnicodeDialog *m_unicodeDialog;
     /** project path for storing title clips */
     QString m_projectTitlePath;
+    Timecode m_tc;
+
+    /** See http://doc.trolltech.com/4.5/signalsandslots.html#advanced-signals-and-slots-usage */
+    QSignalMapper *m_signalMapper;
+
+    enum ValueType { ValueWidth = 0, ValueHeight = 1 };
+
+    /** \brief Sets the font weight value in the combo box. (#909) */
+    void setFontBoxWeight(int weight);
+
     /** \brief Store the current choices of font, background and rect values */
     void writeChoices();
     /** \brief Read the last stored choices into the dialog */
     void readChoices();
-    /** \brief Update the displayed X/Y coordinates */
+    /** \brief Update the displayed X/Y coordinate values */
     void updateCoordinates(QGraphicsItem *i);
+    /** \brief Update displayed width/height values */
     void updateDimension(QGraphicsItem *i);
+    /** \brief Update displayed rotation/zoom values */
+    void updateRotZoom(QGraphicsItem *i);
+
     /** \brief Update the item's position */
     void updatePosition(QGraphicsItem *i);
 
@@ -114,11 +136,15 @@ private:
 
     void updateTextOriginX();
     void updateTextOriginY();
-       
-       /** \brief Enables the toolbars suiting to toolType */
-       void enableToolbars(TITLETOOL toolType);
-       /** \brief Shows the toolbars suiting to toolType */
-       void showToolbars(TITLETOOL toolType);
+
+    /** \brief Enables the toolbars suiting to toolType */
+    void enableToolbars(TITLETOOL toolType);
+    /** \brief Shows the toolbars suiting to toolType */
+    void showToolbars(TITLETOOL toolType);
+    /** \brief Check a tool button. */
+    void checkButton(TITLETOOL toolType);
+
+    void adjustFrameSize();
 
 public slots:
     void slotNewText(QGraphicsTextItem *tt);
@@ -182,6 +208,9 @@ private slots:
     /** \brief Update coorinates of text fields if necessary and text has changed */
     void slotChanged();
 
+    /** \param valueType Of type ValueType */
+    void slotValueChanged(int valueType);
+
     void slotZoom(bool up);
     void slotUpdateZoom(int pos);
     void slotAdjustZoom();