]> git.sesse.net Git - kdenlive/blobdiff - src/vectorscope.cpp
RGB Parade added.
[kdenlive] / src / vectorscope.cpp
index 72625230a88159a1552f7ae6f1881834bdbe8375..841e76d2bf92a5d5916deffcae4afc4f9d250715 100644 (file)
@@ -8,44 +8,25 @@
  *   (at your option) any later version.                                   *
  ***************************************************************************/
 
-/**
-
-  Vectorscope.
-
-  The basis matrix for converting RGB to YUV is:
-
-mRgb2Yuv =                       r =
-
-   0.29900   0.58700   0.11400     1.00000
-  -0.14741  -0.28939   0.43680  x  0.00000
-   0.61478  -0.51480  -0.09998     0.00000
-
-  The resulting YUV value is then drawn on the circle
-  using U and V as coordinate values.
-
-  The maximum length of such an UV vector is reached
-  for the colors Red and Cyan: 0.632.
-  To make optimal use of space in the circle, this value
-  can be used for scaling.
-
-  As we are dealing with RGB values in a range of {0,...,255}
-  and the conversion values are made for [0,1], we already
-  divide the conversion values by 255 previously, e.g. in
-  GNU octave.
- */
 
+#include <QAction>
 #include <QColor>
+#include <QDebug>
 #include <QMouseEvent>
+#include <QMenu>
 #include <QPainter>
-#include <QDebug>
 
-#include <qtconcurrentrun.h>
-#include <QThread>
+#include <QTime>
 
+#include "colorplaneexport.h"
+#include "colortools.h"
+#include "renderer.h"
 #include "vectorscope.h"
+#include "vectorscopegenerator.h"
 
-const float SCALING = 1/.7; // See class docs
 const float P75 = .75;
+const unsigned char DEFAULT_Y = 255;
+
 const QPointF YUV_R(-.147,  .615);
 const QPointF YUV_G(-.289, -.515);
 const QPointF YUV_B(.437, -.100);
@@ -55,332 +36,361 @@ const QPointF YUV_Yl(-.437,  .100);
 
 const QPen penThick(QBrush(QColor(250,250,250)), 2, Qt::SolidLine);
 const QPen penThin(QBrush(QColor(250,250,250)), 1, Qt::SolidLine);
-const QPen penLight(QBrush(QColor(144,255,100,50)), 1, Qt::SolidLine);
+const QPen penLight(QBrush(QColor(200,200,250,150)), 1, Qt::SolidLine);
+const QPen penDark(QBrush(QColor(0,0,20,250)), 1, Qt::SolidLine);
 
 
 Vectorscope::Vectorscope(Monitor *projMonitor, Monitor *clipMonitor, QWidget *parent) :
-    QWidget(parent),
-    m_projMonitor(projMonitor),
-    m_clipMonitor(clipMonitor),
-    m_activeRender(clipMonitor->render),
-    iPaintMode(GREEN),
-    scaling(1),
-    circleEnabled(false),
-    initialDimensionUpdateDone(false)
+    AbstractScopeWidget(projMonitor, clipMonitor, parent),
+    m_gain(1),
+    m_circleEnabled(false)
 {
-    setupUi(this);
+    ui = new Ui::Vectorscope_UI();
+    ui->setupUi(this);
 
-    paintMode->insertItem(GREEN, i18n("Green"));
-    paintMode->insertItem(CHROMA, i18n("Chroma"));
-    paintMode->insertItem(ORIG, i18n("Original Color"));
+    //TODO don't draw circle when mouseLeaved
 
-    connect(paintMode, SIGNAL(currentIndexChanged(int)), this, SLOT(slotPaintModeChanged(int)));
-    connect(cbMagnify, SIGNAL(stateChanged(int)), this, SLOT(slotMagnifyChanged()));
-    connect(this, SIGNAL(signalScopeCalculationFinished()), this, SLOT(slotScopeCalculationFinished()));
-    connect(cbMagnify, SIGNAL(stateChanged(int)), this, SLOT(slotRenderZoneUpdated()));
+    m_colorTools = new ColorTools();
+    m_colorPlaneExport = new ColorPlaneExport(this);
+    m_vectorscopeGenerator = new VectorscopeGenerator();
 
-    newFrames.fetchAndStoreRelaxed(0);
+    ui->paintMode->addItem(i18n("Green 2"), QVariant(VectorscopeGenerator::PaintMode_Green2));
+    ui->paintMode->addItem(i18n("Green"), QVariant(VectorscopeGenerator::PaintMode_Green));
+    ui->paintMode->addItem(i18n("Black"), QVariant(VectorscopeGenerator::PaintMode_Black));
+    ui->paintMode->addItem(i18n("Modified YUV (Chroma)"), QVariant(VectorscopeGenerator::PaintMode_Chroma));
+    ui->paintMode->addItem(i18n("YUV"), QVariant(VectorscopeGenerator::PaintMode_YUV));
+    ui->paintMode->addItem(i18n("Original Color"), QVariant(VectorscopeGenerator::PaintMode_Original));
 
-    this->setMouseTracking(true);
-    updateDimensions();
-}
+    ui->backgroundMode->addItem(i18n("None"), QVariant(BG_NONE));
+    ui->backgroundMode->addItem(i18n("YUV"), QVariant(BG_YUV));
+    ui->backgroundMode->addItem(i18n("Modified YUV (Chroma)"), QVariant(BG_CHROMA));
 
-Vectorscope::~Vectorscope()
-{
-}
+    ui->sliderGain->setMinimum(0);
+    ui->sliderGain->setMaximum(40);
 
-/**
+    bool b = true;
+    b &= connect(ui->backgroundMode, SIGNAL(currentIndexChanged(int)), this, SLOT(slotBackgroundChanged()));
+    b &= connect(ui->sliderGain, SIGNAL(valueChanged(int)), this, SLOT(slotGainChanged(int)));
+    b &= connect(ui->paintMode, SIGNAL(currentIndexChanged(int)), this, SLOT(forceUpdateScope()));
+    ui->sliderGain->setValue(0);
 
-  Input point is on [-1,1]², 0 being at the center,
-  and positive directions are top/right.
 
-  Maps to a QRect «inside» which is using the
-  0 point in the top left corner. The coordinates of
-  the rect «inside» are relative to «parent». The
-  coordinates returned can be used in the parent.
+    ///// Build context menu /////
 
+    m_menu->addSeparator();
 
-    parent v
-  +-------------------+
-  | inside v          |
-  | +-----------+     |
-  | |    +      |     |
-  | |  --0++    |     | < point
-  | |    -      |     |
-  | +-----------+     |
-  |                   |
-  +-------------------+
+    m_aExportBackground = new QAction(i18n("Export background"), this);
+    m_menu->addAction(m_aExportBackground);
+    b &= connect(m_aExportBackground, SIGNAL(triggered()), this, SLOT(slotExportBackground()));
 
- */
-QPoint Vectorscope::mapToCanvas(QRect inside, QPointF point)
-{
-    return QPoint(point.x()/2*inside.width()  + inside.width()/2  + inside.x(),
-                 -point.y()/2*inside.height() + inside.height()/2 + inside.y());
+    m_a75PBox = new QAction(i18n("75% box"), this);
+    m_a75PBox->setCheckable(true);
+    m_a75PBox->setChecked(false);
+    m_menu->addAction(m_a75PBox);
+    b &= connect(m_a75PBox, SIGNAL(changed()), this, SLOT(forceUpdateBackground()));
+
+    m_aAxisEnabled = new QAction(i18n("Draw axis"), this);
+    m_aAxisEnabled->setCheckable(true);
+    m_aAxisEnabled->setChecked(false);
+    m_menu->addAction(m_aAxisEnabled);
+    b &= connect(m_aAxisEnabled, SIGNAL(changed()), this, SLOT(forceUpdateBackground()));
+
+    Q_ASSERT(b);
+
+
+    this->setMouseTracking(true);
+    slotGainChanged(ui->sliderGain->value());
 }
 
-bool Vectorscope::prodCalcThread()
+Vectorscope::~Vectorscope()
 {
-    if (m_scopeCalcThread.isRunning()) {
-        qDebug() << "Calc thread still running.";
-        return false;
-    } else {
-        // See http://doc.qt.nokia.com/latest/qtconcurrentrun.html#run about
-        // running member functions in a thread
-        qDebug() << "Calc thread not running anymore, finished: " << m_scopeCalcThread.isFinished() << ", Starting new thread";
-        m_scopeCalcThread = QtConcurrent::run(this, &Vectorscope::calculateScope);
-        return true;
-    }
+    delete m_colorTools;
+    delete m_colorPlaneExport;
+    delete m_vectorscopeGenerator;
+
+    delete m_aExportBackground;
+    delete m_aAxisEnabled;
+    delete m_a75PBox;
 }
 
-void Vectorscope::calculateScope()
+QString Vectorscope::widgetName() const { return QString("Vectorscope"); }
+
+QRect Vectorscope::scopeRect()
 {
-    // Prepare the vectorscope data
-    QImage scope(cw, cw, QImage::Format_ARGB32);
-    scope.fill(qRgba(0,0,0,0));
+    // Widget width/height
+    int ww = this->size().width();
+    int wh = this->size().height();
 
-    QImage img(m_activeRender->extractFrame(m_activeRender->seekFramePosition()));
-    newFrames.fetchAndStoreRelease(0); // Reset number of new frames, as we just got the newest
-    uchar *bits = img.bits();
+    // Distance from top/left/right
+    int offset = 6;
 
-    int r,g,b;
-    double dy, dr, dg, db, dmax;
-    double y,u,v;
-    QPoint pt;
-    QRgb px;
+    // We want to paint below the controls area. The line is the lowest element.
+    QPoint topleft(offset, ui->line->y()+offset);
 
-    for (int i = 0; i < img.byteCount(); i+= 4) {
-        QRgb *col = (QRgb *) bits;
+    // Circle Width: min of width and height
+    cw = wh - topleft.y();
+    if (ww < cw) { cw = ww; }
+    cw -= 2*offset;
 
-        r = qRed(*col);
-        g = qGreen(*col);
-        b = qBlue(*col);
+    QRect scopeRect(topleft, QPoint(cw, cw) + topleft);
 
-        y = (double) 0.001173 * r + 0.002302 * g + 0.0004471 * b;
-        u = (double) -0.0005781*r -0.001135*g +0.001713*b;
-        v = (double) 0.002411*r -0.002019*g -0.0003921*b;
+    m_centerPoint = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), QPointF(0,0));
+    pR75 = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), P75*VectorscopeGenerator::scaling*YUV_R);
+    pG75 = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), P75*VectorscopeGenerator::scaling*YUV_G);
+    pB75 = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), P75*VectorscopeGenerator::scaling*YUV_B);
+    pCy75 = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), P75*VectorscopeGenerator::scaling*YUV_Cy);
+    pMg75 = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), P75*VectorscopeGenerator::scaling*YUV_Mg);
+    pYl75 = m_vectorscopeGenerator->mapToCircle(scopeRect.size(), P75*VectorscopeGenerator::scaling*YUV_Yl);
 
-        pt = mapToCanvas(QRect(QPoint(0,0), scope.size()), QPointF(SCALING*scaling*u, SCALING*scaling*v));
+    return scopeRect;
+}
 
-        if (!(pt.x() <= scopeRect.width() && pt.x() >= 0
-            && pt.y() <= scopeRect.height() && pt.y() >= 0)) {
-            // Point lies outside (because of scaling), don't plot it
-            continue;
-        }
+bool Vectorscope::isHUDDependingOnInput() const { return false; }
+bool Vectorscope::isScopeDependingOnInput() const { return true; }
+bool Vectorscope::isBackgroundDependingOnInput() const { return false; }
 
-        // Draw the pixel using the chosen draw mode
-        switch (iPaintMode) {
-        case CHROMA:
-            dy = 200;
-            dr = dy + 290.8*v;
-            dg = dy - 100.6*u - 148*v;
-            db = dy + 517.2*u;
+QImage Vectorscope::renderHUD(uint)
+{
 
-            dmax = dr;
-            if (dg > dmax) dmax = dg;
-            if (db > dmax) dmax = db;
-            dmax = 255/dmax;
+    QImage hud;
 
-            dr *= dmax;
-            dg *= dmax;
-            db *= dmax;
+    if (m_circleEnabled) {
+        // Mouse moved: Draw a circle over the scope
 
-            scope.setPixel(pt, qRgba(dr, dg, db, 255));
-            break;
-        case ORIG:
-            scope.setPixel(pt, *col);
+        hud = QImage(m_scopeRect.size(), QImage::Format_ARGB32);
+        hud.fill(qRgba(0, 0, 0, 0));
+
+        QPainter davinci(&hud);
+        QPoint widgetCenterPoint = m_scopeRect.topLeft() + m_centerPoint;
+
+        int dx = -widgetCenterPoint.x()+m_mousePos.x();
+        int dy =  widgetCenterPoint.y()-m_mousePos.y();
+
+        QPoint reference = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), QPointF(1,0));
+
+        float r = sqrt(dx*dx + dy*dy);
+        float percent = (float) 100*r/VectorscopeGenerator::scaling/m_gain/(reference.x() - widgetCenterPoint.x());
+
+        switch (ui->backgroundMode->itemData(ui->backgroundMode->currentIndex()).toInt()) {
+        case BG_NONE:
+            davinci.setPen(penLight);
             break;
-        case GREEN:
-            px = scope.pixel(pt);
-            scope.setPixel(pt, qRgba(qRed(px)+(255-qRed(px))/40, 255, qBlue(px)+(255-qBlue(px))/40, qAlpha(px)+(255-qAlpha(px))/20));
+        default:
+            davinci.setPen(penDark);
             break;
         }
+        davinci.drawEllipse(m_centerPoint, (int)r, (int)r);
+        davinci.setPen(penThin);
+        davinci.drawText(QPoint(m_scopeRect.width()-40, m_scopeRect.height()), i18n("%1 \%", QString::number(percent, 'f', 0)));
 
-        bits += 4;
-    }
-
-    m_scope = scope;
+        float angle = copysign(acos(dx/r)*180/M_PI, dy);
+        davinci.drawText(QPoint(10, m_scopeRect.height()), i18n("%1°", QString::number(angle, 'f', 1)));
 
-    qDebug() << "Scope rendered";
-    emit signalScopeCalculationFinished();
+        m_circleEnabled = false;
+    } else {
+        hud = QImage(0, 0, QImage::Format_ARGB32);
+    }
+    emit signalHUDRenderingFinished(0, 1);
+    return hud;
 }
 
-void Vectorscope::updateDimensions()
+QImage Vectorscope::renderScope(uint accelerationFactor)
 {
-    // Widget width/height
-    int ww = this->size().width();
-    int wh = this->size().height();
+    QTime start = QTime::currentTime();
+    QImage scope;
 
-    // Distance from top/left/right
-    int offset = 6;
+    if (cw <= 0) {
+        qDebug() << "Scope size not known yet. Aborting.";
+    } else {
 
-    // controlsArea contains the controls at the top;
-    // We want to paint below
-    QPoint topleft(offset, controlsArea->geometry().height()+offset);
+        scope = m_vectorscopeGenerator->calculateVectorscope(m_scopeRect.size(),
+                                                             m_activeRender->extractFrame(m_activeRender->seekFramePosition()),
+                                                             m_gain, (VectorscopeGenerator::PaintMode) ui->paintMode->itemData(ui->paintMode->currentIndex()).toInt(),
+                                                             m_aAxisEnabled->isChecked(), accelerationFactor);
 
-    // Circle Width: min of width and height
-    cw = wh - topleft.y();
-    if (ww < cw) { cw = ww; }
-    cw -= 2*offset;
-    scopeRect = QRect(topleft, QPoint(cw, cw) + topleft);
+    }
+
+    unsigned int mseconds = start.msecsTo(QTime::currentTime());
+//    qDebug() << "Scope rendered in " << mseconds << " ms. Sending finished signal.";
+//    emit signalScopeCalculationFinished(mseconds, skipPixels);
+    emit signalScopeRenderingFinished(mseconds, accelerationFactor);
+//    qDebug() << "xxScope: Signal finished sent.";
+    return scope;
 }
 
-void Vectorscope::paintEvent(QPaintEvent *)
+QImage Vectorscope::renderBackground(uint)
 {
-
-    if (!initialDimensionUpdateDone) {
-        // This is a workaround.
-        // When updating the dimensions in the constructor, the size
-        // of the control items at the top are simply ignored! So do
-        // it here instead.
-        updateDimensions();
-        initialDimensionUpdateDone = true;
+    QTime start = QTime::currentTime();
+    start.start();
+
+    QImage bg;
+    switch (ui->backgroundMode->itemData(ui->backgroundMode->currentIndex()).toInt()) {
+    case BG_YUV:
+        qDebug() << "YUV background.";
+        bg = m_colorTools->yuvColorWheel(m_scopeRect.size(), (unsigned char) 128, 1/VectorscopeGenerator::scaling, false, true);
+        break;
+    case BG_CHROMA:
+        bg = m_colorTools->yuvColorWheel(m_scopeRect.size(), (unsigned char) 255, 1/VectorscopeGenerator::scaling, true, true);
+        break;
+    default:
+        qDebug() << "No background.";
+        bg = QImage(cw, cw, QImage::Format_ARGB32);
+        bg.fill(qRgba(0,0,0,0));
+        break;
     }
 
+
     // Draw the vectorscope circle
-    QPainter davinci(this);
+    QPainter davinci(&bg);
     QPoint vinciPoint;
-    QPoint centerPoint = mapToCanvas(scopeRect, QPointF(0,0));
+
+
     davinci.setRenderHint(QPainter::Antialiasing, true);
-    davinci.fillRect(0, 0, this->size().width(), this->size().height(), QColor(25,25,23));
 
     davinci.setPen(penThick);
-    davinci.drawEllipse(scopeRect);
+    davinci.drawEllipse(0, 0, cw, cw);
 
     // Draw RGB/CMY points with 100% chroma
-    vinciPoint = mapToCanvas(scopeRect, SCALING*YUV_R);
+    vinciPoint = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), VectorscopeGenerator::scaling*YUV_R);
     davinci.drawEllipse(vinciPoint, 4,4);
     davinci.drawText(vinciPoint-QPoint(20, -10), "R");
 
-    vinciPoint = mapToCanvas(scopeRect, SCALING*YUV_G);
+    vinciPoint = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), VectorscopeGenerator::scaling*YUV_G);
     davinci.drawEllipse(vinciPoint, 4,4);
     davinci.drawText(vinciPoint-QPoint(20, 0), "G");
 
-    vinciPoint = mapToCanvas(scopeRect, SCALING*YUV_B);
+    vinciPoint = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), VectorscopeGenerator::scaling*YUV_B);
     davinci.drawEllipse(vinciPoint, 4,4);
     davinci.drawText(vinciPoint+QPoint(15, 10), "B");
 
-    vinciPoint = mapToCanvas(scopeRect, SCALING*YUV_Cy);
+    vinciPoint = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), VectorscopeGenerator::scaling*YUV_Cy);
     davinci.drawEllipse(vinciPoint, 4,4);
     davinci.drawText(vinciPoint+QPoint(15, -5), "Cy");
 
-    vinciPoint = mapToCanvas(scopeRect, SCALING*YUV_Mg);
+    vinciPoint = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), VectorscopeGenerator::scaling*YUV_Mg);
     davinci.drawEllipse(vinciPoint, 4,4);
     davinci.drawText(vinciPoint+QPoint(15, 10), "Mg");
 
-    vinciPoint = mapToCanvas(scopeRect, SCALING*YUV_Yl);
+    vinciPoint = m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), VectorscopeGenerator::scaling*YUV_Yl);
     davinci.drawEllipse(vinciPoint, 4,4);
     davinci.drawText(vinciPoint-QPoint(25, 0), "Yl");
 
-    // Draw RGB/CMY points with 75% chroma (for NTSC)
-    davinci.setPen(penThin);
-    davinci.drawEllipse(centerPoint, 4,4);
-    davinci.drawEllipse(mapToCanvas(scopeRect, P75*SCALING*YUV_R), 3,3);
-    davinci.drawEllipse(mapToCanvas(scopeRect, P75*SCALING*YUV_G), 3,3);
-    davinci.drawEllipse(mapToCanvas(scopeRect, P75*SCALING*YUV_B), 3,3);
-    davinci.drawEllipse(mapToCanvas(scopeRect, P75*SCALING*YUV_Cy), 3,3);
-    davinci.drawEllipse(mapToCanvas(scopeRect, P75*SCALING*YUV_Mg), 3,3);
-    davinci.drawEllipse(mapToCanvas(scopeRect, P75*SCALING*YUV_Yl), 3,3);
-
-
-
+    switch (ui->backgroundMode->itemData(ui->backgroundMode->currentIndex()).toInt()) {
+    case BG_NONE:
+        davinci.setPen(penLight);
+        break;
+    default:
+        davinci.setPen(penDark);
+        break;
+    }
 
-    davinci.setPen(penLight);
+    // Draw axis
+    if (m_aAxisEnabled->isChecked()) {
+        davinci.drawLine(m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), QPointF(0,-.9)), m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), QPointF(0,.9)));
+        davinci.drawLine(m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), QPointF(-.9,0)), m_vectorscopeGenerator->mapToCircle(m_scopeRect.size(), QPointF(.9,0)));
+    }
 
+    // Draw center point
+    switch (ui->backgroundMode->itemData(ui->backgroundMode->currentIndex()).toInt()) {
+    case BG_CHROMA:
+        davinci.setPen(penDark);
+        break;
+    default:
+        davinci.setPen(penThin);
+        break;
+    }
+    davinci.drawEllipse(m_centerPoint, 5,5);
 
-    // Draw the scope data (previously calculated in a separate thread)
-    davinci.drawImage(scopeRect.topLeft(), m_scope);
 
+    // Draw 75% box
+    if (m_a75PBox->isChecked()) {
+        davinci.drawLine(pR75, pYl75);
+        davinci.drawLine(pYl75, pG75);
+        davinci.drawLine(pG75, pCy75);
+        davinci.drawLine(pCy75, pB75);
+        davinci.drawLine(pB75, pMg75);
+        davinci.drawLine(pMg75, pR75);
+    }
 
-    if (circleEnabled) {
-        // Mouse moved: Draw a circle over the scope
+    // Draw RGB/CMY points with 75% chroma (for NTSC)
+    davinci.setPen(penThin);
+    davinci.drawEllipse(pR75, 3,3);
+    davinci.drawEllipse(pG75, 3,3);
+    davinci.drawEllipse(pB75, 3,3);
+    davinci.drawEllipse(pCy75, 3,3);
+    davinci.drawEllipse(pMg75, 3,3);
+    davinci.drawEllipse(pYl75, 3,3);
+
+    // Draw realtime factor (number of skipped pixels)
+    if (m_aRealtime->isChecked()) {
+        davinci.setPen(penThin);
+        davinci.drawText(QPoint(m_scopeRect.width()-40, m_scopeRect.height()-15), QVariant(m_accelFactorScope).toString().append("x"));
+    }
 
-        int dx = centerPoint.x()-mousePos.x();
-        int dy = centerPoint.y()-mousePos.y();
+    emit signalBackgroundRenderingFinished(start.elapsed(), 1);
+    return bg;
+}
 
-        QPoint reference = mapToCanvas(scopeRect, QPointF(1,0));
 
-        int r = sqrt(dx*dx + dy*dy);
-        float percent = (float) 100*r/SCALING/scaling/(reference.x() - centerPoint.x());
 
-        davinci.drawEllipse(centerPoint, r,r);
-        davinci.setPen(penThin);
-        davinci.drawText(scopeRect.bottomRight()-QPoint(40,0), QVariant((int)percent).toString().append(" %"));
 
-        circleEnabled = false;
-    }
-}
+///// Slots /////
 
-void Vectorscope::slotPaintModeChanged(int index)
+void Vectorscope::slotGainChanged(int newval)
 {
-    iPaintMode = index;
-    this->update();
+    m_gain = 1 + (float)newval/10;
+    ui->lblGain->setText(QString::number(m_gain, 'f', 1) + "x");
+    forceUpdateScope();
 }
 
-void Vectorscope::slotMagnifyChanged()
+void Vectorscope::slotExportBackground()
 {
-    if (cbMagnify->isChecked()) {
-        scaling = 1.4;
-    } else {
-        scaling = 1;
-    }
-    this->update();
-}
+    qDebug() << "Exporting background";
+    m_colorPlaneExport->show();
 
-void Vectorscope::slotActiveMonitorChanged(bool isClipMonitor)
-{
-    if (isClipMonitor) {
-        m_activeRender = m_clipMonitor->render;
-        disconnect(this, SLOT(slotRenderZoneUpdated()));
-        connect(m_activeRender, SIGNAL(rendererPosition(int)), this, SLOT(slotRenderZoneUpdated()));
-    } else {
-        m_activeRender = m_projMonitor->render;
-        disconnect(this, SLOT(slotRenderZoneUpdated()));
-        connect(m_activeRender, SIGNAL(rendererPosition(int)), this, SLOT(slotRenderZoneUpdated()));
-    }
 }
 
-void Vectorscope::slotRenderZoneUpdated()
+void Vectorscope::slotBackgroundChanged()
 {
-    qDebug() << "Monitor incoming. New frames total: " << newFrames;
-    // Monitor has shown a new frame
-    newFrames.fetchAndAddRelaxed(1);
-    if (cbAutoRefresh->isChecked()) {
-        prodCalcThread();
+    // Background changed, switch to a suitable color mode now
+    int index;
+    switch (ui->backgroundMode->itemData(ui->backgroundMode->currentIndex()).toInt()) {
+    case BG_YUV:
+        index = ui->paintMode->findData(QVariant(VectorscopeGenerator::PaintMode_Black));
+        if (index >= 0) {
+            ui->paintMode->setCurrentIndex(index);
+        }
+        break;
+
+    case BG_NONE:
+        if (ui->paintMode->itemData(ui->paintMode->currentIndex()).toInt() == VectorscopeGenerator::PaintMode_Black) {
+            index = ui->paintMode->findData(QVariant(VectorscopeGenerator::PaintMode_Green2));
+            ui->paintMode->setCurrentIndex(index);
+        }
+        break;
     }
+    forceUpdateBackground();
 }
 
-void Vectorscope::mousePressEvent(QMouseEvent *)
-{
-    // Update the scope on mouse press
-    prodCalcThread();
-}
+
+
+///// Events /////
 
 void Vectorscope::mouseMoveEvent(QMouseEvent *event)
 {
     // Draw a circle around the center,
     // showing percentage number of the radius length
 
-    circleEnabled = true;
-    mousePos = event->pos();
-    this->update();
+    m_circleEnabled = true;
+    m_mousePos = event->pos();
+    forceUpdateHUD();
 }
 
-void Vectorscope::resizeEvent(QResizeEvent *event)
+void Vectorscope::leaveEvent(QEvent *event)
 {
-    qDebug() << "Resized.";
-    updateDimensions();
-    QWidget::resizeEvent(event);
-}
+    // Repaint the HUD without the circle
 
-void Vectorscope::slotScopeCalculationFinished()
-{
-    this->update();
-    qDebug() << "Scope updated.";
-
-    // If auto-refresh is enabled and new frames are available,
-    // just start the next calculation.
-    if (newFrames > 0 && cbAutoRefresh->isChecked()) {
-        qDebug() << "More frames in the queue: " << newFrames;
-        prodCalcThread();
-    }
+    m_circleEnabled = false;
+    QWidget::leaveEvent(event);
+    forceUpdateHUD();
 }