]> git.sesse.net Git - kdenlive/blob - src/definitions.h
definitions.h: initialize ItemInfo [Coverity 12/14] by Mikko Rapeli
[kdenlive] / src / definitions.h
1 /***************************************************************************
2  *   Copyright (C) 2007 by Jean-Baptiste Mardelle (jb@kdenlive.org)        *
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 DEFINITIONS_H
22 #define DEFINITIONS_H
23
24 #include "gentime.h"
25 #include "effectslist.h"
26
27 #include <KLocale>
28 #include <QDebug>
29
30 #include <QTreeWidgetItem>
31  #include <QtCore/QString>
32
33 const int MAXCLIPDURATION = 15000;
34
35 namespace Kdenlive {
36   enum MONITORID { noMonitor, clipMonitor, projectMonitor, recordMonitor, stopmotionMonitor, dvdMonitor };
37   /*const QString clipMonitor("clipMonitor");
38   const QString recordMonitor("recordMonitor");
39   const QString projectMonitor("projectMonitor");
40   const QString stopmotionMonitor("stopmotionMonitor");*/
41 }
42
43 enum OPERATIONTYPE { NONE = 0, MOVE = 1, RESIZESTART = 2, RESIZEEND = 3, FADEIN = 4, FADEOUT = 5, TRANSITIONSTART = 6, TRANSITIONEND = 7, MOVEGUIDE = 8, KEYFRAME = 9, SEEK = 10, SPACER = 11, RUBBERSELECTION = 12};
44 enum CLIPTYPE { UNKNOWN = 0, AUDIO = 1, VIDEO = 2, AV = 3, COLOR = 4, IMAGE = 5, TEXT = 6, SLIDESHOW = 7, VIRTUAL = 8, PLAYLIST = 9 };
45
46 enum PROJECTITEMTYPE { PROJECTCLIPTYPE = QTreeWidgetItem::UserType, PROJECTFOLDERTYPE, PROJECTSUBCLIPTYPE };
47
48 enum GRAPHICSRECTITEM { AVWIDGET = 70000 , LABELWIDGET , TRANSITIONWIDGET  , GROUPWIDGET};
49
50 enum PROJECTTOOL { SELECTTOOL = 0 , RAZORTOOL = 1 , SPACERTOOL = 2 };
51
52 enum TRANSITIONTYPE {
53     /** TRANSITIONTYPE: between 0-99: video trans, 100-199: video+audio trans, 200-299: audio trans */
54     LUMA_TRANSITION = 0,
55     COMPOSITE_TRANSITION = 1,
56     PIP_TRANSITION = 2,
57     LUMAFILE_TRANSITION = 3,
58     MIX_TRANSITION = 200
59 };
60
61 enum MessageType {
62     DefaultMessage,
63     OperationCompletedMessage,
64     InformationMessage,
65     ErrorMessage,
66     MltError
67 };
68
69 enum TRACKTYPE { AUDIOTRACK = 0, VIDEOTRACK = 1 };
70
71 enum CLIPJOBSTATUS { NOJOB = 0, JOBWAITING = -1, JOBWORKING = -2, JOBDONE = -3, JOBCRASHED = -4, JOBABORTED = -5};
72
73 struct TrackInfo {
74     TRACKTYPE type;
75     QString trackName;
76     bool isMute;
77     bool isBlind;
78     bool isLocked;
79     EffectsList effectsList;
80     int duration;
81 };
82
83 typedef QMap<QString, QString> stringMap;
84 typedef QMap <int, QMap <int, QByteArray> > audioByteArray;
85
86 class ItemInfo {
87 public:
88     /** startPos is the position where the clip starts on the track */
89     GenTime startPos;
90     /** endPos is the duration where the clip ends on the track */
91     GenTime endPos;
92     /** cropStart is the position where the sub-clip starts, relative to the clip's 0 position */
93     GenTime cropStart;
94     /** cropDuration is the duration of the clip */
95     GenTime cropDuration;
96     int track;
97     ItemInfo() : track(0) {};
98 };
99
100 struct TransitionInfo {
101 /** startPos is the position where the clip starts on the track */
102     GenTime startPos;
103     /** endPos is the duration where the clip ends on the track */
104     GenTime endPos;
105     /** the track on which the transition is (b_track)*/
106     int b_track;
107     /** the track on which the transition is applied (a_track)*/
108     int a_track;
109     /** Does the user request for a special a_track */
110     bool forceTrack;
111 };
112
113 class MltVideoProfile {
114 public:
115     QString path;
116     QString description;
117     int frame_rate_num;
118     int frame_rate_den;
119     int width;
120     int height;
121     bool progressive;
122     int sample_aspect_num;
123     int sample_aspect_den;
124     int display_aspect_num;
125     int display_aspect_den;
126     int colorspace;
127     MltVideoProfile() :
128         frame_rate_num(0),
129         frame_rate_den(0),
130         width(0),
131         height(0),
132         progressive(0),
133         sample_aspect_num(0),
134         sample_aspect_den(0),
135         display_aspect_num(0),
136         display_aspect_den(0),
137         colorspace(0) {};
138     bool operator==(const MltVideoProfile& point) const
139     {
140         if (!description.isEmpty() && point.description  == description) return true;
141         return      point.frame_rate_num == frame_rate_num &&
142                     point.frame_rate_den  == frame_rate_den  &&
143                     point.width == width &&
144                     point.height == height &&
145                     point.progressive == progressive &&
146                     point.sample_aspect_num == sample_aspect_num &&
147                     point.sample_aspect_den == sample_aspect_den &&
148                     point.display_aspect_den == display_aspect_den &&
149                     point.colorspace == colorspace;
150     }
151     bool operator!=(const MltVideoProfile &other) const {
152         return !(*this == other);
153     }
154 };
155
156 /**)
157  * @class EffectInfo
158  * @brief A class holding some meta info for effects widgets, like state (collapsed or not, ...)
159  * @author Jean-Baptiste Mardelle
160  */
161
162 class EffectInfo
163 {
164 public:
165     EffectInfo() {isCollapsed = false; groupIndex = -1; groupIsCollapsed = false;}
166     bool isCollapsed;
167     bool groupIsCollapsed;
168     int groupIndex;
169     QString groupName;
170     QString toString() const {
171         QStringList data;
172         // effect collapsed state: 0 = effect not collapsed, 1 = effect collapsed, 
173         // 2 = group collapsed - effect not, 3 = group and effect collapsed
174         int collapsedState = (int) isCollapsed;
175         if (groupIsCollapsed) collapsedState += 2;
176         data << QString::number(collapsedState) << QString::number(groupIndex) << groupName;
177         return data.join("/");
178     }
179     void fromString(QString value) {
180         if (value.isEmpty()) return;
181         QStringList data = value.split("/");
182         isCollapsed = data.at(0).toInt() == 1 || data.at(0).toInt() == 3;
183         groupIsCollapsed = data.at(0).toInt() >= 2;
184         if (data.count() > 1) groupIndex = data.at(1).toInt();
185         if (data.count() > 2) groupName = data.at(2);
186     }
187 };
188
189 class EffectParameter
190 {
191 public:
192     EffectParameter(const QString &name, const QString &value): m_name(name), m_value(value) {}
193     QString name()   const          {
194         return m_name;
195     }
196     QString value() const          {
197         return m_value;
198     }
199     void setValue(const QString &value) {
200         m_value = value;
201     }
202
203 private:
204     QString m_name;
205     QString m_value;
206 };
207
208 /** Use our own list for effect parameters so that they are not sorted in any ways, because
209     some effects like sox need a precise order
210 */
211 class EffectsParameterList: public QList < EffectParameter >
212 {
213 public:
214     EffectsParameterList(): QList < EffectParameter >() {}
215     bool hasParam(const QString &name) const {
216         for (int i = 0; i < size(); i++)
217             if (at(i).name() == name) return true;
218         return false;
219     }
220     void setParamValue(const QString &name, const QString &value) {
221         bool found = false;
222         for (int i = 0; i < size(); i++)
223             if (at(i).name() == name) {
224                 // update value
225                 replace(i, EffectParameter(name, value));
226                 found = true;
227             }
228         if (!found) addParam(name, value);
229     }
230         
231     QString paramValue(const QString &name, QString defaultValue = QString()) const {
232         for (int i = 0; i < size(); i++) {
233             if (at(i).name() == name) return at(i).value();
234         }
235         return defaultValue;
236     }
237     void addParam(const QString &name, const QString &value) {
238         if (name.isEmpty()) return;
239         append(EffectParameter(name, value));
240     }
241     void removeParam(const QString &name) {
242         for (int i = 0; i < size(); i++)
243             if (at(i).name() == name) {
244                 removeAt(i);
245                 break;
246             }
247     }
248 };
249
250 class CommentedTime
251 {
252 public:
253     CommentedTime(): t(GenTime(0)) {}
254     CommentedTime(const GenTime &time, QString comment)
255         : t(time), c(comment) { }
256
257     QString comment()   const          {
258         return (c.isEmpty() ? i18n("Marker") : c);
259     }
260     GenTime time() const          {
261         return t;
262     }
263     void    setComment(QString comm) {
264         c = comm;
265     }
266
267     /* Implementation of > operator; Works identically as with basic types. */
268     bool operator>(CommentedTime op) const {
269         return t > op.time();
270     }
271     /* Implementation of < operator; Works identically as with basic types. */
272     bool operator<(CommentedTime op) const {
273         return t < op.time();
274     }
275     /* Implementation of >= operator; Works identically as with basic types. */
276     bool operator>=(CommentedTime op) const {
277         return t >= op.time();
278     }
279     /* Implementation of <= operator; Works identically as with basic types. */
280     bool operator<=(CommentedTime op) const {
281         return t <= op.time();
282     }
283     /* Implementation of == operator; Works identically as with basic types. */
284     bool operator==(CommentedTime op) const {
285         return t == op.time();
286     }
287     /* Implementation of != operator; Works identically as with basic types. */
288     bool operator!=(CommentedTime op) const {
289         return t != op.time();
290     }
291
292 private:
293     GenTime t;
294     QString c;
295
296
297 };
298
299 QDebug operator << (QDebug qd, const ItemInfo &info);
300
301
302 #endif