]> git.sesse.net Git - kdenlive/blob - src/vectorscope.h
Improve the export audio automatic setting:
[kdenlive] / src / vectorscope.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Simon Andreas Eugster (simon.eu@gmail.com)      *
3  *   This file is part of kdenlive. See www.kdenlive.org.                  *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10
11 #ifndef VECTORSCOPE_H
12 #define VECTORSCOPE_H
13
14 #include <QtCore>
15 #include "ui_vectorscope_ui.h"
16 #include "abstractscopewidget.h"
17
18 class ColorPlaneExport;
19 class ColorTools;
20 class Render;
21 class Monitor;
22 class Vectorscope_UI;
23 class VectorscopeGenerator;
24
25 enum BACKGROUND_MODE { BG_NONE = 0, BG_YUV = 1, BG_CHROMA = 2 };
26
27 class Vectorscope : public AbstractScopeWidget {
28     Q_OBJECT
29
30 public:
31     Vectorscope(Monitor *projMonitor, Monitor *clipMonitor, QWidget *parent = 0);
32     ~Vectorscope();
33
34     QString widgetName() const;
35
36 protected:
37     void mouseMoveEvent(QMouseEvent *);
38     void leaveEvent(QEvent *);
39
40
41     ///// Implemented methods /////
42     QRect scopeRect();
43     QImage renderHUD(uint accelerationFactor);
44     QImage renderScope(uint accelerationFactor);
45     QImage renderBackground(uint accelerationFactor);
46     bool isHUDDependingOnInput() const;
47     bool isScopeDependingOnInput() const;
48     bool isBackgroundDependingOnInput() const;
49
50 private:
51     Ui::Vectorscope_UI *ui;
52
53     ColorTools *m_colorTools;
54     ColorPlaneExport *m_colorPlaneExport;
55
56     QAction *m_aExportBackground;
57     QAction *m_aAxisEnabled;
58     QAction *m_a75PBox;
59
60     VectorscopeGenerator *m_vectorscopeGenerator;
61
62     /** How to represent the pixels on the scope (green, original color, ...) */
63     int iPaintMode;
64
65     /** Custom scaling of the vectorscope */
66     float m_gain;
67
68     QPoint m_centerPoint, pR75, pG75, pB75, pCy75, pMg75, pYl75;
69
70     bool m_circleEnabled;
71     QPoint m_mousePos;
72
73     /** Updates the dimension. Only necessary when the widget has been resized. */
74     void updateDimensions();
75     int cw;
76
77     /** Counts the number of frames that have been rendered in one of the monitors.
78       The frame number will be reset when the vectorscope starts calculating the
79       current frame. */
80 //    QAtomicInt newFrames;
81     /** Counts the number of other changes that should cause the vectorscope to be
82       recalculated. This is for example a resizeEvent. In this case, no new frames
83       are generated, but the scope has to be updated in any case (also if auto-update
84       is not enabled). */
85 //    QAtomicInt newChanges;
86     /** Counts the number of changes concerning the background wheel */
87 //    QAtomicInt newWheelChanges;
88
89
90 private slots:
91     void slotGainChanged(int);
92     void slotBackgroundChanged();
93     void slotExportBackground();
94 };
95
96 #endif // VECTORSCOPE_H