]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.cpp
Progress on stopmotion widget (make it possible to switch between HDMI and V4L)
[kdenlive] / src / kdenlivesettingsdialog.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 "kdenlivesettingsdialog.h"
21 #include "profilesdialog.h"
22 #include "blackmagic/devices.h"
23 #include "kdenlivesettings.h"
24
25 #include <KStandardDirs>
26 #include <KDebug>
27 #include <kopenwithdialog.h>
28 #include <KConfigDialogManager>
29 #include <kde_file.h>
30 #include <KIO/NetAccess>
31 #include <kdeversion.h>
32
33 #include <QDir>
34 #include <QTimer>
35 #include <QTreeWidgetItem>
36
37 #include <stdlib.h>
38 #include <stdio.h>
39 #include <unistd.h>
40 #include <fcntl.h>
41 #ifndef NO_JOGSHUTTLE
42 #include <linux/input.h>
43 #endif /* NO_JOGSHUTTLE */
44
45
46 KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent) :
47     KConfigDialog(parent, "settings", KdenliveSettings::self()),
48     m_modified(false)
49 {
50
51     QWidget *p1 = new QWidget;
52     m_configMisc.setupUi(p1);
53     m_page1 = addPage(p1, i18n("Misc"), "configure");
54
55     // Hide multi tab option until Kdenlive really supports it
56     m_configMisc.kcfg_activatetabs->setVisible(false);
57
58     QWidget *p8 = new QWidget;
59     m_configProject.setupUi(p8);
60     m_page8 = addPage(p8, i18n("Project Defaults"), "document-new");
61
62     QWidget *p3 = new QWidget;
63     m_configTimeline.setupUi(p3);
64     m_page3 = addPage(p3, i18n("Timeline"), "video-display");
65
66     QWidget *p2 = new QWidget;
67     m_configEnv.setupUi(p2);
68     m_configEnv.mltpathurl->setMode(KFile::Directory);
69     m_configEnv.mltpathurl->lineEdit()->setObjectName("kcfg_mltpath");
70     m_configEnv.rendererpathurl->lineEdit()->setObjectName("kcfg_rendererpath");
71     m_configEnv.tmppathurl->setMode(KFile::Directory);
72     m_configEnv.tmppathurl->lineEdit()->setObjectName("kcfg_currenttmpfolder");
73     m_configEnv.projecturl->setMode(KFile::Directory);
74     m_configEnv.projecturl->lineEdit()->setObjectName("kcfg_defaultprojectfolder");
75     m_configEnv.capturefolderurl->setMode(KFile::Directory);
76     m_configEnv.capturefolderurl->lineEdit()->setObjectName("kcfg_capturefolder");
77     m_configEnv.capturefolderurl->setEnabled(!KdenliveSettings::capturetoprojectfolder());
78     connect(m_configEnv.kcfg_capturetoprojectfolder, SIGNAL(clicked()), this, SLOT(slotEnableCaptureFolder()));
79     m_page2 = addPage(p2, i18n("Environment"), "application-x-executable-script");
80
81     QWidget *p4 = new QWidget;
82     m_configCapture.setupUi(p4);
83     m_page4 = addPage(p4, i18n("Capture"), "media-record");
84     m_configCapture.tabWidget->setCurrentIndex(KdenliveSettings::defaultcapture());
85 #ifdef Q_WS_MAC
86     m_configCapture.tabWidget->setEnabled(false);
87     m_configCapture.kcfg_defaultcapture->setEnabled(false);
88     m_configCapture.label->setText(i18n("Capture is not yet available on OS X."));
89 #endif
90
91     QWidget *p5 = new QWidget;
92     m_configShuttle.setupUi(p5);
93 #ifndef NO_JOGSHUTTLE
94     connect(m_configShuttle.kcfg_enableshuttle, SIGNAL(stateChanged(int)), this, SLOT(slotCheckShuttle(int)));
95     connect(m_configShuttle.shuttledevicelist, SIGNAL(activated(int)), this, SLOT(slotUpdateShuttleDevice(int)));
96     slotCheckShuttle(KdenliveSettings::enableshuttle());
97     m_configShuttle.shuttledisabled->hide();
98 #else
99     m_configShuttle.kcfg_enableshuttle->hide();
100     m_configShuttle.kcfg_enableshuttle->setDisabled(true);
101 #endif /* NO_JOGSHUTTLE */
102     m_page5 = addPage(p5, i18n("JogShuttle"), "input-mouse");
103
104     QWidget *p6 = new QWidget;
105     m_configSdl.setupUi(p6);
106
107     // Disable drop B frames, see Kdenlive issue #1330
108     m_configSdl.groupBox->setHidden(true);
109 #if not defined(Q_WS_MAC) && not defined(USE_OPEN_GL)
110     m_configSdl.kcfg_openglmonitors->setHidden(true);
111 #endif
112
113     m_page6 = addPage(p6, i18n("Playback"), "media-playback-start");
114
115     QWidget *p7 = new QWidget;
116     m_configTranscode.setupUi(p7);
117     m_page7 = addPage(p7, i18n("Transcode"), "edit-copy");
118     connect(m_configTranscode.button_add, SIGNAL(clicked()), this, SLOT(slotAddTranscode()));
119     connect(m_configTranscode.button_delete, SIGNAL(clicked()), this, SLOT(slotDeleteTranscode()));
120     connect(m_configTranscode.profiles_list, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotDialogModified()));
121
122     QStringList actions;
123     actions << i18n("Do nothing");
124     actions << i18n("Play / Pause");
125     actions << i18n("Cut");
126     m_configShuttle.kcfg_shuttle1->addItems(actions);
127     m_configShuttle.kcfg_shuttle2->addItems(actions);
128     m_configShuttle.kcfg_shuttle3->addItems(actions);
129     m_configShuttle.kcfg_shuttle4->addItems(actions);
130     m_configShuttle.kcfg_shuttle5->addItems(actions);
131
132     connect(m_configCapture.kcfg_video4vdevice, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
133     connect(m_configCapture.kcfg_video4adevice, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
134     connect(m_configCapture.kcfg_video4vcodec, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
135     connect(m_configCapture.kcfg_video4acodec, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
136     connect(m_configCapture.kcfg_video4vformat, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
137     connect(m_configCapture.kcfg_video4aformat, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
138     connect(m_configCapture.kcfg_video4size, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
139     connect(m_configCapture.kcfg_video4rate, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
140
141     connect(m_configCapture.kcfg_rmd_capture_audio, SIGNAL(clicked(bool)), m_configCapture.audio_group, SLOT(setVisible(bool)));
142
143     m_configCapture.audio_group->setVisible(KdenliveSettings::rmd_capture_audio());
144
145     connect(m_configEnv.kp_image, SIGNAL(clicked()), this, SLOT(slotEditImageApplication()));
146     connect(m_configEnv.kp_audio, SIGNAL(clicked()), this, SLOT(slotEditAudioApplication()));
147     connect(m_configEnv.kp_player, SIGNAL(clicked()), this, SLOT(slotEditVideoApplication()));
148
149     checkProfile();
150
151     slotUpdateDisplay();
152
153     connect(m_configSdl.kcfg_audio_driver, SIGNAL(currentIndexChanged(int)), this, SLOT(slotCheckAlsaDriver()));
154     initDevices();
155     connect(m_configProject.kcfg_profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
156     connect(m_configCapture.kcfg_rmd_capture_type, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateRmdRegionStatus()));
157
158     slotUpdateRmdRegionStatus();
159     loadTranscodeProfiles();
160
161
162     //HACK: check dvgrab version, because only dvgrab >= 3.3 supports
163     //   --timestamp option without bug
164
165     if (KdenliveSettings::dvgrab_path().isEmpty() || !QFile::exists(KdenliveSettings::dvgrab_path())) {
166         QString dvgrabpath = KStandardDirs::findExe("dvgrab");
167         KdenliveSettings::setDvgrab_path(dvgrabpath);
168     }
169
170
171     BMInterface::getBlackMagicDeviceList(m_configCapture.kcfg_hdmi_capturedevice, m_configCapture.kcfg_hdmi_capturemode);
172     connect(m_configCapture.kcfg_hdmi_capturedevice, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateHDMIModes()));
173
174     double dvgrabVersion = 0;
175     if (!KdenliveSettings::dvgrab_path().isEmpty()) {
176         QProcess *versionCheck = new QProcess;
177         versionCheck->setProcessChannelMode(QProcess::MergedChannels);
178         versionCheck->start("dvgrab", QStringList() << "--version");
179         if (versionCheck->waitForFinished()) {
180             QString version = QString(versionCheck->readAll()).simplified();
181             if (version.contains(' ')) version = version.section(' ', -1);
182             dvgrabVersion = version.toDouble();
183
184             kDebug() << "// FOUND DVGRAB VERSION: " << dvgrabVersion;
185         }
186         delete versionCheck;
187         if (dvgrabVersion < 3.3) {
188             KdenliveSettings::setFirewiretimestamp(false);
189             m_configCapture.kcfg_firewiretimestamp->setEnabled(false);
190         }
191         m_configCapture.dvgrab_info->setText(i18n("dvgrab version %1 at %2", dvgrabVersion, KdenliveSettings::dvgrab_path()));
192     } else m_configCapture.dvgrab_info->setText(i18n("<strong><em>dvgrab</em> utility not found, please install it for firewire capture</strong>"));
193
194     if (KdenliveSettings::rmd_path().isEmpty() || !QFile::exists(KdenliveSettings::rmd_path())) {
195         QString rmdpath = KStandardDirs::findExe("recordmydesktop");
196         KdenliveSettings::setRmd_path(rmdpath);
197     }
198     if (KdenliveSettings::rmd_path().isEmpty())
199         m_configCapture.rmd_info->setText(i18n("<strong><em>Recordmydesktop</em> utility not found, please install it for screen grabs</strong>"));
200     else
201         m_configCapture.rmd_info->setText(i18n("Recordmydesktop found at: %1", KdenliveSettings::rmd_path()));
202 }
203
204 KdenliveSettingsDialog::~KdenliveSettingsDialog() {}
205
206 void KdenliveSettingsDialog::slotUpdateHDMIModes()
207 {
208     QStringList modes = m_configCapture.kcfg_hdmi_capturedevice->itemData(m_configCapture.kcfg_hdmi_capturedevice->currentIndex()).toStringList();
209     m_configCapture.kcfg_hdmi_capturemode->clear();
210     m_configCapture.kcfg_hdmi_capturemode->insertItems(0, modes);
211 }
212
213 void KdenliveSettingsDialog::slotUpdateRmdRegionStatus()
214 {
215     m_configCapture.region_group->setHidden(m_configCapture.kcfg_rmd_capture_type->currentIndex() != 1);
216 }
217
218 void KdenliveSettingsDialog::slotEnableCaptureFolder()
219 {
220     m_configEnv.capturefolderurl->setEnabled(!m_configEnv.kcfg_capturetoprojectfolder->isChecked());
221 }
222
223 void KdenliveSettingsDialog::checkProfile()
224 {
225     m_configProject.kcfg_profiles_list->clear();
226     QMap <QString, QString> profilesInfo = ProfilesDialog::getProfilesInfo();
227     QMapIterator<QString, QString> i(profilesInfo);
228     while (i.hasNext()) {
229         i.next();
230         m_configProject.kcfg_profiles_list->addItem(i.key(), i.value());
231     }
232
233     if (!KdenliveSettings::default_profile().isEmpty()) {
234         for (int i = 0; i < m_configProject.kcfg_profiles_list->count(); i++) {
235             if (m_configProject.kcfg_profiles_list->itemData(i).toString() == KdenliveSettings::default_profile()) {
236                 m_configProject.kcfg_profiles_list->setCurrentIndex(i);
237                 KdenliveSettings::setProfiles_list(i);
238                 break;
239             }
240         }
241     }
242 }
243
244 void KdenliveSettingsDialog::initDevices()
245 {
246     // Fill audio drivers
247     m_configSdl.kcfg_audio_driver->addItem(i18n("Automatic"), QString());
248 #ifndef Q_WS_MAC
249     m_configSdl.kcfg_audio_driver->addItem(i18n("OSS"), "dsp");
250     m_configSdl.kcfg_audio_driver->addItem(i18n("ALSA"), "alsa");
251     m_configSdl.kcfg_audio_driver->addItem(i18n("PulseAudio"), "pulse");
252     m_configSdl.kcfg_audio_driver->addItem(i18n("OSS with DMA access"), "dma");
253     m_configSdl.kcfg_audio_driver->addItem(i18n("Esound daemon"), "esd");
254     m_configSdl.kcfg_audio_driver->addItem(i18n("ARTS daemon"), "artsc");
255 #endif
256
257     if (!KdenliveSettings::audiodrivername().isEmpty())
258         for (int i = 1; i < m_configSdl.kcfg_audio_driver->count(); i++) {
259             if (m_configSdl.kcfg_audio_driver->itemData(i).toString() == KdenliveSettings::audiodrivername()) {
260                 m_configSdl.kcfg_audio_driver->setCurrentIndex(i);
261                 KdenliveSettings::setAudio_driver((uint) i);
262             }
263         }
264
265     // Fill video drivers
266     m_configSdl.kcfg_video_driver->addItem(i18n("Automatic"), QString());
267 #ifndef Q_WS_MAC
268     m_configSdl.kcfg_video_driver->addItem(i18n("XVideo"), "x11");
269     m_configSdl.kcfg_video_driver->addItem(i18n("X11"), "x11_noaccel");
270     m_configSdl.kcfg_video_driver->addItem(i18n("XFree86 DGA 2.0"), "dga");
271     m_configSdl.kcfg_video_driver->addItem(i18n("Nano X"), "nanox");
272     m_configSdl.kcfg_video_driver->addItem(i18n("Framebuffer console"), "fbcon");
273     m_configSdl.kcfg_video_driver->addItem(i18n("Direct FB"), "directfb");
274     m_configSdl.kcfg_video_driver->addItem(i18n("SVGAlib"), "svgalib");
275     m_configSdl.kcfg_video_driver->addItem(i18n("General graphics interface"), "ggi");
276     m_configSdl.kcfg_video_driver->addItem(i18n("Ascii art library"), "aalib");
277 #endif
278
279     // Fill the list of audio playback devices
280     m_configSdl.kcfg_audio_device->addItem(i18n("Default"), QString());
281     m_configCapture.kcfg_rmd_alsa_device->addItem(i18n("Default"), QString());
282     if (!KStandardDirs::findExe("aplay").isEmpty()) {
283         m_readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
284         m_readProcess.setProgram("aplay", QStringList() << "-l");
285         connect(&m_readProcess, SIGNAL(readyReadStandardOutput()) , this, SLOT(slotReadAudioDevices()));
286         m_readProcess.execute(5000);
287     } else {
288         // If aplay is not installed on the system, parse the /proc/asound/pcm file
289         QFile file("/proc/asound/pcm");
290         if (file.open(QIODevice::ReadOnly)) {
291             QTextStream stream(&file);
292             QString line;
293             QString deviceId;
294             while (!stream.atEnd()) {
295                 line = stream.readLine();
296                 if (line.contains("playback")) {
297                     deviceId = line.section(':', 0, 0);
298                     m_configSdl.kcfg_audio_device->addItem(line.section(':', 1, 1), "plughw:" + QString::number(deviceId.section('-', 0, 0).toInt()) + ',' + QString::number(deviceId.section('-', 1, 1).toInt()));
299                 }
300                 if (line.contains("capture")) {
301                     deviceId = line.section(':', 0, 0);
302                     m_configCapture.kcfg_rmd_alsa_device->addItem(line.section(':', 1, 1), "plughw:" + QString::number(deviceId.section('-', 0, 0).toInt()) + ',' + QString::number(deviceId.section('-', 1, 1).toInt()));
303                 }
304             }
305             file.close();
306         }
307     }
308     if (!KdenliveSettings::audiodevicename().isEmpty()) {
309         // Select correct alsa device
310         int ix = m_configSdl.kcfg_audio_device->findData(KdenliveSettings::audiodevicename());
311         m_configSdl.kcfg_audio_device->setCurrentIndex(ix);
312         KdenliveSettings::setAudio_device(ix);
313     }
314     if (!KdenliveSettings::rmd_alsadevicename().isEmpty()) {
315         // Select correct alsa device
316         int ix = m_configCapture.kcfg_rmd_alsa_device->findData(KdenliveSettings::rmd_alsadevicename());
317         m_configCapture.kcfg_rmd_alsa_device->setCurrentIndex(ix);
318         KdenliveSettings::setRmd_alsa_device(ix);
319     }
320 }
321
322
323 void KdenliveSettingsDialog::slotReadAudioDevices()
324 {
325     QString result = QString(m_readProcess.readAllStandardOutput());
326     kDebug() << "// / / / / / READING APLAY: ";
327     kDebug() << result;
328     QStringList lines = result.split('\n');
329     foreach(const QString & data, lines) {
330         kDebug() << "// READING LINE: " << data;
331         if (data.simplified().startsWith("card")) {
332             QString card = data.section(':', 0, 0).section(' ', -1);
333             QString device = data.section(':', 1, 1).section(' ', -1);
334             m_configSdl.kcfg_audio_device->addItem(data.section(':', -1), "plughw:" + card + ',' + device);
335             m_configCapture.kcfg_rmd_alsa_device->addItem(data.section(':', -1), "plughw:" + card + ',' + device);
336         }
337     }
338 }
339
340 void KdenliveSettingsDialog::showPage(int page, int option)
341 {
342     switch (page) {
343     case 1:
344         setCurrentPage(m_page1);
345         break;
346     case 2:
347         setCurrentPage(m_page2);
348         break;
349     case 3:
350         setCurrentPage(m_page3);
351         break;
352     case 4:
353         setCurrentPage(m_page4);
354         m_configCapture.tabWidget->setCurrentIndex(option);
355         break;
356     case 5:
357         setCurrentPage(m_page5);
358         break;
359     case 6:
360         setCurrentPage(m_page6);
361         break;
362     case 7:
363         setCurrentPage(m_page7);
364         break;
365     default:
366         setCurrentPage(m_page1);
367     }
368 }
369
370 void KdenliveSettingsDialog::slotEditVideoApplication()
371 {
372     KService::Ptr service;
373     KOpenWithDialog dlg(KUrl::List(), i18n("Select default video player"), m_configEnv.kcfg_defaultplayerapp->text(), this);
374     if (dlg.exec() != QDialog::Accepted)
375         return;
376
377     service = dlg.service();
378     m_configEnv.kcfg_defaultplayerapp->setText(service->exec());
379 }
380
381 void KdenliveSettingsDialog::slotEditAudioApplication()
382 {
383     KService::Ptr service;
384     KOpenWithDialog dlg(KUrl::List(), i18n("Select default audio editor"), m_configEnv.kcfg_defaultaudioapp->text(), this);
385     if (dlg.exec() != QDialog::Accepted)
386         return;
387
388     service = dlg.service();
389     m_configEnv.kcfg_defaultaudioapp->setText(service->exec());
390 }
391
392 void KdenliveSettingsDialog::slotEditImageApplication()
393 {
394     KService::Ptr service;
395     KOpenWithDialog dlg(KUrl::List(), i18n("Select default image editor"), m_configEnv.kcfg_defaultimageapp->text(), this);
396     if (dlg.exec() != QDialog::Accepted)
397         return;
398
399     service = dlg.service();
400     m_configEnv.kcfg_defaultimageapp->setText(service->exec());
401 }
402
403 #ifndef NO_JOGSHUTTLE
404 void KdenliveSettingsDialog::slotCheckShuttle(int state)
405 {
406     m_configShuttle.config_group->setEnabled(state);
407     if (m_configShuttle.shuttledevicelist->count() == 0) {
408         // parse devices
409         QString baseName = "/dev/input/event";
410         int fd;
411         for (int i = 0; i < 30; i++) {
412             QString filename = baseName + QString::number(i);
413             kDebug() << "/// CHECKING OFR: " << filename;
414
415             char name[256] = "unknown";
416             fd = KDE_open((char *) filename.toUtf8().data(), O_RDONLY);
417             if (fd >= 0 && ioctl(fd, EVIOCGNAME(sizeof(name)), name) >= 0) {
418                 m_configShuttle.shuttledevicelist->addItem(name, filename);
419             }
420             ::close(fd);
421         }
422         if (KdenliveSettings::shuttledevice().isEmpty()) QTimer::singleShot(1500, this, SLOT(slotUpdateShuttleDevice()));
423     }
424 }
425
426 void KdenliveSettingsDialog::slotUpdateShuttleDevice(int ix)
427 {
428     QString device = m_configShuttle.shuttledevicelist->itemData(ix).toString();
429     //KdenliveSettings::setShuttledevice(device);
430     m_configShuttle.kcfg_shuttledevice->setText(device);
431 }
432 #endif /* NO_JOGSHUTTLE */
433
434 void KdenliveSettingsDialog::rebuildVideo4Commands()
435 {
436     QString captureCommand;
437     if (!m_configCapture.kcfg_video4adevice->text().isEmpty()) captureCommand = "-f " + m_configCapture.kcfg_video4aformat->text() + " -i " + m_configCapture.kcfg_video4adevice->text() + " -acodec " + m_configCapture.kcfg_video4acodec->text();
438
439     captureCommand +=  " -f " + m_configCapture.kcfg_video4vformat->text() + " -s " + m_configCapture.kcfg_video4size->text() + " -r " + QString::number(m_configCapture.kcfg_video4rate->value()) + " -i " + m_configCapture.kcfg_video4vdevice->text() + " -vcodec " + m_configCapture.kcfg_video4vcodec->text();
440     m_configCapture.kcfg_video4capture->setText(captureCommand);
441 }
442
443
444 void KdenliveSettingsDialog::updateSettings()
445 {
446     //kDebug() << "// // // KCONFIG UPDATE called";
447
448     m_defaultProfile = m_configProject.kcfg_profiles_list->currentText();
449     KdenliveSettings::setDefault_profile(m_defaultPath);
450
451     bool resetProfile = false;
452     bool updateCapturePath = false;
453
454     if (m_configEnv.kcfg_capturetoprojectfolder->isChecked() != KdenliveSettings::capturetoprojectfolder()) {
455         KdenliveSettings::setCapturetoprojectfolder(m_configEnv.kcfg_capturetoprojectfolder->isChecked());
456         updateCapturePath = true;
457     }
458
459     if (m_configEnv.capturefolderurl->url().path() != KdenliveSettings::capturefolder()) {
460         KdenliveSettings::setCapturefolder(m_configEnv.capturefolderurl->url().path());
461         updateCapturePath = true;
462     }
463
464     if (m_configCapture.kcfg_dvgrabfilename->text() != KdenliveSettings::dvgrabfilename()) {
465         KdenliveSettings::setDvgrabfilename(m_configCapture.kcfg_dvgrabfilename->text());
466         updateCapturePath = true;
467     }
468
469     if ((uint) m_configCapture.kcfg_firewireformat->currentIndex() != KdenliveSettings::firewireformat()) {
470         KdenliveSettings::setFirewireformat(m_configCapture.kcfg_firewireformat->currentIndex());
471         updateCapturePath = true;
472     }
473
474     if (updateCapturePath) emit updateCaptureFolder();
475
476     QString value = m_configCapture.kcfg_rmd_alsa_device->itemData(m_configCapture.kcfg_rmd_alsa_device->currentIndex()).toString();
477     if (value != KdenliveSettings::rmd_alsadevicename()) {
478         KdenliveSettings::setRmd_alsadevicename(value);
479     }
480
481     value = m_configCapture.kcfg_rmd_audio_freq->itemText(m_configCapture.kcfg_rmd_audio_freq->currentIndex());
482     kDebug() << "// AUDIO FREQ VALUE: " << value << ", CURRENT: " << KdenliveSettings::rmd_freq() << ", IX: " << m_configCapture.kcfg_rmd_audio_freq->currentIndex();
483     if (value != KdenliveSettings::rmd_freq()) {
484         kDebug() << "// SETTING AUDIO FREQ TO: " << value;
485         KdenliveSettings::setRmd_freq(value);
486     }
487
488     value = m_configSdl.kcfg_audio_driver->itemData(m_configSdl.kcfg_audio_driver->currentIndex()).toString();
489     if (value != KdenliveSettings::audiodrivername()) {
490         KdenliveSettings::setAudiodrivername(value);
491         resetProfile = true;
492     }
493
494     if (value == "alsa") {
495         // Audio device setting is only valid for alsa driver
496         value = m_configSdl.kcfg_audio_device->itemData(m_configSdl.kcfg_audio_device->currentIndex()).toString();
497         if (value != KdenliveSettings::audiodevicename()) {
498             KdenliveSettings::setAudiodevicename(value);
499             resetProfile = true;
500         }
501     } else if (KdenliveSettings::audiodevicename().isEmpty() == false) {
502         KdenliveSettings::setAudiodevicename(QString::null);
503         resetProfile = true;
504     }
505
506     value = m_configSdl.kcfg_video_driver->itemData(m_configSdl.kcfg_video_driver->currentIndex()).toString();
507     if (value != KdenliveSettings::videodrivername()) {
508         KdenliveSettings::setVideodrivername(value);
509         resetProfile = true;
510     }
511
512     if (m_configSdl.kcfg_window_background->color() != KdenliveSettings::window_background()) {
513         KdenliveSettings::setWindow_background(m_configSdl.kcfg_window_background->color());
514         resetProfile = true;
515     }
516
517     if (m_configSdl.kcfg_volume->value() != KdenliveSettings::volume()) {
518         KdenliveSettings::setVolume(m_configSdl.kcfg_volume->value());
519         resetProfile = true;
520     }
521
522     bool updatePreview = false;
523     if (m_configSdl.kcfg_dropbframes->isChecked() != KdenliveSettings::dropbframes()) {
524         KdenliveSettings::setDropbframes(m_configSdl.kcfg_dropbframes->isChecked());
525         updatePreview = true;
526     }
527
528     if (m_modified) {
529         // The transcoding profiles were modified, save.
530         m_modified = false;
531         saveTranscodeProfiles();
532     }
533
534 #if KDE_IS_VERSION(4,3,0)
535     KConfigDialog::settingsChangedSlot();
536 #endif
537
538     //KConfigDialog::updateSettings();
539     if (resetProfile) emit doResetProfile();
540     if (updatePreview) emit updatePreviewSettings();
541 }
542
543 void KdenliveSettingsDialog::slotUpdateDisplay()
544 {
545     QString currentProfile = m_configProject.kcfg_profiles_list->itemData(m_configProject.kcfg_profiles_list->currentIndex()).toString();
546     QMap< QString, QString > values = ProfilesDialog::getSettingsFromFile(currentProfile);
547     m_configProject.p_size->setText(values.value("width") + 'x' + values.value("height"));
548     m_configProject.p_fps->setText(values.value("frame_rate_num") + '/' + values.value("frame_rate_den"));
549     m_configProject.p_aspect->setText(values.value("sample_aspect_num") + '/' + values.value("sample_aspect_den"));
550     m_configProject.p_display->setText(values.value("display_aspect_num") + '/' + values.value("display_aspect_den"));
551     if (values.value("progressive").toInt() == 0)
552         m_configProject.p_progressive->setText(i18n("Interlaced"));
553     else
554         m_configProject.p_progressive->setText(i18n("Progressive"));
555     m_defaultProfile = m_configProject.kcfg_profiles_list->itemText(m_configProject.kcfg_profiles_list->currentIndex());
556     m_defaultPath = currentProfile;
557 }
558
559 void KdenliveSettingsDialog::slotCheckAlsaDriver()
560 {
561     QString value = m_configSdl.kcfg_audio_driver->itemData(m_configSdl.kcfg_audio_driver->currentIndex()).toString();
562     m_configSdl.kcfg_audio_device->setEnabled(value == "alsa");
563 }
564
565 void KdenliveSettingsDialog::loadTranscodeProfiles()
566 {
567     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
568     KConfigGroup transConfig(config, "Transcoding");
569     // read the entries
570     m_configTranscode.profiles_list->blockSignals(true);
571     QMap< QString, QString > profiles = transConfig.entryMap();
572     QMapIterator<QString, QString> i(profiles);
573     while (i.hasNext()) {
574         i.next();
575         QTreeWidgetItem *item = new QTreeWidgetItem(m_configTranscode.profiles_list, QStringList() << i.key() << i.value());
576         item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable);
577     }
578     m_configTranscode.profiles_list->blockSignals(false);
579 }
580
581 void KdenliveSettingsDialog::saveTranscodeProfiles()
582 {
583     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
584     //KSharedConfigPtr config = KGlobal::config();
585     KConfigGroup transConfig(config, "Transcoding");
586     // read the entries
587     transConfig.deleteGroup();
588     int max = m_configTranscode.profiles_list->topLevelItemCount();
589     for (int i = 0; i < max; i++) {
590         QTreeWidgetItem *item = m_configTranscode.profiles_list->topLevelItem(i);
591         transConfig.writeEntry(item->text(0), item->text(1));
592     }
593     config->sync();
594 }
595
596 void KdenliveSettingsDialog::slotAddTranscode()
597 {
598     QTreeWidgetItem *item = new QTreeWidgetItem(m_configTranscode.profiles_list, QStringList() << i18n("Name") << i18n("Parameters"));
599     item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable);
600     m_configTranscode.profiles_list->setCurrentItem(item);
601     m_configTranscode.profiles_list->editItem(item);
602     slotDialogModified();
603 }
604
605 void KdenliveSettingsDialog::slotDeleteTranscode()
606 {
607     QTreeWidgetItem *item = m_configTranscode.profiles_list->currentItem();
608     if (item == NULL) return;
609     delete item;
610     slotDialogModified();
611 }
612
613 void KdenliveSettingsDialog::slotDialogModified()
614 {
615     m_modified = true;
616 #if KDE_IS_VERSION(4,3,0)
617     KConfigDialog::updateButtons();
618 #endif
619 }
620
621 //virtual
622 bool KdenliveSettingsDialog::hasChanged()
623 {
624     if (m_modified) return true;
625     return KConfigDialog::hasChanged();
626 }
627
628
629
630 #include "kdenlivesettingsdialog.moc"
631
632