]> git.sesse.net Git - kdenlive/blob - src/cornerswidget.h
corners: Add keyframe by double-clicking on the monitor
[kdenlive] / src / cornerswidget.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Till Theato (root@ttill.de)                     *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program; if not, write to the                         *
16  *   Free Software Foundation, Inc.,                                       *
17  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA          *
18  ***************************************************************************/
19
20
21 #ifndef CORNERSWIDGET_H
22 #define CORNERSWIDGET_H
23
24 #include "keyframeedit.h"
25
26
27 class QDomElement;
28 class Monitor;
29 class MonitorScene;
30 class OnMonitorCornersItem;
31 class MonitorSceneControlWidget;
32
33
34 class CornersWidget : public KeyframeEdit
35 {
36     Q_OBJECT
37 public:
38     /** @brief Sets up the UI and connects it.
39      * @param monitor Project monitor
40      * @param clipPos Position of the clip in timeline
41      * @param isEffect true if used in an effect, false if used in a transition
42      * @param factor Factor by which the parameters differ from the range 0-1
43      * @param parent (optional) Parent widget */
44     CornersWidget(Monitor *monitor, QDomElement e, int minFrame, int maxFrame, Timecode tc, int activeKeyframe, QWidget* parent = 0);
45     virtual ~CornersWidget();
46
47     virtual void addParameter(QDomElement e, int activeKeyframe = -1);
48
49 public slots:
50     /** @brief Switches from normal monitor to monitor scene according to @param show. */
51     void slotShowScene(bool show = true);
52     /** @brief Updates the on-monitor item.  */
53     void slotSyncPosition(int relTimelinePos);
54
55 private:
56     Monitor *m_monitor;
57     MonitorScene *m_scene;
58     OnMonitorCornersItem *m_item;
59     bool m_showScene;
60     MonitorSceneControlWidget *m_config;
61     int m_pos;
62
63     /** @brief Returns the corner positions set in the row of @param keyframe. */
64     QList <QPointF> getPoints(QTableWidgetItem *keyframe);
65
66 private slots:
67     /** @brief Makes sure the monitor effect scene is only visible if the clip this geometry belongs to is visible.
68     * @param renderPos Postion of the Monitor / Timeline cursor */
69     void slotCheckMonitorPosition(int renderPos);
70
71     /** @brief Updates the on-monitor item according to the current timeline position. */
72     void slotUpdateItem();
73     /** @brief Updates the keyframe editor according to the on-monitor item. */
74     void slotUpdateProperties();
75
76     /** @brief Inserts a keyframe at the current (playback) position (m_pos). */
77     void slotInsertKeyframe();
78
79     /** @brief Shows/Hides the lines connecting the corners in the on-monitor item according to @param show. */
80     void slotShowLines(bool show = true);
81
82     /** @brief Shows/Hides additional controls on the monitor according to @param show. */
83     void slotShowControls(bool show = true);
84
85 signals:
86     void checkMonitorPosition(int);
87 };
88
89 #endif