]> git.sesse.net Git - kdenlive/blobdiff - src/monitorscene.h
Add mlt and encoder threads to render dialog.
[kdenlive] / src / monitorscene.h
index cf04b624d5510437ef6652be251e5532112762f7..aeb60dcc2fc854d75b8e9869a9eb4ff52d64ae6b 100644 (file)
@@ -44,14 +44,12 @@ public:
     void resetProfile();
 
 protected:
-    /** @brief Emits signal mousePressed to be used in onmonitor items. */
     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
-    /** @brief Emits signal mouseMoveEvent to be used in onmonitor items. */
     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
-    /** @brief Emits signal mouseReleaseEvent to be used in onmonitor items. */
     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
     /** @brief Adds a keyframe if scene is disabled. */
     virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
+    /** @brief Reimplemented to allow zooming using ctrl + mouse wheel. */
     virtual void wheelEvent(QGraphicsSceneWheelEvent *event);
 
 public slots:
@@ -73,8 +71,6 @@ public slots:
 private slots:
     /** @brief Sets m_backgroundImage to @param image and requests updating the background item. */
     void slotSetBackgroundImage(const QImage &image);
-    /** @brief Sets the mouse curors to @param cursor for the scene. */
-    void slotSetCursor(const QCursor &cursor);
 
 private:
     Render *m_renderer;
@@ -87,12 +83,8 @@ private:
     qreal m_zoom;
 
 signals:
-    void actionFinished();
     void zoomChanged(int);
     void addKeyframe();
-    void mouseMoved(QGraphicsSceneMouseEvent *event);
-    void mousePressed(QGraphicsSceneMouseEvent *event);
-    void mouseReleased(QGraphicsSceneMouseEvent *event);
 };
 
 #endif