]> git.sesse.net Git - kdenlive/blob - src/documentchecker.cpp
Rewrite generation of timeline thumbnails when zooming at frame level, using separate...
[kdenlive] / src / documentchecker.cpp
1 /***************************************************************************
2  *   Copyright (C) 2008 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 "documentchecker.h"
22 #include "kthumb.h"
23 #include "docclipbase.h"
24 #include "titlewidget.h"
25 #include "definitions.h"
26 #include "kdenlivesettings.h"
27
28 #include <KDebug>
29 #include <KGlobalSettings>
30 #include <KFileItem>
31 #include <KIO/NetAccess>
32 #include <KFileDialog>
33 #include <KApplication>
34 #include <KUrlRequesterDialog>
35 #include <KMessageBox>
36
37 #include <QTreeWidgetItem>
38 #include <QFile>
39 #include <QHeaderView>
40 #include <QIcon>
41 #include <QPixmap>
42 #include <QTimer>
43 #include <QCryptographicHash>
44
45 const int hashRole = Qt::UserRole;
46 const int sizeRole = Qt::UserRole + 1;
47 const int idRole = Qt::UserRole + 2;
48 const int statusRole = Qt::UserRole + 3;
49 const int typeRole = Qt::UserRole + 4;
50 const int typeOriginalResource = Qt::UserRole + 5;
51
52 const int CLIPMISSING = 0;
53 const int CLIPOK = 1;
54 const int CLIPPLACEHOLDER = 2;
55 const int CLIPWRONGDURATION = 3;
56 const int PROXYMISSING = 4;
57
58 const int LUMAMISSING = 10;
59 const int LUMAOK = 11;
60 const int LUMAPLACEHOLDER = 12;
61
62 enum TITLECLIPTYPE { TITLE_IMAGE_ELEMENT = 20, TITLE_FONT_ELEMENT = 21 };
63
64 DocumentChecker::DocumentChecker(QDomNodeList infoproducers, QDomDocument doc):
65     m_info(infoproducers), m_doc(doc), m_dialog(NULL)
66 {
67
68 }
69
70
71 bool DocumentChecker::hasErrorInClips()
72 {
73     int clipType;
74     QDomElement e;
75     QString resource;
76     QDomNodeList documentProducers = m_doc.elementsByTagName("producer");
77     QList <QDomElement> wrongDurationClips;
78     QList <QDomElement> missingClips;
79     QList <QDomElement> missingProxies;
80     for (int i = 0; i < m_info.count(); i++) {
81         e = m_info.item(i).toElement();
82         clipType = e.attribute("type").toInt();
83         if (clipType == COLOR) continue;
84         if (clipType != TEXT && clipType != IMAGE) {
85             QString id = e.attribute("id");
86             int duration = e.attribute("duration").toInt();
87             // Check that the duration is in sync between Kdenlive's info and MLT's playlist
88             for (int j = 0; j < documentProducers.count(); j++) {
89                 QDomElement mltProd = documentProducers.at(j).toElement();
90                 QString prodId = mltProd.attribute("id");
91                 // Don't check slowmotion clips for now... (TODO?)
92                 if (prodId.startsWith("slowmotion")) continue;
93                 if (prodId.contains("_")) prodId = prodId.section("_", 0, 0);
94                 if (prodId != id) continue;
95                 int mltDuration = mltProd.attribute("out").toInt() + 1;
96                 if (mltDuration != duration && !e.hasAttribute("_mismatch")) {
97                     // Duration mismatch
98                     e.setAttribute("_mismatch", mltDuration);
99                     if (!wrongDurationClips.contains(e)) wrongDurationClips.append(e);
100                     kDebug() << "WRONG DURTAION: "<<id<<", TYPE: "<<clipType;
101                 }
102             }
103         }
104         
105         if (clipType == TEXT) {
106             //TODO: Check is clip template is missing (xmltemplate) or hash changed
107             QStringList images = TitleWidget::extractImageList(e.attribute("xmldata"));
108             QStringList fonts = TitleWidget::extractFontList(e.attribute("xmldata"));
109             checkMissingImages(missingClips, images, fonts, e.attribute("id"), e.attribute("name"));
110             continue;
111         }
112         resource = e.attribute("resource");
113         if (e.hasAttribute("proxy")) {
114             QString proxyresource = e.attribute("proxy");
115             if (!proxyresource.isEmpty() && proxyresource != "-" && !KIO::NetAccess::exists(KUrl(proxyresource), KIO::NetAccess::SourceSide, 0)) {
116                 // Missing clip found
117                 missingProxies.append(e);
118             }
119         }
120         if (clipType == SLIDESHOW) resource = KUrl(resource).directory();
121         if (!KIO::NetAccess::exists(KUrl(resource), KIO::NetAccess::SourceSide, 0)) {
122             // Missing clip found
123             missingClips.append(e);
124         } else {
125             // Check if the clip has changed
126             if (clipType != SLIDESHOW && e.hasAttribute("file_hash")) {
127                 if (e.attribute("file_hash") != DocClipBase::getHash(e.attribute("resource")))
128                     e.removeAttribute("file_hash");
129             }
130         }
131     }
132
133     QStringList missingLumas;
134     QString root = m_doc.documentElement().attribute("root");
135     if (!root.isEmpty()) root = KUrl(root).path(KUrl::AddTrailingSlash);
136     QDomNodeList trans = m_doc.elementsByTagName("transition");
137     for (int i = 0; i < trans.count(); i++) {
138         QString luma = getProperty(trans.at(i).toElement(), "luma");
139         if (!luma.isEmpty()) {
140             if (!luma.startsWith('/')) luma.prepend(root);
141             if (!QFile::exists(luma) && !missingLumas.contains(luma)) {
142                 missingLumas.append(luma);
143             }
144         }
145     }
146
147     if (missingClips.isEmpty() && missingLumas.isEmpty() && wrongDurationClips.isEmpty() && missingProxies.isEmpty())
148         return false;
149
150     m_dialog = new QDialog();
151     m_dialog->setFont(KGlobalSettings::toolBarFont());
152     m_ui.setupUi(m_dialog);
153
154     foreach(const QString l, missingLumas) {
155         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << i18n("Luma file") << l);
156         item->setIcon(0, KIcon("dialog-close"));
157         item->setData(0, idRole, l);
158         item->setData(0, statusRole, LUMAMISSING);
159     }
160
161     m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
162     for (int i = 0; i < missingClips.count(); i++) {
163         e = missingClips.at(i).toElement();
164         QString clipType;
165         int t = e.attribute("type").toInt();
166         switch (t) {
167         case AV:
168             clipType = i18n("Video clip");
169             break;
170         case VIDEO:
171             clipType = i18n("Mute video clip");
172             break;
173         case AUDIO:
174             clipType = i18n("Audio clip");
175             break;
176         case PLAYLIST:
177             clipType = i18n("Playlist clip");
178             break;
179         case IMAGE:
180             clipType = i18n("Image clip");
181             break;
182         case SLIDESHOW:
183             clipType = i18n("Slideshow clip");
184             break;
185         case TITLE_IMAGE_ELEMENT:
186             clipType = i18n("Title Image");
187             break;
188         case TITLE_FONT_ELEMENT:
189             clipType = i18n("Title Font");
190             break;
191         default:
192             clipType = i18n("Video clip");
193         }
194         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << clipType);
195         if (t == TITLE_IMAGE_ELEMENT) {
196             item->setIcon(0, KIcon("dialog-warning"));
197             item->setToolTip(1, e.attribute("name"));
198             item->setText(1, e.attribute("resource"));
199             item->setData(0, statusRole, CLIPPLACEHOLDER);
200             item->setData(0, typeOriginalResource, e.attribute("resource"));
201         } else if (t == TITLE_FONT_ELEMENT) {
202             item->setIcon(0, KIcon("dialog-warning"));
203             item->setToolTip(1, e.attribute("name"));
204             QString ft = e.attribute("resource");
205             QString newft = QFontInfo(QFont(ft)).family();
206             item->setText(1, i18n("%1 will be replaced by %2", ft, newft));
207             item->setData(0, statusRole, CLIPPLACEHOLDER);
208         } else {
209             item->setIcon(0, KIcon("dialog-close"));
210             item->setText(1, e.attribute("resource"));
211             item->setData(0, hashRole, e.attribute("file_hash"));
212             item->setData(0, sizeRole, e.attribute("file_size"));
213             item->setData(0, statusRole, CLIPMISSING);
214         }
215         item->setData(0, typeRole, t);
216         item->setData(0, idRole, e.attribute("id"));
217         item->setToolTip(0, i18n("Missing item"));
218     }
219
220     if (missingClips.count() > 0) {
221         if (wrongDurationClips.count() > 0) {
222             m_ui.infoLabel->setText(i18n("The project file contains missing clips or files and clip duration mismatch"));
223         }
224         else {
225             m_ui.infoLabel->setText(i18n("The project file contains missing clips or files"));
226         }
227     }
228     else if (wrongDurationClips.count() > 0) {
229         m_ui.infoLabel->setText(i18n("The project file contains clips with duration mismatch"));
230     }
231     if (missingProxies.count() > 0) {
232         if (!m_ui.infoLabel->text().isEmpty()) m_ui.infoLabel->setText(m_ui.infoLabel->text() + ". ");
233         m_ui.infoLabel->setText(m_ui.infoLabel->text() + i18n("Missing proxies will be recreated after opening."));
234     }
235
236     m_ui.removeSelected->setEnabled(!missingClips.isEmpty());
237     m_ui.recursiveSearch->setEnabled(!missingClips.isEmpty());
238     m_ui.usePlaceholders->setEnabled(!missingClips.isEmpty());
239     m_ui.fixDuration->setEnabled(!wrongDurationClips.isEmpty());
240         
241     for (int i = 0; i < wrongDurationClips.count(); i++) {
242         e = wrongDurationClips.at(i).toElement();
243         QString clipType;
244         int t = e.attribute("type").toInt();
245         switch (t) {
246         case AV:
247             clipType = i18n("Video clip");
248             break;
249         case VIDEO:
250             clipType = i18n("Mute video clip");
251             break;
252         case AUDIO:
253             clipType = i18n("Audio clip");
254             break;
255         case PLAYLIST:
256             clipType = i18n("Playlist clip");
257             break;
258         case IMAGE:
259             clipType = i18n("Image clip");
260             break;
261         case SLIDESHOW:
262             clipType = i18n("Slideshow clip");
263             break;
264         default:
265             clipType = i18n("Video clip");
266         }
267         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << clipType);
268         item->setIcon(0, KIcon("timeadjust"));
269         item->setText(1, e.attribute("resource"));
270         item->setData(0, hashRole, e.attribute("file_hash"));
271         item->setData(0, sizeRole, e.attribute("_mismatch"));
272         e.removeAttribute("_mismatch");
273         item->setData(0, statusRole, CLIPWRONGDURATION);
274         item->setData(0, typeRole, t);
275         item->setData(0, idRole, e.attribute("id"));
276         item->setToolTip(0, i18n("Duration mismatch"));
277     }
278
279
280     for (int i = 0; i < missingProxies.count(); i++) {
281         e = missingProxies.at(i).toElement();
282         QString clipType;
283         int t = e.attribute("type").toInt();
284         QString realPath = e.attribute("resource");
285         QString id = e.attribute("id");
286         QTreeWidgetItem *item = new QTreeWidgetItem(m_ui.treeWidget, QStringList() << i18n("Proxy clip"));
287         item->setIcon(0, KIcon("dialog-close"));
288         item->setText(1, e.attribute("proxy"));
289         item->setData(0, hashRole, e.attribute("file_hash"));
290         item->setData(0, statusRole, PROXYMISSING);
291         item->setData(0, typeRole, t);
292         item->setData(0, idRole, id);
293         item->setToolTip(0, i18n("Missing proxy"));
294         // Replace proxy url with real clip in MLT producers
295         QDomNodeList properties;
296         QDomElement mltProd;
297         QDomElement property;
298         for (int j = 0; j < documentProducers.count(); j++) {
299             mltProd = documentProducers.at(j).toElement();
300             QString prodId = mltProd.attribute("id");
301             bool slowmotion = false;
302             if (prodId.startsWith("slowmotion")) {
303                 slowmotion = true;
304                 prodId = prodId.section(':', 1, 1);
305             }
306             if (prodId.contains('_')) prodId = prodId.section('_', 0, 0);
307             if (prodId == id) {
308                 // Hit, we must replace url
309                 properties = mltProd.childNodes();
310                 for (int k = 0; k < properties.count(); ++k) {
311                     property = properties.item(k).toElement();
312                     if (property.attribute("name") == "resource") {
313                         QString resource = property.firstChild().nodeValue();                    
314                         QString suffix;
315                         if (slowmotion) suffix = "?" + resource.section('?', -1);
316                         property.firstChild().setNodeValue(realPath + suffix);
317                         break;
318                     }
319                 }
320             }
321         }
322     }
323     
324     if (missingProxies.count() > 0) {
325         // original doc was modified
326         QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
327         QDomElement infoXml = infoXmlNode.toElement();
328         infoXml.setAttribute("modified", "1");
329     }
330     
331     connect(m_ui.recursiveSearch, SIGNAL(pressed()), this, SLOT(slotSearchClips()));
332     connect(m_ui.usePlaceholders, SIGNAL(pressed()), this, SLOT(slotPlaceholders()));
333     connect(m_ui.removeSelected, SIGNAL(pressed()), this, SLOT(slotDeleteSelected()));
334     connect(m_ui.fixDuration, SIGNAL(pressed()), this, SLOT(slotFixDuration()));
335     connect(m_ui.treeWidget, SIGNAL(itemDoubleClicked(QTreeWidgetItem *, int)), this, SLOT(slotEditItem(QTreeWidgetItem *, int)));
336     connect(m_ui.treeWidget, SIGNAL(itemSelectionChanged()), this, SLOT(slotCheckButtons()));
337     //adjustSize();
338     if (m_ui.treeWidget->topLevelItem(0)) m_ui.treeWidget->setCurrentItem(m_ui.treeWidget->topLevelItem(0));
339     checkStatus();
340     int acceptMissing = m_dialog->exec();
341     if (acceptMissing == QDialog::Accepted) acceptDialog();
342     return (acceptMissing != QDialog::Accepted);
343 }
344
345 DocumentChecker::~DocumentChecker()
346 {
347     if (m_dialog) delete m_dialog;
348 }
349
350
351 QString DocumentChecker::getProperty(QDomElement effect, const QString &name)
352 {
353     QDomNodeList params = effect.elementsByTagName("property");
354     for (int i = 0; i < params.count(); i++) {
355         QDomElement e = params.item(i).toElement();
356         if (e.attribute("name") == name) {
357             return e.firstChild().nodeValue();
358         }
359     }
360     return QString();
361 }
362
363 void DocumentChecker::setProperty(QDomElement effect, const QString &name, const QString value)
364 {
365     QDomNodeList params = effect.elementsByTagName("property");
366     for (int i = 0; i < params.count(); i++) {
367         QDomElement e = params.item(i).toElement();
368         if (e.attribute("name") == name) {
369             e.firstChild().setNodeValue(value);
370         }
371     }
372 }
373
374 void DocumentChecker::slotSearchClips()
375 {
376     QString newpath = KFileDialog::getExistingDirectory(KUrl("kfiledialog:///clipfolder"), kapp->activeWindow(), i18n("Clips folder"));
377     if (newpath.isEmpty()) return;
378     int ix = 0;
379     bool fixed = false;
380     m_ui.recursiveSearch->setEnabled(false);
381     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
382     while (child) {
383         if (child->data(0, statusRole).toInt() == CLIPMISSING) {
384             QString clipPath = searchFileRecursively(QDir(newpath), child->data(0, sizeRole).toString(), child->data(0, hashRole).toString());
385             if (!clipPath.isEmpty()) {
386                 fixed = true;
387                 child->setText(1, clipPath);
388                 child->setIcon(0, KIcon("dialog-ok"));
389                 child->setData(0, statusRole, CLIPOK);
390             }
391         } else if (child->data(0, statusRole).toInt() == LUMAMISSING) {
392             QString fileName = searchLuma(child->data(0, idRole).toString());
393             if (!fileName.isEmpty()) {
394                 fixed = true;
395                 child->setText(1, fileName);
396                 child->setIcon(0, KIcon("dialog-ok"));
397                 child->setData(0, statusRole, LUMAOK);
398             }
399         }
400         ix++;
401         child = m_ui.treeWidget->topLevelItem(ix);
402     }
403     m_ui.recursiveSearch->setEnabled(true);
404     if (fixed) {
405         // original doc was modified
406         QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
407         QDomElement infoXml = infoXmlNode.toElement();
408         infoXml.setAttribute("modified", "1");
409     }
410     checkStatus();
411 }
412
413
414 QString DocumentChecker::searchLuma(QString file) const
415 {
416     KUrl searchPath(KdenliveSettings::mltpath());
417     if (file.contains("PAL"))
418         searchPath.cd("../lumas/PAL");
419     else
420         searchPath.cd("../lumas/NTSC");
421     QString result = searchPath.path(KUrl::AddTrailingSlash) + KUrl(file).fileName();
422     if (QFile::exists(result))
423         return result;
424     return QString();
425 }
426
427
428 QString DocumentChecker::searchFileRecursively(const QDir &dir, const QString &matchSize, const QString &matchHash) const
429 {
430     QString foundFileName;
431     QByteArray fileData;
432     QByteArray fileHash;
433     QStringList filesAndDirs = dir.entryList(QDir::Files | QDir::Readable);
434     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
435         QFile file(dir.absoluteFilePath(filesAndDirs.at(i)));
436         if (QString::number(file.size()) == matchSize) {
437             if (file.open(QIODevice::ReadOnly)) {
438                 /*
439                 * 1 MB = 1 second per 450 files (or faster)
440                 * 10 MB = 9 seconds per 450 files (or faster)
441                 */
442                 if (file.size() > 1000000 * 2) {
443                     fileData = file.read(1000000);
444                     if (file.seek(file.size() - 1000000))
445                         fileData.append(file.readAll());
446                 } else
447                     fileData = file.readAll();
448                 file.close();
449                 fileHash = QCryptographicHash::hash(fileData, QCryptographicHash::Md5);
450                 if (QString(fileHash.toHex()) == matchHash)
451                     return file.fileName();
452             }
453         }
454         //kDebug() << filesAndDirs.at(i) << file.size() << fileHash.toHex();
455     }
456     filesAndDirs = dir.entryList(QDir::Dirs | QDir::Readable | QDir::Executable | QDir::NoDotAndDotDot);
457     for (int i = 0; i < filesAndDirs.size() && foundFileName.isEmpty(); i++) {
458         foundFileName = searchFileRecursively(dir.absoluteFilePath(filesAndDirs.at(i)), matchSize, matchHash);
459         if (!foundFileName.isEmpty())
460             break;
461     }
462     return foundFileName;
463 }
464
465 void DocumentChecker::slotEditItem(QTreeWidgetItem *item, int)
466 {
467     int t = item->data(0, typeRole).toInt();
468     if (t == TITLE_FONT_ELEMENT) return;
469     //|| t == TITLE_IMAGE_ELEMENT) {
470
471     KUrl url = KUrlRequesterDialog::getUrl(item->text(1), m_dialog, i18n("Enter new location for file"));
472     if (url.isEmpty()) return;
473     item->setText(1, url.path());
474     if (KIO::NetAccess::exists(url, KIO::NetAccess::SourceSide, 0)) {
475         item->setIcon(0, KIcon("dialog-ok"));
476         int id = item->data(0, statusRole).toInt();
477         if (id < 10) item->setData(0, statusRole, CLIPOK);
478         else item->setData(0, statusRole, LUMAOK);
479         checkStatus();
480     } else {
481         item->setIcon(0, KIcon("dialog-close"));
482         int id = item->data(0, statusRole).toInt();
483         if (id < 10) item->setData(0, statusRole, CLIPMISSING);
484         else item->setData(0, statusRole, LUMAMISSING);
485         checkStatus();
486     }
487 }
488
489
490 void DocumentChecker::acceptDialog()
491 {
492     QDomElement e, property;
493     QDomNodeList producers = m_doc.elementsByTagName("producer");
494     QDomNodeList infoproducers = m_doc.elementsByTagName("kdenlive_producer");
495     QDomNodeList properties;
496     int ix = 0;
497
498     // prepare transitions
499     QDomNodeList trans = m_doc.elementsByTagName("transition");
500
501     // Mark document as modified
502     m_doc.documentElement().setAttribute("modified", 1);
503
504     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
505     while (child) {
506         int t = child->data(0, typeRole).toInt();
507         if (child->data(0, statusRole).toInt() == CLIPOK) {
508             QString id = child->data(0, idRole).toString();
509             if (t == TITLE_IMAGE_ELEMENT) {
510                 // edit images embedded in titles
511                 for (int i = 0; i < infoproducers.count(); i++) {
512                     e = infoproducers.item(i).toElement();
513                     if (e.attribute("id") == id) {
514                         // Fix clip
515                         QString xml = e.attribute("xmldata");
516                         xml.replace(child->data(0, typeOriginalResource).toString(), child->text(1));
517                         e.setAttribute("xmldata", xml);
518                         break;
519                     }
520                 }
521                 for (int i = 0; i < producers.count(); i++) {
522                     e = producers.item(i).toElement();
523                     if (e.attribute("id").section('_', 0, 0) == id) {
524                         // Fix clip
525                         properties = e.childNodes();
526                         for (int j = 0; j < properties.count(); ++j) {
527                             property = properties.item(j).toElement();
528                             if (property.attribute("name") == "xmldata") {
529                                 QString xml = property.firstChild().nodeValue();
530                                 xml.replace(child->data(0, typeOriginalResource).toString(), child->text(1));
531                                 property.firstChild().setNodeValue(xml);
532                                 break;
533                             }
534                         }
535                     }
536                 }
537             } else {
538                 // edit clip url
539                 for (int i = 0; i < infoproducers.count(); i++) {
540                     e = infoproducers.item(i).toElement();
541                     if (e.attribute("id") == id) {
542                         // Fix clip
543                         e.setAttribute("resource", child->text(1));
544                         e.setAttribute("name", KUrl(child->text(1)).fileName());
545                         break;
546                     }
547                 }
548                 for (int i = 0; i < producers.count(); i++) {
549                     e = producers.item(i).toElement();
550                     if (e.attribute("id").section('_', 0, 0) == id || e.attribute("id").section(':', 1, 1) == id) {
551                         // Fix clip
552                         properties = e.childNodes();
553                         for (int j = 0; j < properties.count(); ++j) {
554                             property = properties.item(j).toElement();
555                             if (property.attribute("name") == "resource") {
556                                 QString resource = property.firstChild().nodeValue();
557                                 if (resource.contains(QRegExp("\\?[0-9]+\\.[0-9]+(&amp;strobe=[0-9]+)?$")))
558                                     property.firstChild().setNodeValue(child->text(1) + '?' + resource.section('?', -1));
559                                 else
560                                     property.firstChild().setNodeValue(child->text(1));
561                                 break;
562                             }
563                         }
564                     }
565                 }
566             }
567         } else if (child->data(0, statusRole).toInt() == CLIPPLACEHOLDER && t != TITLE_FONT_ELEMENT && t != TITLE_IMAGE_ELEMENT) {
568             QString id = child->data(0, idRole).toString();
569             for (int i = 0; i < infoproducers.count(); i++) {
570                 e = infoproducers.item(i).toElement();
571                 if (e.attribute("id") == id) {
572                     // Fix clip
573                     e.setAttribute("placeholder", '1');
574                     break;
575                 }
576             }
577         } else if (child->data(0, statusRole).toInt() == LUMAOK) {
578             for (int i = 0; i < trans.count(); i++) {
579                 QString luma = getProperty(trans.at(i).toElement(), "luma");
580                 kDebug() << "luma: " << luma;
581                 if (!luma.isEmpty() && luma == child->data(0, idRole).toString()) {
582                     setProperty(trans.at(i).toElement(), "luma", child->text(1));
583                     kDebug() << "replace with; " << child->text(1);
584                 }
585             }
586         } else if (child->data(0, statusRole).toInt() == LUMAMISSING) {
587             for (int i = 0; i < trans.count(); i++) {
588                 QString luma = getProperty(trans.at(i).toElement(), "luma");
589                 if (!luma.isEmpty() && luma == child->data(0, idRole).toString()) {
590                     setProperty(trans.at(i).toElement(), "luma", QString());
591                 }
592             }
593         }
594         ix++;
595         child = m_ui.treeWidget->topLevelItem(ix);
596     }
597     //QDialog::accept();
598 }
599
600 void DocumentChecker::slotPlaceholders()
601 {
602     int ix = 0;
603     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
604     while (child) {
605         if (child->data(0, statusRole).toInt() == CLIPMISSING) {
606             child->setData(0, statusRole, CLIPPLACEHOLDER);
607             child->setIcon(0, KIcon("dialog-ok"));
608         } else if (child->data(0, statusRole).toInt() == LUMAMISSING) {
609             child->setData(0, statusRole, LUMAPLACEHOLDER);
610             child->setIcon(0, KIcon("dialog-ok"));
611         }
612         ix++;
613         child = m_ui.treeWidget->topLevelItem(ix);
614     }
615     checkStatus();
616 }
617
618 void DocumentChecker::slotFixDuration()
619 {
620     int ix = 0;
621     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
622     while (child) {
623         if (child->data(0, statusRole).toInt() == CLIPWRONGDURATION) {
624             child->setData(0, statusRole, CLIPOK);
625             child->setIcon(0, KIcon("dialog-ok"));
626             QString id = child->data(0, idRole).toString();
627             for (int i = 0; i < m_info.count(); i++) {
628                 QDomElement e = m_info.at(i).toElement();
629                 if (e.attribute("id") == id) {
630                     e.setAttribute("duration", child->data(0, sizeRole).toString());
631                     break;
632                 }
633             }
634         }
635         ix++;
636         child = m_ui.treeWidget->topLevelItem(ix);
637     }
638     QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
639     QDomElement infoXml = infoXmlNode.toElement();
640     infoXml.setAttribute("modified", "1");
641     m_ui.fixDuration->setEnabled(false);
642     checkStatus();
643 }
644
645
646 void DocumentChecker::checkStatus()
647 {
648     bool status = true;
649     int ix = 0;
650     QTreeWidgetItem *child = m_ui.treeWidget->topLevelItem(ix);
651     while (child) {
652         int status = child->data(0, statusRole).toInt();
653         if (status == CLIPMISSING || status == LUMAMISSING || status == CLIPWRONGDURATION) {
654             status = false;
655             break;
656         }
657         ix++;
658         child = m_ui.treeWidget->topLevelItem(ix);
659     }
660     m_ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(status);
661 }
662
663
664 void DocumentChecker::slotDeleteSelected()
665 {
666     if (KMessageBox::warningContinueCancel(m_dialog, i18np("This will remove the selected clip from this project", "This will remove the selected clips from this project", m_ui.treeWidget->selectedItems().count()), i18n("Remove clips")) == KMessageBox::Cancel)
667         return;
668     QStringList deletedIds;
669     QDomNodeList playlists = m_doc.elementsByTagName("playlist");
670
671     foreach(QTreeWidgetItem *child, m_ui.treeWidget->selectedItems()) {
672         if (child->data(0, statusRole).toInt() < 10) {
673             deletedIds.append(child->data(0, idRole).toString());
674             delete child;
675         }
676     }
677     kDebug() << "// Clips to delete: " << deletedIds;
678
679     if (!deletedIds.isEmpty()) {
680         QDomElement e;
681         QDomNodeList producers = m_doc.elementsByTagName("producer");
682         QDomNodeList infoproducers = m_doc.elementsByTagName("kdenlive_producer");
683
684         QDomElement mlt = m_doc.firstChildElement("mlt");
685         QDomElement kdenlivedoc = mlt.firstChildElement("kdenlivedoc");
686
687         for (int i = 0, j = 0; i < infoproducers.count() && j < deletedIds.count(); i++) {
688             e = infoproducers.item(i).toElement();
689             if (deletedIds.contains(e.attribute("id"))) {
690                 // Remove clip
691                 kdenlivedoc.removeChild(e);
692                 i--;
693                 j++;
694             }
695         }
696
697         for (int i = 0; i < producers.count(); i++) {
698             e = producers.item(i).toElement();
699             if (deletedIds.contains(e.attribute("id").section('_', 0, 0)) || deletedIds.contains(e.attribute("id").section(':', 1, 1).section('_', 0, 0))) {
700                 // Remove clip
701                 mlt.removeChild(e);
702                 i--;
703             }
704         }
705
706         for (int i = 0; i < playlists.count(); i++) {
707             QDomNodeList entries = playlists.at(i).toElement().elementsByTagName("entry");
708             for (int j = 0; j < entries.count(); j++) {
709                 e = entries.item(j).toElement();
710                 if (deletedIds.contains(e.attribute("producer").section('_', 0, 0)) || deletedIds.contains(e.attribute("producer").section(':', 1, 1).section('_', 0, 0))) {
711                     // Replace clip with blank
712                     while (e.childNodes().count() > 0)
713                         e.removeChild(e.firstChild());
714                     e.setTagName("blank");
715                     e.removeAttribute("producer");
716                     int length = e.attribute("out").toInt() - e.attribute("in").toInt();
717                     e.setAttribute("length", length);
718                     j--;
719                 }
720             }
721         }
722         QDomNode infoXmlNode = m_doc.elementsByTagName("kdenlivedoc").at(0);
723         QDomElement infoXml = infoXmlNode.toElement();
724         infoXml.setAttribute("modified", "1");
725         checkStatus();
726     }
727 }
728
729 void DocumentChecker::checkMissingImages(QList <QDomElement>&missingClips, QStringList images, QStringList fonts, QString id, QString baseClip)
730 {
731     QDomDocument doc;
732     foreach(const QString &img, images) {
733         if (!KIO::NetAccess::exists(KUrl(img), KIO::NetAccess::SourceSide, 0)) {
734             QDomElement e = doc.createElement("missingclip");
735             e.setAttribute("type", TITLE_IMAGE_ELEMENT);
736             e.setAttribute("resource", img);
737             e.setAttribute("id", id);
738             e.setAttribute("name", baseClip);
739             missingClips.append(e);
740         }
741     }
742     kDebug() << "/ / / CHK FONTS: " << fonts;
743     foreach(const QString &fontelement, fonts) {
744         QFont f(fontelement);
745         kDebug() << "/ / / CHK FONTS: " << fontelement << " = " << QFontInfo(f).family();
746         if (fontelement != QFontInfo(f).family()) {
747             QDomElement e = doc.createElement("missingclip");
748             e.setAttribute("type", TITLE_FONT_ELEMENT);
749             e.setAttribute("resource", fontelement);
750             e.setAttribute("id", id);
751             e.setAttribute("name", baseClip);
752             missingClips.append(e);
753         }
754     }
755 }
756
757
758 void DocumentChecker::slotCheckButtons()
759 {
760     if (m_ui.treeWidget->currentItem()) {
761         QTreeWidgetItem *item = m_ui.treeWidget->currentItem();
762         int t = item->data(0, typeRole).toInt();
763         if (t == TITLE_FONT_ELEMENT || t == TITLE_IMAGE_ELEMENT) {
764             m_ui.removeSelected->setEnabled(false);
765         } else m_ui.removeSelected->setEnabled(true);
766     }
767
768 }
769
770 #include "documentchecker.moc"
771
772