]> git.sesse.net Git - kdenlive/commitdiff
Comments added.
authorSimon A. Eugster <simon.eu@gmail.com>
Mon, 9 Aug 2010 13:50:26 +0000 (13:50 +0000)
committerSimon A. Eugster <simon.eu@gmail.com>
Mon, 9 Aug 2010 13:50:26 +0000 (13:50 +0000)
svn path=/trunk/kdenlive/; revision=4693

src/abstractscopewidget.h

index 415c8bc2c50e190673422ce5fc7fe04f3c3af0d4..029274e6425d46b18bd970e61fe422a198f4cae8 100644 (file)
@@ -163,7 +163,7 @@ protected slots:
 
 signals:
     /** mseconds represent the time taken for the calculation,
-        accelerationFactor the acceleration factor that has been used. */
+        accelerationFactor is the acceleration factor that has been used. */
     void signalHUDRenderingFinished(uint mseconds, uint accelerationFactor);
     void signalScopeRenderingFinished(uint mseconds, uint accelerationFactor);
     void signalBackgroundRenderingFinished(uint mseconds, uint accelerationFactor);
@@ -207,8 +207,13 @@ private slots:
       done in this abstract class. */
     void slotActiveMonitorChanged(bool isClipMonitor);
     void customContextMenuRequested(const QPoint &pos);
+    /** To be called when a new frame has been received.
+      The scope then decides whether and when it wants to recalculate the scope, depending
+      on whether it is currently visible and whether a calculation thread is already running. */
     void slotRenderZoneUpdated();
     void slotRenderZoneUpdated(QImage);
+    /** The following slots are called when rendering of a component has finished. They e.g. update
+      the widget and decide whether to immediately restart the calculation thread. */
     void slotHUDRenderingFinished(uint mseconds, uint accelerationFactor);
     void slotScopeRenderingFinished(uint mseconds, uint accelerationFactor);
     void slotBackgroundRenderingFinished(uint mseconds, uint accelerationFactor);