]> git.sesse.net Git - kdenlive/blob - src/definitions.h
1a3a255769ca9f47a027050d24c3c213173eb6f7
[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 <QTreeWidgetItem>
28 #include <KLocale>
29
30 const int MAXCLIPDURATION = 15000;
31
32 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};
33 enum CLIPTYPE { UNKNOWN = 0, AUDIO = 1, VIDEO = 2, AV = 3, COLOR = 4, IMAGE = 5, TEXT = 6, SLIDESHOW = 7, VIRTUAL = 8, PLAYLIST = 9 };
34
35 enum PROJECTITEMTYPE { PROJECTCLIPTYPE = QTreeWidgetItem::UserType, PROJECTFOLDERTYPE, PROJECTSUBCLIPTYPE };
36
37 enum GRAPHICSRECTITEM { AVWIDGET = 70000 , LABELWIDGET , TRANSITIONWIDGET  , GROUPWIDGET};
38
39 enum PROJECTTOOL { SELECTTOOL = 0 , RAZORTOOL = 1 , SPACERTOOL = 2 };
40
41 enum TRANSITIONTYPE {
42     /** TRANSITIONTYPE: between 0-99: video trans, 100-199: video+audio trans, 200-299: audio trans */
43     LUMA_TRANSITION = 0,
44     COMPOSITE_TRANSITION = 1,
45     PIP_TRANSITION = 2,
46     LUMAFILE_TRANSITION = 3,
47     MIX_TRANSITION = 200
48 };
49
50 enum MessageType {
51     DefaultMessage,
52     OperationCompletedMessage,
53     InformationMessage,
54     ErrorMessage,
55     MltError
56 };
57
58 enum TRACKTYPE { AUDIOTRACK = 0, VIDEOTRACK = 1 };
59
60 enum PROXYSTATUS { NOPROXY = 0, PROXYWAITING = -1, CREATINGPROXY = -2, PROXYDONE = -3, PROXYCRASHED = -4};
61
62 struct TrackInfo {
63     TRACKTYPE type;
64     QString trackName;
65     bool isMute;
66     bool isBlind;
67     bool isLocked;
68     EffectsList effectsList;
69     int duration;
70 };
71
72 typedef QMap<QString, QString> stringMap;
73 typedef QMap <int, QMap <int, QByteArray> > audioByteArray;
74
75 struct ItemInfo {
76     /** startPos is the position where the clip starts on the track */
77     GenTime startPos;
78     /** endPos is the duration where the clip ends on the track */
79     GenTime endPos;
80     /** cropStart is the position where the sub-clip starts, relative to the clip's 0 position */
81     GenTime cropStart;
82     /** cropDuration is the duration of the clip */
83     GenTime cropDuration;
84     int track;
85 };
86
87 struct MltVideoProfile {
88     QString path;
89     QString description;
90     int frame_rate_num;
91     int frame_rate_den;
92     int width;
93     int height;
94     bool progressive;
95     int sample_aspect_num;
96     int sample_aspect_den;
97     int display_aspect_num;
98     int display_aspect_den;
99     int colorspace;
100 };
101
102
103 class EffectParameter
104 {
105 public:
106     EffectParameter(const QString &name, const QString &value): m_name(name), m_value(value) {}
107     QString name()   const          {
108         return m_name;
109     }
110     QString value() const          {
111         return m_value;
112     }
113     void setValue(const QString &value) {
114         m_value = value;
115     }
116
117 private:
118     QString m_name;
119     QString m_value;
120 };
121
122 /** Use our own list for effect parameters so that they are not sorted in any ways, because
123     some effects like sox need a precise order
124 */
125 class EffectsParameterList: public QList < EffectParameter >
126 {
127 public:
128     EffectsParameterList(): QList < EffectParameter >() {}
129     bool hasParam(const QString &name) const {
130         for (int i = 0; i < size(); i++)
131             if (at(i).name() == name) return true;
132         return false;
133     }
134     QString paramValue(const QString &name, QString defaultValue = QString()) const {
135         for (int i = 0; i < size(); i++) {
136             if (at(i).name() == name) return at(i).value();
137         }
138         return defaultValue;
139     }
140     void addParam(const QString &name, const QString &value) {
141         if (name.isEmpty()) return;
142         append(EffectParameter(name, value));
143     }
144     void removeParam(const QString &name) {
145         for (int i = 0; i < size(); i++)
146             if (at(i).name() == name) {
147                 removeAt(i);
148                 break;
149             }
150     }
151 };
152
153 class CommentedTime
154 {
155 public:
156     CommentedTime(): t(GenTime(0)) {}
157     CommentedTime(const GenTime &time, QString comment)
158         : t(time), c(comment) { }
159
160     QString comment()   const          {
161         return (c.isEmpty() ? i18n("Marker") : c);
162     }
163     GenTime time() const          {
164         return t;
165     }
166     void    setComment(QString comm) {
167         c = comm;
168     }
169
170     /* Implementation of > operator; Works identically as with basic types. */
171     bool operator>(CommentedTime op) const {
172         return t > op.time();
173     }
174     /* Implementation of < operator; Works identically as with basic types. */
175     bool operator<(CommentedTime op) const {
176         return t < op.time();
177     }
178     /* Implementation of >= operator; Works identically as with basic types. */
179     bool operator>=(CommentedTime op) const {
180         return t >= op.time();
181     }
182     /* Implementation of <= operator; Works identically as with basic types. */
183     bool operator<=(CommentedTime op) const {
184         return t <= op.time();
185     }
186     /* Implementation of == operator; Works identically as with basic types. */
187     bool operator==(CommentedTime op) const {
188         return t == op.time();
189     }
190     /* Implementation of != operator; Works identically as with basic types. */
191     bool operator!=(CommentedTime op) const {
192         return t != op.time();
193     }
194
195 private:
196     GenTime t;
197     QString c;
198
199
200 };
201
202
203 #endif