]> git.sesse.net Git - kdenlive/blob - src/simplekeyframes/simplekeyframewidget.h
rotoscoping: allow to move keyframes
[kdenlive] / src / simplekeyframes / simplekeyframewidget.h
1 /***************************************************************************
2  *   Copyright (C) 2011 by Till Theato (root@ttill.de)                     *
3  *   This file is part of Kdenlive (www.kdenlive.org).                     *
4  *                                                                         *
5  *   Kdenlive 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  *   Kdenlive is distributed in the hope that it will be useful,           *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with Kdenlive.  If not, see <http://www.gnu.org/licenses/>.     *
17  ***************************************************************************/
18
19 #ifndef SIMPLEKEYFRAMEWIDGET_H
20 #define SIMPLEKEYFRAMEWIDGET_H
21
22 #include "timecode.h"
23
24 #include <QtCore>
25 #include <QWidget>
26
27 class SimpleTimelineWidget;
28 class TimecodeDisplay;
29 class QToolButton;
30
31
32 class SimpleKeyframeWidget : public QWidget
33 {
34     Q_OBJECT
35
36 public:
37     SimpleKeyframeWidget(Timecode t, int duration, QWidget* parent = 0);
38     virtual ~SimpleKeyframeWidget();
39
40     int getPosition();
41     void setKeyframes(const QList <int> &keyframes);
42     void addKeyframe(int pos = -1);
43
44 public slots:
45     void slotSetPosition(int pos = -1, bool update = true);
46
47 signals:
48     void positionChanged(int pos);
49     void keyframeAdded(int pos);
50     void keyframeRemoved(int pos);
51     void keyframeMoved(int oldPos, int newPos);
52
53 private:
54     SimpleTimelineWidget *m_timeline;
55     QToolButton *m_buttonAddDelete;
56     QToolButton *m_buttonPrevious;
57     QToolButton *m_buttonNext;
58     //QToolButton *m_buttonSync;
59     TimecodeDisplay *m_time;
60 };
61
62
63 #endif