]> git.sesse.net Git - kdenlive/blob - src/geometryval.h
Insert Space Dialog:
[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 "timecodedisplay.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, Timecode t, QPoint frame_size, int startPoint = 0, QWidget* parent = 0);
45     virtual ~Geometryval();
46     QDomElement getParamDesc();
47     QString getValue() const;
48     void setFrameSize(QPoint p);
49     /* update the timecode display depending on what the user wants (frame number or hh:mm:ss:ff) */
50     void updateTimecodeFormat();
51
52 private:
53     MltVideoProfile m_profile;
54     int m_realWidth;
55     GraphicsSceneRectMove *m_scene;
56     QGraphicsRectItem *m_paramRect;
57     Mlt::Geometry *m_geom;
58     KeyframeHelper *m_helper;
59     QGraphicsPathItem *m_path;
60     QMenu *m_configMenu;
61     QAction *m_syncAction;
62     QAction *m_editOptions;
63     QAction *m_reset;
64     bool m_fixedMode;
65     QPoint m_frameSize;
66     void updateTransitionPath();
67     double m_dar;
68     int m_startPoint;
69     QGraphicsView *m_sceneview;
70     TimecodeDisplay m_timePos;
71     bool keyframeSelected();
72
73 public slots:
74     void setupParam(const QDomElement, int, int);
75
76 private slots:
77     void slotNextFrame();
78     void slotPreviousFrame();
79     void slotPositionChanged(int pos = -1, bool seek = true);
80     void slotDeleteFrame(int pos = -1);
81     void slotAddFrame(int pos = -1);
82     void slotUpdateTransitionProperties();
83     void slotTransparencyChanged(int transp);
84     void slotResizeCustom();
85     void slotResizeOriginal();
86     void slotAlignRight();
87     void slotAlignLeft();
88     void slotAlignTop();
89     void slotAlignBottom();
90     void slotAlignHCenter();
91     void slotAlignVCenter();
92     void slotSyncCursor();
93     void slotResetPosition();
94     void slotKeyframeMoved(int);
95     void slotSwitchOptions();
96     void slotUpdateGeometry();
97     void slotGeometryX(int value);
98     void slotGeometryY(int value);
99     void slotGeometryWidth(int value);
100     void slotGeometryHeight(int value);
101
102 signals:
103     void parameterChanged();
104     void seekToPos(int);
105 };
106
107 #endif