]> git.sesse.net Git - kdenlive/blobdiff - src/timecodedisplay.h
Disable monitor scene when transition is unselected
[kdenlive] / src / timecodedisplay.h
index 484841da3c4d957310f1b06cb5fc3143086686b7..97bd353eaf1f1dbb2f84fdeb8fe56b4cc76dc1a4 100644 (file)
@@ -41,7 +41,7 @@ public:
     /** @brief Constructor for the widget, sets value to 0.
     * @param t Timecode object used to setup correct input (frames or HH:MM:SS:FF)
     * @param parent parent Widget */
-    TimecodeDisplay(Timecode t, QWidget *parent = 0);
+    explicit TimecodeDisplay(Timecode t, QWidget *parent = 0);
 
     /** @brief Returns the minimum value, which can be entered.
     * default is 0 */
@@ -93,7 +93,7 @@ public slots:
     void setValue(const QString &value);
     void setValue(GenTime value);
 
-    /** @brief Sets value's format accorrding to Kdenlive's settings.
+    /** @brief Sets value's format according to Kdenlive's settings.
     * @param t (optional, if already existing) Timecode object to use */
     void slotUpdateTimeCodeFormat();
 
@@ -108,12 +108,12 @@ signals:
      * @param final if the value is final ie not produced during sliding (on slider release it's final)
      */
     void valueChanged(int value, bool final);
-    void editingFinished();
+    void timeCodeEditingFinished();
 
 protected:
     virtual void keyPressEvent(QKeyEvent *e);
     virtual void mouseReleaseEvent(QMouseEvent *);
-//    virtual void wheelEvent(QWheelEvent *e);
+    virtual void wheelEvent(QWheelEvent *e);
     virtual QAbstractSpinBox::StepEnabled stepEnabled () const;
 
 };