]> git.sesse.net Git - kdenlive/blob - src/definitions.h
* Fix aspect ratio of thumbnails to correctly use the project's arpect ratio
[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 struct ItemInfo {
73     /** startPos is the position where the clip starts on the track */
74     GenTime startPos;
75     /** endPos is the duration where the clip ends on the track */
76     GenTime endPos;
77     /** cropStart is the position where the sub-clip starts, relative to the clip's 0 position */
78     GenTime cropStart;
79     /** cropDuration is the duration of the clip */
80     GenTime cropDuration;
81     int track;
82 };
83
84 struct MltVideoProfile {
85     QString path;
86     QString description;
87     int frame_rate_num;
88     int frame_rate_den;
89     int width;
90     int height;
91     bool progressive;
92     int sample_aspect_num;
93     int sample_aspect_den;
94     int display_aspect_num;
95     int display_aspect_den;
96     int colorspace;
97 };
98
99
100 class EffectParameter
101 {
102 public:
103     EffectParameter(const QString &name, const QString &value): m_name(name), m_value(value) {}
104     QString name()   const          {
105         return m_name;
106     }
107     QString value() const          {
108         return m_value;
109     }
110     void setValue(const QString &value) {
111         m_value = value;
112     }
113
114 private:
115     QString m_name;
116     QString m_value;
117 };
118
119 /** Use our own list for effect parameters so that they are not sorted in any ways, because
120     some effects like sox need a precise order
121 */
122 class EffectsParameterList: public QList < EffectParameter >
123 {
124 public:
125     EffectsParameterList(): QList < EffectParameter >() {}
126     bool hasParam(const QString &name) const {
127         for (int i = 0; i < size(); i++)
128             if (at(i).name() == name) return true;
129         return false;
130     }
131     QString paramValue(const QString &name, QString defaultValue = QString()) const {
132         for (int i = 0; i < size(); i++) {
133             if (at(i).name() == name) return at(i).value();
134         }
135         return defaultValue;
136     }
137     void addParam(const QString &name, const QString &value) {
138         if (name.isEmpty()) return;
139         append(EffectParameter(name, value));
140     }
141     void removeParam(const QString &name) {
142         for (int i = 0; i < size(); i++)
143             if (at(i).name() == name) {
144                 removeAt(i);
145                 break;
146             }
147     }
148 };
149
150 class CommentedTime
151 {
152 public:
153     CommentedTime(): t(GenTime(0)) {}
154     CommentedTime(const GenTime &time, QString comment)
155         : t(time), c(comment) { }
156
157     QString comment()   const          {
158         return (c.isEmpty() ? i18n("Marker") : c);
159     }
160     GenTime time() const          {
161         return t;
162     }
163     void    setComment(QString comm) {
164         c = comm;
165     }
166
167     /* Implementation of > operator; Works identically as with basic types. */
168     bool operator>(CommentedTime op) const {
169         return t > op.time();
170     }
171     /* Implementation of < operator; Works identically as with basic types. */
172     bool operator<(CommentedTime op) const {
173         return t < op.time();
174     }
175     /* Implementation of >= operator; Works identically as with basic types. */
176     bool operator>=(CommentedTime op) const {
177         return t >= op.time();
178     }
179     /* Implementation of <= operator; Works identically as with basic types. */
180     bool operator<=(CommentedTime op) const {
181         return t <= op.time();
182     }
183     /* Implementation of == operator; Works identically as with basic types. */
184     bool operator==(CommentedTime op) const {
185         return t == op.time();
186     }
187     /* Implementation of != operator; Works identically as with basic types. */
188     bool operator!=(CommentedTime op) const {
189         return t != op.time();
190     }
191
192 private:
193     GenTime t;
194     QString c;
195
196
197 };
198
199
200 #endif