]> git.sesse.net Git - kdenlive/blob - src/transition.h
Fix updating of keyframes when resizing a transition, and some bugs in undo
[kdenlive] / src / transition.h
1 /***************************************************************************
2                           transition.h  -  description
3                              -------------------
4     begin                : Tue Jan 24 2006
5     copyright            : (C) 2006 by Jean-Baptiste Mardelle
6     email                : jb@ader.ch
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 TRANSITION_H
19 #define TRANSITION_H
20
21 #include <QString>
22 #include <QGraphicsRectItem>
23 #include <QPixmap>
24 #include <QDomElement>
25 #include <QMap>
26
27 #include "gentime.h"
28 #include "definitions.h"
29 #include "abstractclipitem.h"
30
31
32 /**Describes a Transition, with a name, parameters keyframes, etc.
33   *@author Jean-Baptiste Mardelle
34   */
35
36 class ClipItem;
37
38 class Transition : public AbstractClipItem {
39     Q_OBJECT
40 public:
41
42     Transition(const ItemInfo info, int transitiontrack, double fps, QDomElement params = QDomElement(), bool automaticTransition = false);
43     virtual ~Transition();
44     virtual void paint(QPainter *painter,
45                        const QStyleOptionGraphicsItem *option,
46                        QWidget *widget);
47     virtual int type() const;
48     /** Returns an XML representation of this transition. */
49     QDomElement toXML();
50
51     /** Return the track number of transition in the playlist*/
52     int transitionEndTrack() const;
53     bool hasClip(const ClipItem * clip) const;
54     bool belongsToClip(const ClipItem * clip) const;
55     bool invertedTransition() const;
56     QString transitionName() const;
57     QString transitionTag() const;
58     OPERATIONTYPE operationMode(QPointF pos);
59     //const QMap < QString, QString > transitionParameters() const;
60     void setTransitionParameters(const QDomElement params);
61     void setTransitionDirection(bool inv);
62     void setTransitionTrack(int track);
63     QPixmap transitionPixmap() const;
64     //Transition *reparent(ClipItem * clip);
65     bool isValid() const;
66     /** Transition should be linked to another track */
67     void updateTransitionEndTrack(int newtrack);
68     void setForcedTrack(bool force, int track);
69     bool forcedTrack() const;
70     const ClipItem *referencedClip() const;
71     Transition *clone();
72     bool isAutomatic() const;
73     void setAutomatic(bool automatic);
74     bool hasGeometry();
75
76 protected:
77     virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
78
79 private:
80     bool m_singleClip;
81     QString m_name;
82     bool m_forceTransitionTrack;
83
84     /** true if the transition was added automatically and should be moved with its clip */
85     bool m_automaticTransition;
86     /** contains the transition parameters */
87     QDomElement m_parameters;
88     /** The clip to which the transition is attached */
89     ClipItem *m_referenceClip;
90
91     /** The 2nd clip to which the transition is attached */
92     ClipItem *m_secondClip;
93     int m_transitionTrack;
94
95     /** Return the display name for a transition type */
96     QString getTransitionName(const TRANSITIONTYPE & type);
97
98     /** Return the transition type for a given name */
99     TRANSITIONTYPE getTransitionForName(const QString & type);
100 };
101
102 #endif