]> git.sesse.net Git - kdenlive/blobdiff - src/scopes/colorscopes/rgbparade.h
Fix includes
[kdenlive] / src / scopes / colorscopes / rgbparade.h
index db178b20df9860bd2b9d5c390e5a4cb417d6f5ca..1e5523fc97f5eff077e0c28a01562388102b51f1 100644 (file)
 #ifndef RGBPARADE_H
 #define RGBPARADE_H
 
-#include <QObject>
 #include "abstractgfxscopewidget.h"
 #include "ui_rgbparade_ui.h"
 
-class Monitor;
 class QImage;
 class RGBParade_UI;
 class RGBParadeGenerator;
 
+/**
+ * \brief Displays the RGB waveform of a frame.
+ * This is the same as the Waveform, but for each colour channel separately.
+ */
 class RGBParade : public AbstractGfxScopeWidget
 {
 public:
-    RGBParade(MonitorManager *manager, QWidget *parent = 0);
+    explicit RGBParade(QWidget *parent = 0);
     ~RGBParade();
     QString widgetName() const;
 
@@ -44,7 +46,7 @@ private:
     bool isBackgroundDependingOnInput() const;
 
     QImage renderHUD(uint accelerationFactor);
-    QImage renderGfxScope(uint accelerationFactor, const QImage);
+    QImage renderGfxScope(uint accelerationFactor, const QImage &);
     QImage renderBackground(uint accelerationFactor);
 };