]> git.sesse.net Git - kdenlive/blob - src/geometrywidget.h
Introduce very basic geometry editing on the monitor.
[kdenlive] / src / geometrywidget.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 GEOMETRYWIDGET_H
22 #define GEOMETRYWIDGET_H
23
24 #include "ui_geometrywidget_ui.h"
25 #include <mlt++/Mlt.h>
26
27 #include <QWidget>
28
29 class QDomElement;
30 class QGraphicsRectItem;
31 class Monitor;
32 class MonitorScene;
33
34 class GeometryWidget : public QWidget
35 {
36     Q_OBJECT
37 public:
38     GeometryWidget(Monitor *monitor, int clipPos = 0, QWidget* parent = 0);
39     virtual ~GeometryWidget();
40     QString getValue() const;
41
42 public slots:
43     void setupParam(const QDomElement elem, int minframe, int maxframe);
44
45 private:
46     Ui::GeometryWidget_UI m_ui;
47     int m_clipPos;
48     int m_inPoint;
49     int m_outPoint;
50     Monitor *m_monitor;
51     MonitorScene *m_scene;
52     QGraphicsRectItem *m_rect;
53     Mlt::Geometry *m_geometry;
54
55 private slots:
56     void slotCheckPosition(int renderPos);
57     void slotUpdateGeometry();
58     void slotUpdateProperties();
59     void slotSetX(int value);
60     void slotSetY(int value);
61     void slotSetWidth(int value);
62     void slotSetHeight(int value);
63
64 signals:
65     void parameterChanged();
66 };
67
68 #endif