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