]> git.sesse.net Git - kdenlive/blob - src/profilesdialog.cpp
Make sure we don't create a new profile with existing name, nor create a duplicate...
[kdenlive] / src / profilesdialog.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 #include "profilesdialog.h"
21 #include "kdenlivesettings.h"
22
23 #include <KStandardDirs>
24 #include <KDebug>
25 #include <KMessageBox>
26 #include <KIO/NetAccess>
27
28 #include <QDir>
29 #include <QCloseEvent>
30
31 ProfilesDialog::ProfilesDialog(QWidget * parent) :
32         QDialog(parent),
33         m_profileIsModified(false),
34         m_isCustomProfile(false)
35 {
36     m_view.setupUi(this);
37
38     QStringList profilesFilter;
39     profilesFilter << "*";
40
41     m_view.button_delete->setIcon(KIcon("trash-empty"));
42     m_view.button_delete->setToolTip(i18n("Delete profile"));
43     m_view.button_save->setIcon(KIcon("document-save"));
44     m_view.button_save->setToolTip(i18n("Save profile"));
45     m_view.button_create->setIcon(KIcon("document-new"));
46     m_view.button_create->setToolTip(i18n("Create new profile"));
47
48     fillList();
49     slotUpdateDisplay();
50     connect(m_view.profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
51     connect(m_view.button_create, SIGNAL(clicked()), this, SLOT(slotCreateProfile()));
52     connect(m_view.button_save, SIGNAL(clicked()), this, SLOT(slotSaveProfile()));
53     connect(m_view.button_delete, SIGNAL(clicked()), this, SLOT(slotDeleteProfile()));
54     connect(m_view.button_default, SIGNAL(clicked()), this, SLOT(slotSetDefaultProfile()));
55
56     connect(m_view.description, SIGNAL(textChanged(const QString &)), this, SLOT(slotProfileEdited()));
57     connect(m_view.frame_num, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
58     connect(m_view.frame_den, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
59     connect(m_view.aspect_num, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
60     connect(m_view.aspect_den, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
61     connect(m_view.display_num, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
62     connect(m_view.display_den, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
63     connect(m_view.progressive, SIGNAL(stateChanged(int)), this, SLOT(slotProfileEdited()));
64     connect(m_view.size_h, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
65     connect(m_view.size_w, SIGNAL(valueChanged(int)), this, SLOT(slotProfileEdited()));
66 }
67
68 void ProfilesDialog::slotProfileEdited()
69 {
70     m_profileIsModified = true;
71 }
72
73 void ProfilesDialog::fillList(const QString selectedProfile)
74 {
75     // List the Mlt profiles
76     m_view.profiles_list->clear();
77     QMap <QString, QString> profilesInfo = ProfilesDialog::getProfilesInfo();
78     QMapIterator<QString, QString> i(profilesInfo);
79     while (i.hasNext()) {
80         i.next();
81         m_view.profiles_list->addItem(i.key(), i.value());
82     }
83
84     if (!KdenliveSettings::default_profile().isEmpty()) {
85         for (int i = 0; i < m_view.profiles_list->count(); i++) {
86             if (m_view.profiles_list->itemData(i).toString() == KdenliveSettings::default_profile()) {
87                 m_view.profiles_list->setCurrentIndex(i);
88                 break;
89             }
90         }
91     }
92     int ix = m_view.profiles_list->findText(selectedProfile);
93     if (ix != -1) m_view.profiles_list->setCurrentIndex(ix);
94     m_selectedProfileIndex = m_view.profiles_list->currentIndex();
95 }
96
97 void ProfilesDialog::accept()
98 {
99     if (askForSave()) QDialog::accept();
100 }
101
102 void ProfilesDialog::closeEvent(QCloseEvent *event)
103 {
104     if (askForSave()) {
105         event->accept();
106     } else {
107         event->ignore();
108     }
109 }
110
111 bool ProfilesDialog::askForSave()
112 {
113     if (!m_profileIsModified) return true;
114     if (KMessageBox::questionYesNo(this, i18n("The custom profile was modified, do you want to save it?")) != KMessageBox::Yes) return true;
115     return slotSaveProfile();
116 }
117
118 void ProfilesDialog::slotCreateProfile()
119 {
120     m_view.button_delete->setEnabled(false);
121     m_view.button_create->setEnabled(false);
122     m_view.button_save->setEnabled(true);
123     m_view.properties->setEnabled(true);
124 }
125
126 void ProfilesDialog::slotSetDefaultProfile()
127 {
128     int ix = m_view.profiles_list->currentIndex();
129     QString path = m_view.profiles_list->itemData(ix).toString();
130     if (!path.isEmpty()) KdenliveSettings::setDefault_profile(path);
131 }
132
133 bool ProfilesDialog::slotSaveProfile()
134 {
135     const QString profileDesc = m_view.description->text();
136     int ix = m_view.profiles_list->findText(profileDesc);
137     if (ix != -1) {
138         // this profile name already exists
139         const QString path = m_view.profiles_list->itemData(ix).toString();
140         if (!path.contains('/')) {
141             KMessageBox::sorry(this, i18n("A profile with same name already exists in MLT's default profiles, please choose another description for your custom profile."));
142             return false;
143         }
144         saveProfile(path);
145     } else {
146         int i = 0;
147         QString customName = "profiles/customprofile";
148         QString profilePath = KStandardDirs::locateLocal("appdata", customName + QString::number(i));
149         kDebug() << " TYING PROFILE FILE: " << profilePath;
150         while (KIO::NetAccess::exists(KUrl(profilePath), KIO::NetAccess::SourceSide, this)) {
151             i++;
152             profilePath = KStandardDirs::locateLocal("appdata", customName + QString::number(i));
153         }
154         saveProfile(profilePath);
155     }
156     m_profileIsModified = false;
157     fillList(profileDesc);
158     m_view.button_create->setEnabled(true);
159     return true;
160 }
161
162 void ProfilesDialog::saveProfile(const QString path)
163 {
164     QFile file(path);
165     if (!file.open(QIODevice::WriteOnly)) {
166         KMessageBox::sorry(this, i18n("Cannot write to file %1", path));
167         return;
168     }
169     QTextStream out(&file);
170     out << "description=" << m_view.description->text() << "\n" << "frame_rate_num=" << m_view.frame_num->value() << "\n" << "frame_rate_den=" << m_view.frame_den->value() << "\n" << "width=" << m_view.size_w->value() << "\n" << "height=" << m_view.size_h->value() << "\n" << "progressive=" << m_view.progressive->isChecked() << "\n" << "sample_aspect_num=" << m_view.aspect_num->value() << "\n" << "sample_aspect_den=" << m_view.aspect_den->value() << "\n" << "display_aspect_num=" << m_view.display_num->value() << "\n" << "display_aspect_den=" << m_view.display_den->value() << "\n";
171     if (file.error() != QFile::NoError) {
172         KMessageBox::error(this, i18n("Cannot write to file %1", path));
173     }
174     file.close();
175 }
176
177 void ProfilesDialog::slotDeleteProfile()
178 {
179     const QString path = m_view.profiles_list->itemData(m_view.profiles_list->currentIndex()).toString();
180     if (path.contains('/')) {
181         KIO::NetAccess::del(KUrl(path), this);
182         fillList();
183     } else kDebug() << "//// Cannot delete profile " << path << ", does not seem to be custom one";
184 }
185
186 // static
187 MltVideoProfile ProfilesDialog::getVideoProfile(QString name)
188 {
189     MltVideoProfile result;
190     QStringList profilesNames;
191     QStringList profilesFiles;
192     QStringList profilesFilter;
193     profilesFilter << "*";
194     QString path;
195     bool isCustom = false;
196     if (name.contains('/')) isCustom = true;
197
198     if (!isCustom) {
199         // List the Mlt profiles
200         profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
201         if (profilesFiles.contains(name)) path = KdenliveSettings::mltpath() + '/' + name;
202     }
203     if (isCustom || path.isEmpty()) {
204         path = name;
205     }
206
207     if (path.isEmpty() || !QFile::exists(path)) {
208         if (name == "dv_pal") {
209             kDebug() << "!!! WARNING, COULD NOT FIND DEFAULT MLT PROFILE";
210             return result;
211         }
212         if (name == KdenliveSettings::default_profile()) KdenliveSettings::setDefault_profile("dv_pal");
213         kDebug() << "// WARNING, COULD NOT FIND PROFILE " << name;
214         return result;
215     }
216     KConfig confFile(path, KConfig::SimpleConfig);
217     result.path = name;
218     result.description = confFile.entryMap().value("description");
219     result.frame_rate_num = confFile.entryMap().value("frame_rate_num").toInt();
220     result.frame_rate_den = confFile.entryMap().value("frame_rate_den").toInt();
221     result.width = confFile.entryMap().value("width").toInt();
222     result.height = confFile.entryMap().value("height").toInt();
223     result.progressive = confFile.entryMap().value("progressive").toInt();
224     result.sample_aspect_num = confFile.entryMap().value("sample_aspect_num").toInt();
225     result.sample_aspect_den = confFile.entryMap().value("sample_aspect_den").toInt();
226     result.display_aspect_num = confFile.entryMap().value("display_aspect_num").toInt();
227     result.display_aspect_den = confFile.entryMap().value("display_aspect_den").toInt();
228     return result;
229 }
230
231 // static
232 QString ProfilesDialog::getProfileDescription(QString name)
233 {
234     QStringList profilesNames;
235     QStringList profilesFiles;
236     QStringList profilesFilter;
237     profilesFilter << "*";
238
239     // List the Mlt profiles
240     profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
241     if (profilesFiles.contains(name)) {
242         KConfig confFile(KdenliveSettings::mltpath() + '/' + name, KConfig::SimpleConfig);
243         return confFile.entryMap().value("description");
244     }
245
246     // List custom profiles
247     QStringList customProfiles = KGlobal::dirs()->findDirs("appdata", "profiles");
248     for (int i = 0; i < customProfiles.size(); ++i) {
249         profilesFiles = QDir(customProfiles.at(i)).entryList(profilesFilter, QDir::Files);
250         if (profilesFiles.contains(name)) {
251             KConfig confFile(customProfiles.at(i) + '/' + name, KConfig::SimpleConfig);
252             return confFile.entryMap().value("description");
253         }
254     }
255
256     return QString();
257 }
258
259 // static
260 bool ProfilesDialog::existingProfileDescription(const QString &desc)
261 {
262     QStringList profilesFilter;
263     profilesFilter << "*";
264
265     // List the Mlt profiles
266     QStringList profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
267     for (int i = 0; i < profilesFiles.size(); ++i) {
268         KConfig confFile(KdenliveSettings::mltpath() + '/' + profilesFiles.at(i), KConfig::SimpleConfig);
269         if (desc == confFile.entryMap().value("description")) return true;
270     }
271
272     // List custom profiles
273     QStringList customProfiles = KGlobal::dirs()->findDirs("appdata", "profiles");
274     for (int i = 0; i < customProfiles.size(); ++i) {
275         profilesFiles = QDir(customProfiles.at(i)).entryList(profilesFilter, QDir::Files);
276         for (int j = 0; j < profilesFiles.size(); ++j) {
277             KConfig confFile(customProfiles.at(i) + '/' + profilesFiles.at(j), KConfig::SimpleConfig);
278             if (desc == confFile.entryMap().value("description")) return true;
279         }
280     }
281     return false;
282 }
283
284 // static
285 QString ProfilesDialog::existingProfile(MltVideoProfile profile)
286 {
287     // Check if the profile has a matching entry in existing ones
288     QStringList profilesFilter;
289     profilesFilter << "*";
290
291     // Check the Mlt profiles
292     QStringList profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
293     for (int i = 0; i < profilesFiles.size(); ++i) {
294         KConfig confFile(KdenliveSettings::mltpath() + '/' + profilesFiles.at(i), KConfig::SimpleConfig);
295         if (profile.display_aspect_den != confFile.entryMap().value("display_aspect_den").toInt()) continue;
296         if (profile.display_aspect_num != confFile.entryMap().value("display_aspect_num").toInt()) continue;
297         if (profile.sample_aspect_den != confFile.entryMap().value("sample_aspect_den").toInt()) continue;
298         if (profile.sample_aspect_num != confFile.entryMap().value("sample_aspect_num").toInt()) continue;
299         if (profile.width != confFile.entryMap().value("width").toInt()) continue;
300         if (profile.height != confFile.entryMap().value("height").toInt()) continue;
301         if (profile.frame_rate_den != confFile.entryMap().value("frame_rate_den").toInt()) continue;
302         if (profile.frame_rate_num != confFile.entryMap().value("frame_rate_num").toInt()) continue;
303         if (profile.progressive != confFile.entryMap().value("progressive").toInt()) continue;
304         return profilesFiles.at(i);
305     }
306
307     // Check custom profiles
308     QStringList customProfiles = KGlobal::dirs()->findDirs("appdata", "profiles");
309     for (int i = 0; i < customProfiles.size(); ++i) {
310         profilesFiles = QDir(customProfiles.at(i)).entryList(profilesFilter, QDir::Files);
311         for (int j = 0; j < profilesFiles.size(); ++j) {
312             KConfig confFile(customProfiles.at(i) + '/' + profilesFiles.at(j), KConfig::SimpleConfig);
313             if (profile.display_aspect_den != confFile.entryMap().value("display_aspect_den").toInt()) continue;
314             if (profile.display_aspect_num != confFile.entryMap().value("display_aspect_num").toInt()) continue;
315             if (profile.sample_aspect_den != confFile.entryMap().value("sample_aspect_den").toInt()) continue;
316             if (profile.sample_aspect_num != confFile.entryMap().value("sample_aspect_num").toInt()) continue;
317             if (profile.width != confFile.entryMap().value("width").toInt()) continue;
318             if (profile.height != confFile.entryMap().value("height").toInt()) continue;
319             if (profile.frame_rate_den != confFile.entryMap().value("frame_rate_den").toInt()) continue;
320             if (profile.frame_rate_num != confFile.entryMap().value("frame_rate_num").toInt()) continue;
321             if (profile.progressive != confFile.entryMap().value("progressive").toInt()) continue;
322             return customProfiles.at(i) + '/' + profilesFiles.at(j);
323         }
324     }
325     return QString();
326 }
327
328 // static
329 QMap <QString, QString> ProfilesDialog::getProfilesInfo()
330 {
331     QMap <QString, QString> result;
332     QStringList profilesFilter;
333     profilesFilter << "*";
334
335     // List the Mlt profiles
336     QStringList profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
337     for (int i = 0; i < profilesFiles.size(); ++i) {
338         KConfig confFile(KdenliveSettings::mltpath() + '/' + profilesFiles.at(i), KConfig::SimpleConfig);
339         QString desc = confFile.entryMap().value("description");
340         if (!desc.isEmpty()) result.insert(desc, profilesFiles.at(i));
341     }
342
343     // List custom profiles
344     QStringList customProfiles = KGlobal::dirs()->findDirs("appdata", "profiles");
345     for (int i = 0; i < customProfiles.size(); ++i) {
346         profilesFiles = QDir(customProfiles.at(i)).entryList(profilesFilter, QDir::Files);
347         for (int j = 0; j < profilesFiles.size(); ++j) {
348             KConfig confFile(customProfiles.at(i) + '/' + profilesFiles.at(j), KConfig::SimpleConfig);
349             QString desc = confFile.entryMap().value("description");
350             if (!desc.isEmpty()) result.insert(desc, customProfiles.at(i) + '/' + profilesFiles.at(j));
351         }
352     }
353     return result;
354 }
355
356 // static
357 QMap< QString, QString > ProfilesDialog::getSettingsFromFile(const QString path)
358 {
359     QStringList profilesNames;
360     QStringList profilesFiles;
361     QStringList profilesFilter;
362     profilesFilter << "*";
363
364     if (!path.contains('/')) {
365         // This is an MLT profile
366         KConfig confFile(KdenliveSettings::mltpath() + '/' + path, KConfig::SimpleConfig);
367         return confFile.entryMap();
368     } else {
369         // This is a custom profile
370         KConfig confFile(path, KConfig::SimpleConfig);
371         return confFile.entryMap();
372     }
373 }
374
375 // static
376 QMap< QString, QString > ProfilesDialog::getSettingsForProfile(const QString profileName)
377 {
378     QStringList profilesNames;
379     QStringList profilesFiles;
380     QStringList profilesFilter;
381     profilesFilter << "*";
382
383     // List the Mlt profiles
384     profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
385     for (int i = 0; i < profilesFiles.size(); ++i) {
386         KConfig confFile(KdenliveSettings::mltpath() + '/' + profilesFiles.at(i), KConfig::SimpleConfig);
387         QMap< QString, QString > values = confFile.entryMap();
388         if (values.value("description") == profileName) {
389             values.insert("path", profilesFiles.at(i));
390             return values;
391         }
392     }
393
394     // List custom profiles
395     QStringList customProfiles = KGlobal::dirs()->findDirs("appdata", "profiles");
396     for (int i = 0; i < customProfiles.size(); ++i) {
397         QStringList profiles = QDir(customProfiles.at(i)).entryList(profilesFilter, QDir::Files);
398         for (int i = 0; i < profiles.size(); ++i) {
399             KConfig confFile(customProfiles.at(i) + '/' + profiles.at(i), KConfig::SimpleConfig);
400             QMap< QString, QString > values = confFile.entryMap();
401             if (values.value("description") == profileName) {
402                 values.insert("path", customProfiles.at(i) + '/' + profiles.at(i));
403                 return values;
404             }
405         }
406     }
407     return QMap< QString, QString >();
408 }
409
410 // static
411 QString ProfilesDialog::getPathFromDescription(const QString profileDesc)
412 {
413     QStringList profilesNames;
414     QStringList profilesFiles;
415     QStringList profilesFilter;
416     profilesFilter << "*";
417
418     // List the Mlt profiles
419     profilesFiles = QDir(KdenliveSettings::mltpath()).entryList(profilesFilter, QDir::Files);
420     for (int i = 0; i < profilesFiles.size(); ++i) {
421         KConfig confFile(KdenliveSettings::mltpath() + '/' + profilesFiles.at(i), KConfig::SimpleConfig);
422         QMap< QString, QString > values = confFile.entryMap();
423         if (values.value("description") == profileDesc) return profilesFiles.at(i);
424     }
425
426     // List custom profiles
427     QStringList customProfiles = KGlobal::dirs()->findDirs("appdata", "profiles");
428     for (int i = 0; i < customProfiles.size(); ++i) {
429         QStringList profiles = QDir(customProfiles.at(i)).entryList(profilesFilter, QDir::Files);
430         for (int i = 0; i < profiles.size(); ++i) {
431             KConfig confFile(customProfiles.at(i) + '/' + profiles.at(i), KConfig::SimpleConfig);
432             QMap< QString, QString > values = confFile.entryMap();
433             if (values.value("description") == profileDesc) return customProfiles.at(i) + '/' + profiles.at(i);
434         }
435     }
436     return QString();
437 }
438
439 // static
440 void ProfilesDialog::saveProfile(MltVideoProfile &profile)
441 {
442     int i = 0;
443     QString customName = "profiles/customprofile";
444     QString profilePath = KStandardDirs::locateLocal("appdata", customName + QString::number(i));
445     kDebug() << " TYING PROFILE FILE: " << profilePath;
446     while (KIO::NetAccess::exists(KUrl(profilePath), KIO::NetAccess::SourceSide, 0)) {
447         i++;
448         profilePath = KStandardDirs::locateLocal("appdata", customName + QString::number(i));
449     }
450     QFile file(profilePath);
451     if (!file.open(QIODevice::WriteOnly)) {
452         KMessageBox::sorry(0, i18n("Cannot write to file %1", profilePath));
453         return;
454     }
455     QTextStream out(&file);
456     out << "description=" << profile.description << "\n" << "frame_rate_num=" << profile.frame_rate_num << "\n" << "frame_rate_den=" << profile.frame_rate_den << "\n" << "width=" << profile.width << "\n" << "height=" << profile.height << "\n" << "progressive=" << profile.progressive << "\n" << "sample_aspect_num=" << profile.sample_aspect_num << "\n" << "sample_aspect_den=" << profile.sample_aspect_den << "\n" << "display_aspect_num=" << profile.display_aspect_num << "\n" << "display_aspect_den=" << profile.display_aspect_den << "\n";
457     if (file.error() != QFile::NoError) {
458         KMessageBox::error(0, i18n("Cannot write to file %1", profilePath));
459     }
460     file.close();
461     profile.path = profilePath;
462 }
463
464
465 void ProfilesDialog::slotUpdateDisplay()
466 {
467     if (askForSave() == false) {
468         m_view.profiles_list->blockSignals(true);
469         m_view.profiles_list->setCurrentIndex(m_selectedProfileIndex);
470         m_view.profiles_list->blockSignals(false);
471         return;
472     }
473
474     m_selectedProfileIndex = m_view.profiles_list->currentIndex();
475     QString currentProfile = m_view.profiles_list->itemData(m_view.profiles_list->currentIndex()).toString();
476     m_isCustomProfile = currentProfile.contains('/');
477     m_view.button_delete->setEnabled(m_isCustomProfile);
478     m_view.properties->setEnabled(m_isCustomProfile);
479     m_view.button_save->setEnabled(m_isCustomProfile);
480     QMap< QString, QString > values = ProfilesDialog::getSettingsFromFile(currentProfile);
481     m_view.description->setText(values.value("description"));
482     m_view.size_w->setValue(values.value("width").toInt());
483     m_view.size_h->setValue(values.value("height").toInt());
484     m_view.aspect_num->setValue(values.value("sample_aspect_num").toInt());
485     m_view.aspect_den->setValue(values.value("sample_aspect_den").toInt());
486     m_view.display_num->setValue(values.value("display_aspect_num").toInt());
487     m_view.display_den->setValue(values.value("display_aspect_den").toInt());
488     m_view.frame_num->setValue(values.value("frame_rate_num").toInt());
489     m_view.frame_den->setValue(values.value("frame_rate_den").toInt());
490     m_view.progressive->setChecked(values.value("progressive").toInt());
491     m_profileIsModified = false;
492 }
493
494
495 #include "profilesdialog.moc"
496
497