]> git.sesse.net Git - kdenlive/blob - src/geometryval.h
Fix composite transition and automask widgets
[kdenlive] / src / geometryval.h
1 /***************************************************************************
2                           geomeytrval.h  -  description
3                              -------------------
4     begin                : 03 Aug 2008
5     copyright            : (C) 2008 by Marco Gittler
6     email                : g.marco@freenet.de
7  ***************************************************************************/
8
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either version 2 of the License, or     *
14  *   (at your option) any later version.                                   *
15  *                                                                         *
16  ***************************************************************************/
17
18 #ifndef GEOMETRYVAL_H
19 #define GEOMETRYVAL_H
20
21
22 #include <QWidget>
23 #include <QDomElement>
24 #include <QGraphicsPathItem>
25 #include <QGraphicsView>
26
27 #include <mlt++/Mlt.h>
28
29 #include "ui_geometryval_ui.h"
30 #include "definitions.h"
31 #include "keyframehelper.h"
32 #include "ui_geometryposition_ui.h"
33
34 //class QGraphicsScene;
35 class GraphicsSceneRectMove;
36 class QGraphicsRectItem;
37 class QMouseEvent;
38
39
40 class Geometryval : public QWidget, public Ui::Geometryval
41 {
42     Q_OBJECT
43 public:
44     explicit Geometryval(const MltVideoProfile profile, QPoint frame_size, QWidget* parent = 0);
45     virtual ~Geometryval();
46     QDomElement getParamDesc();
47     QString getValue() const;
48     void setFrameSize(QPoint p);
49
50 private:
51     MltVideoProfile m_profile;
52     int m_realWidth;
53     GraphicsSceneRectMove *m_scene;
54     QGraphicsRectItem *m_paramRect;
55     Mlt::Geometry *m_geom;
56     KeyframeHelper *m_helper;
57     QGraphicsPathItem *m_path;
58     QMenu *m_configMenu;
59     QMenu *m_scaleMenu;
60     QMenu *m_alignMenu;
61     QAction *m_syncAction;
62     QAction *m_editGeom;
63     bool m_fixedMode;
64     QPoint m_frameSize;
65     Ui::GeometryPosition_UI m_view;
66     void updateTransitionPath();
67     double m_dar;
68     QGraphicsView *m_sceneview;
69
70 public slots:
71     void setupParam(const QDomElement, int, int);
72
73 private slots:
74     void slotNextFrame();
75     void slotPreviousFrame();
76     void slotPositionChanged(int pos, bool seek = true);
77     void slotDeleteFrame(int pos = -1);
78     void slotAddFrame(int pos = -1);
79     void slotUpdateTransitionProperties();
80     void slotTransparencyChanged(int transp);
81     void slotResize50();
82     void slotResize100();
83     void slotResize200();
84     void slotResizeCustom();
85     void slotResizeOriginal();
86     void slotAlignRight();
87     void slotAlignLeft();
88     void slotAlignTop();
89     void slotAlignBottom();
90     void slotAlignCenter();
91     void slotAlignHCenter();
92     void slotAlignVCenter();
93     void slotSyncCursor();
94     void slotGeometry();
95     void slotResetPosition();
96     void slotKeyframeMoved(int);
97
98 signals:
99     void parameterChanged();
100     void seekToPos(int);
101 };
102
103 #endif