]> git.sesse.net Git - kdenlive/blob - src/dvdwizardvob.cpp
Remove some unneeded qstrdup calls. MLT already does a strdup.
[kdenlive] / src / dvdwizardvob.cpp
1 /***************************************************************************
2  *   Copyright (C) 2009 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 #include "dvdwizardvob.h"
21 #include "kthumb.h"
22 #include "timecode.h"
23
24 #include <mlt++/Mlt.h>
25
26 #include <KUrlRequester>
27 #include <KDebug>
28 #include <KStandardDirs>
29 #include <KFileItem>
30 #include <KFileDialog>
31
32 #include <QHBoxLayout>
33 #include <QDomDocument>
34 #include <QTreeWidgetItem>
35 #include <QHeaderView>
36
37 DvdWizardVob::DvdWizardVob(const QString &profile, QWidget *parent) :
38         QWizardPage(parent)
39 {
40     m_view.setupUi(this);
41     m_view.intro_vob->setEnabled(false);
42     m_view.intro_vob->setFilter("video/mpeg");
43     m_view.button_add->setIcon(KIcon("document-new"));
44     m_view.button_delete->setIcon(KIcon("edit-delete"));
45     m_view.button_up->setIcon(KIcon("go-up"));
46     m_view.button_down->setIcon(KIcon("go-down"));
47     connect(m_view.use_intro, SIGNAL(toggled(bool)), m_view.intro_vob, SLOT(setEnabled(bool)));
48     connect(m_view.button_add, SIGNAL(clicked()), this, SLOT(slotAddVobFile()));
49     connect(m_view.button_delete, SIGNAL(clicked()), this, SLOT(slotDeleteVobFile()));
50     connect(m_view.button_up, SIGNAL(clicked()), this, SLOT(slotItemUp()));
51     connect(m_view.button_down, SIGNAL(clicked()), this, SLOT(slotItemDown()));
52     connect(m_view.vobs_list, SIGNAL(itemSelectionChanged()), this, SLOT(slotCheckVobList()));
53     m_view.vobs_list->setIconSize(QSize(60, 45));
54
55     if (KStandardDirs::findExe("dvdauthor").isEmpty()) m_errorMessage.append(i18n("<strong>Program %1 is required for the DVD wizard.</strong>", i18n("dvdauthor")));
56     if (KStandardDirs::findExe("mkisofs").isEmpty() && KStandardDirs::findExe("genisoimage").isEmpty()) m_errorMessage.append(i18n("<strong>Program %1 or %2 is required for the DVD wizard.</strong>", i18n("mkisofs"), i18n("genisoimage")));
57     if (m_errorMessage.isEmpty()) m_view.error_message->setVisible(false);
58     else m_view.error_message->setText(m_errorMessage);
59
60     m_view.dvd_profile->addItems(QStringList() << i18n("PAL 4:3") << i18n("PAL 16:9") << i18n("NTSC 4:3") << i18n("NTSC 16:9"));
61     if (profile == "dv_pal_wide") m_view.dvd_profile->setCurrentIndex(1);
62     else if (profile == "dv_ntsc") m_view.dvd_profile->setCurrentIndex(2);
63     else if (profile == "dv_ntsc_wide") m_view.dvd_profile->setCurrentIndex(3);
64
65     connect(m_view.dvd_profile, SIGNAL(activated(int)), this, SLOT(changeFormat()));
66     m_view.vobs_list->header()->setStretchLastSection(false);
67     m_view.vobs_list->header()->setResizeMode(0, QHeaderView::Stretch);
68     m_view.vobs_list->header()->setResizeMode(1, QHeaderView::Custom);
69     m_view.vobs_list->header()->setResizeMode(2, QHeaderView::Custom);
70
71 #if KDE_IS_VERSION(4,2,0)
72     m_capacityBar = new KCapacityBar(KCapacityBar::DrawTextInline, this);
73     QHBoxLayout *layout = new QHBoxLayout;
74     layout->addWidget(m_capacityBar);
75     m_view.size_box->setLayout(layout);
76 #else
77     m_view.size_box->setHidden(true);
78 #endif
79     slotCheckVobList();
80 }
81
82 DvdWizardVob::~DvdWizardVob()
83 {
84 #if KDE_IS_VERSION(4,2,0)
85     delete m_capacityBar;
86 #endif
87 }
88
89
90 void DvdWizardVob::slotAddVobFile(KUrl url, const QString &chapters)
91 {
92     if (url.isEmpty()) url = KFileDialog::getOpenUrl(KUrl("kfiledialog:///projectfolder"), "video/mpeg", this, i18n("Add new video file"));
93     if (url.isEmpty()) return;
94     QFile f(url.path());
95     qint64 fileSize = f.size();
96     QString profilename;
97     switch (m_view.dvd_profile->currentIndex()) {
98     case 1:
99         profilename = "dv_pal_wide";
100         break;
101     case 2:
102         profilename = "dv_ntsc";
103         break;
104     case 3:
105         profilename = "dv_ntsc_wide";
106         break;
107     default:
108         profilename = "dv_pal";
109         break;
110     }
111
112     Mlt::Profile profile(profilename.toUtf8().data());
113     QTreeWidgetItem *item = new QTreeWidgetItem(m_view.vobs_list, QStringList() << url.path() << QString() << KIO::convertSize(fileSize));
114     item->setData(0, Qt::UserRole, fileSize);
115     item->setIcon(0, KIcon("video-x-generic"));
116
117     QPixmap pix(60, 45);
118
119     Mlt::Producer *producer = new Mlt::Producer(profile, url.path().toUtf8().data());
120
121     if (producer->is_blank() == false) {
122         int width = 45.0 * profile.dar();
123         if (width % 2 == 1) width++;
124         item->setIcon(0, QPixmap::fromImage(KThumb::getFrame(producer, 0, width, 45)));
125         int playTime = producer->get_playtime();
126         item->setText(1, Timecode::getStringTimecode(playTime, profile.fps()));
127         item->setData(1, Qt::UserRole, playTime);
128     }
129     delete producer;
130
131     if (chapters.isEmpty() == false)
132         item->setData(1, Qt::UserRole + 1, chapters);
133     else if (QFile::exists(url.path() + ".dvdchapter")) {
134         // insert chapters as children
135         QFile file(url.path() + ".dvdchapter");
136         if (file.open(QIODevice::ReadOnly)) {
137             QDomDocument doc;
138             doc.setContent(&file);
139             file.close();
140             QDomNodeList chapters = doc.elementsByTagName("chapter");
141             QStringList chaptersList;
142             for (int j = 0; j < chapters.count(); j++) {
143                 chaptersList.append(QString::number(chapters.at(j).toElement().attribute("time").toInt()));
144             }
145             item->setData(1, Qt::UserRole + 1, chaptersList.join(";"));
146         }
147     } else // Explicitly add a chapter at 00:00:00:00
148         item->setData(1, Qt::UserRole + 1, "0");
149
150     slotCheckVobList();
151 }
152
153 void DvdWizardVob::changeFormat()
154 {
155     int max = m_view.vobs_list->topLevelItemCount();
156     QString profilename;
157     switch (m_view.dvd_profile->currentIndex()) {
158     case 1:
159         profilename = "dv_pal_wide";
160         break;
161     case 2:
162         profilename = "dv_ntsc";
163         break;
164     case 3:
165         profilename = "dv_ntsc_wide";
166         break;
167     default:
168         profilename = "dv_pal";
169         break;
170     }
171
172     Mlt::Profile profile(profilename.toUtf8().data());
173     QPixmap pix(180, 135);
174
175     for (int i = 0; i < max; i++) {
176         QTreeWidgetItem *item = m_view.vobs_list->topLevelItem(i);
177         Mlt::Producer *producer = new Mlt::Producer(profile, item->text(0).toUtf8().data());
178
179         if (producer->is_blank() == false) {
180             //pix = KThumb::getFrame(producer, 0, 135 * profile.dar(), 135);
181             //item->setIcon(0, pix);
182             item->setText(1, Timecode::getStringTimecode(producer->get_playtime(), profile.fps()));
183         }
184         delete producer;
185         int submax = item->childCount();
186         for (int j = 0; j < submax; j++) {
187             QTreeWidgetItem *subitem = item->child(j);
188             subitem->setText(1, Timecode::getStringTimecode(subitem->data(1, Qt::UserRole).toInt(), profile.fps()));
189         }
190     }
191     slotCheckVobList();
192 }
193
194 void DvdWizardVob::slotDeleteVobFile()
195 {
196     QTreeWidgetItem *item = m_view.vobs_list->currentItem();
197     if (item == NULL) return;
198     delete item;
199     slotCheckVobList();
200 }
201
202
203 // virtual
204 bool DvdWizardVob::isComplete() const
205 {
206     if (!m_view.error_message->text().isEmpty()) return false;
207     if (m_view.vobs_list->topLevelItemCount() == 0) return false;
208     return true;
209 }
210
211 void DvdWizardVob::setUrl(const QString &url)
212 {
213     slotAddVobFile(KUrl(url));
214 }
215
216 QStringList DvdWizardVob::selectedUrls() const
217 {
218     QStringList result;
219     QString path;
220     int max = m_view.vobs_list->topLevelItemCount();
221     for (int i = 0; i < max; i++) {
222         QTreeWidgetItem *item = m_view.vobs_list->topLevelItem(i);
223         if (item) result.append(item->text(0));
224     }
225     return result;
226 }
227
228
229 QStringList DvdWizardVob::durations() const
230 {
231     QStringList result;
232     QString path;
233     int max = m_view.vobs_list->topLevelItemCount();
234     for (int i = 0; i < max; i++) {
235         QTreeWidgetItem *item = m_view.vobs_list->topLevelItem(i);
236         if (item) result.append(QString::number(item->data(1, Qt::UserRole).toInt()));
237     }
238     return result;
239 }
240
241 QStringList DvdWizardVob::chapters() const
242 {
243     QStringList result;
244     QString path;
245     int max = m_view.vobs_list->topLevelItemCount();
246     for (int i = 0; i < max; i++) {
247         QTreeWidgetItem *item = m_view.vobs_list->topLevelItem(i);
248         if (item) result.append(item->data(1, Qt::UserRole + 1).toString());
249     }
250     return result;
251 }
252
253 void DvdWizardVob::updateChapters(QMap <QString, QString> chaptersdata)
254 {
255     int max = m_view.vobs_list->topLevelItemCount();
256     for (int i = 0; i < max; i++) {
257         QTreeWidgetItem *item = m_view.vobs_list->topLevelItem(i);
258         item->setData(1, Qt::UserRole + 1, chaptersdata.value(item->text(0)));
259     }
260 }
261
262 int DvdWizardVob::duration(int ix) const
263 {
264     int result = -1;
265     QTreeWidgetItem *item = m_view.vobs_list->topLevelItem(ix);
266     if (item) {
267         result = item->data(1, Qt::UserRole).toInt();
268     }
269     return result;
270 }
271
272
273 QString DvdWizardVob::introMovie() const
274 {
275     if (!m_view.use_intro->isChecked()) return QString();
276     return m_view.intro_vob->url().path();
277 }
278
279 void DvdWizardVob::setIntroMovie(const QString path)
280 {
281     m_view.intro_vob->setUrl(KUrl(path));
282     m_view.use_intro->setChecked(path.isEmpty() == false);
283 }
284
285
286 void DvdWizardVob::slotCheckVobList()
287 {
288     emit completeChanged();
289     int max = m_view.vobs_list->topLevelItemCount();
290     QTreeWidgetItem *item = m_view.vobs_list->currentItem();
291     bool hasItem = true;
292     if (item == NULL) hasItem = false;
293     m_view.button_delete->setEnabled(hasItem);
294     if (hasItem && m_view.vobs_list->indexOfTopLevelItem(item) == 0) m_view.button_up->setEnabled(false);
295     else m_view.button_up->setEnabled(hasItem);
296     if (hasItem && m_view.vobs_list->indexOfTopLevelItem(item) == max - 1) m_view.button_down->setEnabled(false);
297     else m_view.button_down->setEnabled(hasItem);
298
299 #if KDE_IS_VERSION(4,2,0)
300     qint64 totalSize = 0;
301     for (int i = 0; i < max; i++) {
302         item = m_view.vobs_list->topLevelItem(i);
303         if (item) totalSize += (qint64) item->data(0, Qt::UserRole).toInt();
304     }
305
306     qint64 maxSize = (qint64) 47000 * 100000;
307     m_capacityBar->setValue(100 * totalSize / maxSize);
308     m_capacityBar->setText(KIO::convertSize(totalSize));
309 #endif
310 }
311
312 void DvdWizardVob::slotItemUp()
313 {
314     QTreeWidgetItem *item = m_view.vobs_list->currentItem();
315     if (item == NULL) return;
316     int index = m_view.vobs_list->indexOfTopLevelItem(item);
317     if (index == 0) return;
318     m_view.vobs_list->insertTopLevelItem(index - 1, m_view.vobs_list->takeTopLevelItem(index));
319 }
320
321 void DvdWizardVob::slotItemDown()
322 {
323     int max = m_view.vobs_list->topLevelItemCount();
324     QTreeWidgetItem *item = m_view.vobs_list->currentItem();
325     if (item == NULL) return;
326     int index = m_view.vobs_list->indexOfTopLevelItem(item);
327     if (index == max - 1) return;
328     m_view.vobs_list->insertTopLevelItem(index + 1, m_view.vobs_list->takeTopLevelItem(index));
329 }
330
331 bool DvdWizardVob::isPal() const
332 {
333     return m_view.dvd_profile->currentIndex() < 2;
334 }
335
336 bool DvdWizardVob::isWide() const
337 {
338     return (m_view.dvd_profile->currentIndex() == 1 || m_view.dvd_profile->currentIndex() == 3);
339 }
340
341 void DvdWizardVob::setProfile(const QString profile)
342 {
343     if (profile == "dv_pal") m_view.dvd_profile->setCurrentIndex(0);
344     else if (profile == "dv_pal_wide") m_view.dvd_profile->setCurrentIndex(1);
345     else if (profile == "dv_ntsc") m_view.dvd_profile->setCurrentIndex(2);
346     else if (profile == "dv_ntsc_wide") m_view.dvd_profile->setCurrentIndex(3);
347 }
348
349 void DvdWizardVob::clear()
350 {
351     m_view.vobs_list->clear();
352 }