1 /***************************************************************************
2 * Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org) *
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. *
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. *
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 ***************************************************************************/
24 #include <QGraphicsRectItem>
25 #include <QDomElement>
26 #include <QGraphicsSceneMouseEvent>
29 #include "definitions.h"
31 #include "effectslist.h"
32 #include "abstractclipitem.h"
37 class ClipItem : public AbstractClipItem {
41 ClipItem(DocClipBase *clip, ItemInfo info, GenTime cropStart, double scale, double fps);
43 virtual void paint(QPainter *painter,
44 const QStyleOptionGraphicsItem *option,
46 virtual int type() const;
47 void resizeStart(int posx, double scale);
48 void resizeEnd(int posx, double scale);
49 OPERATIONTYPE operationMode(QPointF pos, double scale);
50 int clipProducer() const;
52 DocClipBase *baseClip() const;
53 QString clipName() const;
54 QDomElement xml() const;
56 void setFadeOut(int pos, double scale);
57 void setFadeIn(int pos, double scale);
58 /** Give a string list of the clip's effect names */
59 QStringList effectNames();
60 /** Add an effect to the clip and return the parameters that will be passed to Mlt */
61 QMap <QString, QString> addEffect(QDomElement effect, bool animate = true);
62 /** Get the effect parameters that will be passed to Mlt */
63 QMap <QString, QString> getEffectArgs(QDomElement effect);
64 /** Delete effect with id index */
65 void deleteEffect(QString index);
66 /** return the number of effects in that clip */
68 /** return a unique effect id */
70 /** return the xml of effect at index ix in stack */
71 QDomElement effectAt(int ix);
72 /** Replace effect at pos ix with given value */
73 void setEffectAt(int ix, QDomElement effect);
75 void addTransition(Transition*);
76 /** regenerate audio and video thumbnails */
78 /** update clip properties from base clip */
80 /** Returns a list of times for this clip's markers */
81 QList <GenTime> snapMarkers() const;
82 QList <CommentedTime> commentedSnapMarkers() const;
85 void setSelectedEffect(const int ix);
86 void updateKeyframeEffect();
87 QDomElement selectedEffect();
88 int selectedEffectIndex() const;
89 void initEffect(QDomElement effect);
90 QString keyframes(const int index);
91 void setKeyframes(const int ix, const QString keyframes);
94 //virtual void mouseMoveEvent(QGraphicsSceneMouseEvent * event);
95 virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * event);
96 virtual void mousePressEvent(QGraphicsSceneMouseEvent * event);
97 virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event);
98 virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event);
99 virtual void dropEvent(QGraphicsSceneDragDropEvent *event);
100 virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *);
101 virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *);
105 OPERATIONTYPE m_resizeMode;
110 QString m_effectNames;
119 QTimer *startThumbTimer;
120 QTimer *endThumbTimer;
122 /** counter used to provide a unique id to each effect */
123 int m_effectsCounter;
124 int m_selectedEffect;
126 QTimeLine *m_timeLine;
127 uint m_thumbsRequested;
130 EffectsList m_effectList;
131 QList <Transition*> m_transitionsList;
132 QMap<int, QPixmap> audioThumbCachePic;
133 bool audioThumbWasDrawn, audioThumbReady;
134 double framePixelWidth;
135 QMap<int, QPainterPath > channelPaths;
136 /** Called when clip start is resized, adjust keyframes values */
137 void checkEffectsKeyframesPos(const int previous, const int current, bool fromStart);
139 void slotThumbReady(int frame, QPixmap pix);
140 void slotFetchThumbs();
141 void slotGetStartThumb();
142 void slotGetEndThumb();
143 void slotGotAudioData();
144 void slotPrepareAudioThumb(double pixelForOneFrame, QPainterPath path, int startpixel, int endpixel, int channels);
145 void animate(qreal value);
148 void getThumb(int, int);
149 void prepareAudioThumb(double, QPainterPath, int, int, int);