]> git.sesse.net Git - kdenlive/blob - src/projectitem.cpp
* Fix crash when using razor tool while playing
[kdenlive] / src / projectitem.cpp
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 #include <QMouseEvent>
22 #include <QStylePainter>
23 #include <QLabel>
24 #include <QLayout>
25
26 #include <KDebug>
27 #include <KLocale>
28 #include <KIcon>
29
30
31 #include "projectitem.h"
32 #include "timecode.h"
33 #include "kdenlivesettings.h"
34 #include "docclipbase.h"
35
36 const int NameRole = Qt::UserRole;
37 const int DurationRole = NameRole + 1;
38 const int UsageRole = NameRole + 2;
39
40
41 // folder
42 ProjectItem::ProjectItem(QTreeWidget * parent, const QStringList & strings, const QString &clipId)
43         : QTreeWidgetItem(parent, strings), m_clipType(FOLDER), m_clipId(clipId), m_clip(NULL), m_groupname(strings.at(1)) {
44     setSizeHint(0, QSize(65, 45));
45     setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
46     setIcon(0, KIcon("folder"));
47     setToolTip(1, "<qt><b>" + i18n("Folder"));
48 }
49
50 ProjectItem::ProjectItem(QTreeWidget * parent, DocClipBase *clip)
51         : QTreeWidgetItem(parent) {
52     setSizeHint(0, QSize(65, 45));
53     setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
54     m_clip = clip;
55     m_clipId = clip->getId();
56     QString name = m_clip->getProperty("name");
57     if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName();
58     m_clipType = (CLIPTYPE) m_clip->getProperty("type").toInt();
59     setText(1, name);
60     setText(2, m_clip->description());
61     //kDebug() << "PROJECT ITE;. ADDING LCIP: " << m_clipId;
62 }
63
64 ProjectItem::ProjectItem(QTreeWidgetItem * parent, DocClipBase *clip)
65         : QTreeWidgetItem(parent) {
66     setSizeHint(0, QSize(65, 45));
67     setFlags(Qt::ItemIsSelectable | Qt::ItemIsDragEnabled | Qt::ItemIsEnabled | Qt::ItemIsEditable);
68     m_clip = clip;
69     m_clipId = clip->getId();
70     QString name = m_clip->getProperty("name");
71     if (name.isEmpty()) name = KUrl(m_clip->getProperty("resource")).fileName();
72     m_clipType = (CLIPTYPE) m_clip->getProperty("type").toInt();
73     setText(1, name);
74     setText(2, m_clip->description());
75     //kDebug() << "PROJECT ITE;. ADDING LCIP: " << m_clipId;
76 }
77
78
79 ProjectItem::~ProjectItem() {
80 }
81
82 int ProjectItem::numReferences() const {
83     if (!m_clip) return 0;
84     return m_clip->numReferences();
85 }
86
87 const QString &ProjectItem::clipId() const {
88     return m_clipId;
89 }
90
91 CLIPTYPE ProjectItem::clipType() const {
92     return m_clipType;
93 }
94
95 int ProjectItem::clipMaxDuration() const {
96     return m_clip->getProperty("duration").toInt();
97 }
98
99 bool ProjectItem::isGroup() const {
100     return m_clipType == FOLDER;
101 }
102
103 QStringList ProjectItem::names() const {
104     QStringList result;
105     result.append(text(0));
106     result.append(text(1));
107     result.append(text(2));
108     return result;
109 }
110
111 QDomElement ProjectItem::toXml() const {
112     return m_clip->toXML();
113 }
114
115 const KUrl ProjectItem::clipUrl() const {
116     if (m_clipType != COLOR && m_clipType != VIRTUAL && m_clipType != UNKNOWN && m_clipType != FOLDER)
117         return KUrl(m_clip->getProperty("resource"));
118     else return KUrl();
119 }
120
121 void ProjectItem::changeDuration(int frames) {
122     setData(1, DurationRole, Timecode::getEasyTimecode(GenTime(frames, KdenliveSettings::project_fps()), KdenliveSettings::project_fps()));
123 }
124
125 void ProjectItem::setProperties(QMap <QString, QString> props) {
126     if (m_clip == NULL) return;
127     m_clip->setProperties(props);
128 }
129
130 void ProjectItem::setProperty(const QString &key, const QString &value) {
131     if (m_clip == NULL) return;
132     m_clip->setProperty(key, value);
133 }
134
135 void ProjectItem::clearProperty(const QString &key) {
136     if (m_clip == NULL) return;
137     m_clip->clearProperty(key);
138 }
139
140 const QString ProjectItem::groupName() const {
141     return m_groupname;
142 }
143
144 void ProjectItem::setGroupName(const QString name) {
145     m_groupname = name;
146     setText(1, name);
147 }
148
149 DocClipBase *ProjectItem::referencedClip() {
150     return m_clip;
151 }
152
153 void ProjectItem::slotSetToolTip() {
154     QString tip = "<qt><b>";
155     switch (m_clipType) {
156     case 1:
157         tip.append(i18n("Audio clip") + "</b><br />" + clipUrl().path());
158         break;
159     case 2:
160         tip.append(i18n("Mute video clip") + "</b><br />" + clipUrl().path());
161         break;
162     case 3:
163         tip.append(i18n("Video clip") + "</b><br />" + clipUrl().path());
164         break;
165     case 4:
166         tip.append(i18n("Color clip"));
167         break;
168     case 5:
169         tip.append(i18n("Image clip") + "</b><br />" + clipUrl().path());
170         break;
171     case 6:
172         tip.append(i18n("Text clip"));
173         break;
174     case 7:
175         tip.append(i18n("Slideshow clip"));
176         break;
177     case 8:
178         tip.append(i18n("Virtual clip"));
179         break;
180     case 9:
181         tip.append(i18n("Playlist clip") + "</b><br />" + clipUrl().path());
182         break;
183     default:
184         tip.append(i18n("Unknown clip"));
185         break;
186     }
187
188     setToolTip(1, tip);
189 }
190
191
192 void ProjectItem::setProperties(const QMap < QString, QString > &attributes, const QMap < QString, QString > &metadata) {
193     if (m_clip == NULL) return;
194     if (attributes.contains("duration")) {
195         //if (m_clipType == AUDIO || m_clipType == VIDEO || m_clipType == AV)
196         //m_clip->setProperty("duration", attributes["duration"]);
197         GenTime duration = GenTime(attributes["duration"].toInt(), KdenliveSettings::project_fps());
198         setData(1, DurationRole, Timecode::getEasyTimecode(duration, KdenliveSettings::project_fps()));
199         m_clip->setDuration(duration);
200         //kDebug() << "//// LOADED CLIP, DURATION SET TO: " << duration.frames(KdenliveSettings::project_fps());
201     } else  {
202         // No duration known, use an arbitrary one until it is.
203     }
204
205
206     //extend attributes -reh
207
208     if (m_clipType == UNKNOWN) {
209         if (attributes.contains("type")) {
210             if (attributes["type"] == "audio")
211                 m_clipType = AUDIO;
212             else if (attributes["type"] == "video")
213                 m_clipType = VIDEO;
214             else if (attributes["type"] == "av")
215                 m_clipType = AV;
216             else if (attributes["type"] == "playlist")
217                 m_clipType = PLAYLIST;
218         } else {
219             m_clipType = AV;
220         }
221         m_clip->setClipType(m_clipType);
222     }
223     slotSetToolTip();
224     if ((m_clipType == AV || m_clipType == AUDIO) && KdenliveSettings::audiothumbnails()) m_clip->slotRequestAudioThumbs();
225
226     m_clip->setProperties(attributes);
227
228     if (m_clip->description().isEmpty()) {
229         if (metadata.contains("description")) {
230             m_clip->setProperty("description", metadata["description"]);
231             setText(2, m_clip->description());
232         } else if (metadata.contains("comment")) {
233             m_clip->setProperty("description", metadata["comment"]);
234             setText(2, m_clip->description());
235         }
236     }
237 }
238