]> git.sesse.net Git - kdenlive/blobdiff - src/vectorscope.h
Try to fix timecode error:
[kdenlive] / src / vectorscope.h
index 86ceadfba2c40999ea3830a32e3d61884e162b29..438efa4c9eec342aaa2ca18e3e0907fbd57d127a 100644 (file)
@@ -1,5 +1,6 @@
 /***************************************************************************
  *   Copyright (C) 2010 by Simon Andreas Eugster (simon.eu@gmail.com)      *
+ *   This file is part of kdenlive. See www.kdenlive.org.                  *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
 #ifndef VECTORSCOPE_H
 #define VECTORSCOPE_H
 
-#include "renderer.h"
+#include <QtCore>
 #include "ui_vectorscope_ui.h"
+#include "abstractscopewidget.h"
 
+class ColorPlaneExport;
+class ColorTools;
 class Render;
+class Monitor;
 class Vectorscope_UI;
+class VectorscopeGenerator;
 
-enum PAINT_MODE { GREEN = 0, ORIG = 1, CHROMA = 2 };
+enum BACKGROUND_MODE { BG_NONE = 0, BG_YUV = 1, BG_CHROMA = 2 };
 
-class Vectorscope : public QWidget, public Ui::Vectorscope_UI {
+class Vectorscope : public AbstractScopeWidget {
     Q_OBJECT
 
 public:
-    Vectorscope(Render *render, QWidget *parent = 0);
+    Vectorscope(Monitor *projMonitor, Monitor *clipMonitor, QWidget *parent = 0);
     ~Vectorscope();
 
+    QString widgetName() const;
+
 protected:
-    void paintEvent(QPaintEvent *);
-    void mousePressEvent(QMouseEvent *);
+    void mouseMoveEvent(QMouseEvent *);
+    void leaveEvent(QEvent *);
+
+
+    ///// Implemented methods /////
+    QRect scopeRect();
+    QImage renderHUD(uint accelerationFactor);
+    QImage renderScope(uint accelerationFactor);
+    QImage renderBackground(uint accelerationFactor);
+    bool isHUDDependingOnInput() const;
+    bool isScopeDependingOnInput() const;
+    bool isBackgroundDependingOnInput() const;
 
 private:
-    Render *m_render;
+    Ui::Vectorscope_UI *ui;
+
+    ColorTools *m_colorTools;
+    ColorPlaneExport *m_colorPlaneExport;
+
+    QAction *m_aExportBackground;
+    QAction *m_aAxisEnabled;
+    QAction *m_a75PBox;
+
+    VectorscopeGenerator *m_vectorscopeGenerator;
+
+    /** How to represent the pixels on the scope (green, original color, ...) */
     int iPaintMode;
-    float scaling;
-    QPoint mapToCanvas(QRect inside, QPointF point);
 
-private slots:
-    void slotPaintModeChanged(int index);
-    void slotMagnifyChanged();
+    /** Custom scaling of the vectorscope */
+    float m_gain;
+
+    QPoint m_centerPoint, pR75, pG75, pB75, pCy75, pMg75, pYl75;
+
+    bool m_circleEnabled;
+    QPoint m_mousePos;
+
+    /** Updates the dimension. Only necessary when the widget has been resized. */
+    void updateDimensions();
+    int cw;
 
+    /** Counts the number of frames that have been rendered in one of the monitors.
+      The frame number will be reset when the vectorscope starts calculating the
+      current frame. */
+//    QAtomicInt newFrames;
+    /** Counts the number of other changes that should cause the vectorscope to be
+      recalculated. This is for example a resizeEvent. In this case, no new frames
+      are generated, but the scope has to be updated in any case (also if auto-update
+      is not enabled). */
+//    QAtomicInt newChanges;
+    /** Counts the number of changes concerning the background wheel */
+//    QAtomicInt newWheelChanges;
+
+
+private slots:
+    void slotGainChanged(int);
+    void slotBackgroundChanged();
+    void slotExportBackground();
 };
 
 #endif // VECTORSCOPE_H