]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.cpp
Merge branch 'next' into audioAlign
[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 #ifdef USE_V4L
23 #include "v4l/v4lcapture.h"
24 #endif
25 #ifdef USE_BLACKMAGIC
26 #include "blackmagic/devices.h"
27 #endif
28 #include "encodingprofilesdialog.h"
29 #include "kdenlivesettings.h"
30
31 #include <KStandardDirs>
32 #include <KDebug>
33 #include <kopenwithdialog.h>
34 #include <KConfigDialogManager>
35 #include <kde_file.h>
36 #include <KIO/NetAccess>
37 #include <kdeversion.h>
38 #include <KMessageBox>
39
40 #include <QDir>
41 #include <QTimer>
42 #include <QTreeWidgetItem>
43 #include <QThread>
44
45 #include <stdlib.h>
46 #include <stdio.h>
47 #include <unistd.h>
48 #include <fcntl.h>
49 #ifdef USE_JOGSHUTTLE
50 #include "jogaction.h"
51 #include "jogshuttleconfig.h"
52 #include <linux/input.h>
53 #endif
54
55
56 KdenliveSettingsDialog::KdenliveSettingsDialog(const QMap<QString, QString>& mappable_actions, QWidget * parent) :
57     KConfigDialog(parent, "settings", KdenliveSettings::self()),
58     m_modified(false),
59     m_shuttleModified(false),
60     m_mappable_actions(mappable_actions)
61 {
62     KdenliveSettings::setV4l_format(0);
63     QWidget *p1 = new QWidget;
64     m_configMisc.setupUi(p1);
65     m_page1 = addPage(p1, i18n("Misc"), "configure");
66
67     // Hide multi tab option until Kdenlive really supports it
68     m_configMisc.kcfg_activatetabs->setVisible(false);
69     // Hide avformat-novalidate trick, causes crash (bug #2205 and #2206)
70     m_configMisc.kcfg_projectloading_avformatnovalidate->setVisible(false);
71
72     QWidget *p8 = new QWidget;
73     m_configProject.setupUi(p8);
74     m_page8 = addPage(p8, i18n("Project Defaults"), "document-new");
75     connect(m_configProject.kcfg_generateproxy, SIGNAL(toggled(bool)), m_configProject.kcfg_proxyminsize, SLOT(setEnabled(bool)));
76     m_configProject.kcfg_proxyminsize->setEnabled(KdenliveSettings::generateproxy());
77     connect(m_configProject.kcfg_generateimageproxy, SIGNAL(toggled(bool)), m_configProject.kcfg_proxyimageminsize, SLOT(setEnabled(bool)));
78     m_configProject.kcfg_proxyimageminsize->setEnabled(KdenliveSettings::generateimageproxy());
79
80     QWidget *p3 = new QWidget;
81     m_configTimeline.setupUi(p3);
82     m_page3 = addPage(p3, i18n("Timeline"), "video-display");
83
84     QWidget *p2 = new QWidget;
85     m_configEnv.setupUi(p2);
86     m_configEnv.mltpathurl->setMode(KFile::Directory);
87     m_configEnv.mltpathurl->lineEdit()->setObjectName("kcfg_mltpath");
88     m_configEnv.rendererpathurl->lineEdit()->setObjectName("kcfg_rendererpath");
89     m_configEnv.kcfg_mltthreads->setMaximum( QThread::idealThreadCount() < 4 ? QThread::idealThreadCount() : 3 );
90     m_configEnv.tmppathurl->setMode(KFile::Directory);
91     m_configEnv.tmppathurl->lineEdit()->setObjectName("kcfg_currenttmpfolder");
92     m_configEnv.projecturl->setMode(KFile::Directory);
93     m_configEnv.projecturl->lineEdit()->setObjectName("kcfg_defaultprojectfolder");
94     m_configEnv.capturefolderurl->setMode(KFile::Directory);
95     m_configEnv.capturefolderurl->lineEdit()->setObjectName("kcfg_capturefolder");
96     m_configEnv.capturefolderurl->setEnabled(!KdenliveSettings::capturetoprojectfolder());
97     connect(m_configEnv.kcfg_capturetoprojectfolder, SIGNAL(clicked()), this, SLOT(slotEnableCaptureFolder()));
98     m_page2 = addPage(p2, i18n("Environment"), "application-x-executable-script");
99
100     QWidget *p4 = new QWidget;
101     m_configCapture.setupUi(p4);
102
103 #ifdef USE_V4L
104
105     // Video 4 Linux device detection
106     for (int i = 0; i < 10; i++) {
107         QString path = "/dev/video" + QString::number(i);
108         if (QFile::exists(path)) {
109             QStringList deviceInfo = V4lCaptureHandler::getDeviceName(path.toUtf8().constData());
110             if (!deviceInfo.isEmpty()) {
111                 m_configCapture.kcfg_detectedv4ldevices->addItem(deviceInfo.at(0), path);
112                 m_configCapture.kcfg_detectedv4ldevices->setItemData(m_configCapture.kcfg_detectedv4ldevices->count() - 1, deviceInfo.at(1), Qt::UserRole + 1);
113             }
114         }
115     }
116     connect(m_configCapture.kcfg_detectedv4ldevices, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdatev4lDevice()));
117     connect(m_configCapture.kcfg_v4l_format, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdatev4lCaptureProfile()));
118     connect(m_configCapture.config_v4l, SIGNAL(clicked()), this, SLOT(slotEditVideo4LinuxProfile()));
119
120     slotUpdatev4lDevice();
121 #endif
122
123     m_page4 = addPage(p4, i18n("Capture"), "media-record");
124     m_configCapture.tabWidget->setCurrentIndex(KdenliveSettings::defaultcapture());
125 #ifdef Q_WS_MAC
126     m_configCapture.tabWidget->setEnabled(false);
127     m_configCapture.kcfg_defaultcapture->setEnabled(false);
128     m_configCapture.label->setText(i18n("Capture is not yet available on Mac OS X."));
129 #endif
130
131     QWidget *p5 = new QWidget;
132     m_configShuttle.setupUi(p5);
133 #ifdef USE_JOGSHUTTLE
134     connect(m_configShuttle.kcfg_enableshuttle, SIGNAL(stateChanged(int)), this, SLOT(slotCheckShuttle(int)));
135     connect(m_configShuttle.shuttledevicelist, SIGNAL(activated(int)), this, SLOT(slotUpdateShuttleDevice(int)));
136     slotCheckShuttle(KdenliveSettings::enableshuttle());
137     m_configShuttle.shuttledisabled->hide();
138
139     // Store the button pointers into an array for easier handling them in the other functions.
140     m_shuttle_buttons.push_back(m_configShuttle.shuttle1);
141     m_shuttle_buttons.push_back(m_configShuttle.shuttle2);
142     m_shuttle_buttons.push_back(m_configShuttle.shuttle3);
143     m_shuttle_buttons.push_back(m_configShuttle.shuttle4);
144     m_shuttle_buttons.push_back(m_configShuttle.shuttle5);
145
146     // populate the buttons with the current configuration. The items are sorted
147     // according to the user-selected language, so they do not appear in random order.
148     QList<QString> action_names = mappable_actions.keys();
149     qSort(action_names);
150
151     // Here we need to compute the action_id -> index-in-action_names. We iterate over the
152     // action_names, as the sorting may depend on the user-language.
153     QStringList actions_map = JogShuttleConfig::actionMap(KdenliveSettings::shuttlebuttons());
154     QMap<QString, int> action_pos;
155     foreach (const QString& action_id, actions_map) {
156       // This loop find out at what index is the string that would map to the action_id.
157       for (int i = 0; i < action_names.size(); i++) {
158           if (mappable_actions[action_names[i]] == action_id) {
159               action_pos[action_id] = i;
160               break;
161           }
162       }
163     }
164
165     int i = 0;
166     foreach (KComboBox* button, m_shuttle_buttons) {
167       button->addItems(action_names);
168       connect(button, SIGNAL(activated(int)), this, SLOT(slotShuttleModified()));
169       ++i;
170       if (i < actions_map.size())
171         button->setCurrentIndex(action_pos[actions_map[i]]);
172     }
173 #else /* ! USE_JOGSHUTTLE */
174     m_configShuttle.kcfg_enableshuttle->hide();
175     m_configShuttle.kcfg_enableshuttle->setDisabled(true);
176 #endif /* USE_JOGSHUTTLE */
177     m_page5 = addPage(p5, i18n("JogShuttle"), "input-mouse");
178
179     QWidget *p6 = new QWidget;
180     m_configSdl.setupUi(p6);
181
182 #ifndef USE_OPENGL
183     m_configSdl.kcfg_openglmonitors->setHidden(true);
184 #endif
185
186     m_page6 = addPage(p6, i18n("Playback"), "media-playback-start");
187
188     QWidget *p7 = new QWidget;
189     m_configTranscode.setupUi(p7);
190     m_page7 = addPage(p7, i18n("Transcode"), "edit-copy");
191     connect(m_configTranscode.button_add, SIGNAL(clicked()), this, SLOT(slotAddTranscode()));
192     connect(m_configTranscode.button_delete, SIGNAL(clicked()), this, SLOT(slotDeleteTranscode()));
193     connect(m_configTranscode.profiles_list, SIGNAL(itemChanged(QListWidgetItem *)), this, SLOT(slotDialogModified()));
194     connect(m_configTranscode.profiles_list, SIGNAL(currentRowChanged(int)), this, SLOT(slotSetTranscodeProfile()));
195     
196     connect(m_configTranscode.profile_name, SIGNAL(textChanged(const QString &)), this, SLOT(slotEnableTranscodeUpdate()));
197     connect(m_configTranscode.profile_description, SIGNAL(textChanged(const QString &)), this, SLOT(slotEnableTranscodeUpdate()));
198     connect(m_configTranscode.profile_extension, SIGNAL(textChanged(const QString &)), this, SLOT(slotEnableTranscodeUpdate()));
199     connect(m_configTranscode.profile_parameters, SIGNAL(textChanged()), this, SLOT(slotEnableTranscodeUpdate()));
200     connect(m_configTranscode.profile_audioonly, SIGNAL(stateChanged(int)), this, SLOT(slotEnableTranscodeUpdate()));
201     
202     connect(m_configTranscode.button_update, SIGNAL(pressed()), this, SLOT(slotUpdateTranscodingProfile()));
203     
204     m_configTranscode.profile_parameters->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 5);
205
206     connect(m_configCapture.kcfg_rmd_capture_audio, SIGNAL(clicked(bool)), m_configCapture.audio_group, SLOT(setVisible(bool)));
207
208     m_configCapture.audio_group->setVisible(KdenliveSettings::rmd_capture_audio());
209
210     connect(m_configEnv.kp_image, SIGNAL(clicked()), this, SLOT(slotEditImageApplication()));
211     connect(m_configEnv.kp_audio, SIGNAL(clicked()), this, SLOT(slotEditAudioApplication()));
212     connect(m_configEnv.kp_player, SIGNAL(clicked()), this, SLOT(slotEditVideoApplication()));
213
214     loadEncodingProfiles();
215     checkProfile();
216
217     slotUpdateDisplay();
218
219     connect(m_configSdl.kcfg_audio_driver, SIGNAL(currentIndexChanged(int)), this, SLOT(slotCheckAlsaDriver()));
220     initDevices();
221     connect(m_configProject.kcfg_profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
222     connect(m_configCapture.kcfg_rmd_capture_type, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateRmdRegionStatus()));
223
224     slotUpdateRmdRegionStatus();
225     loadTranscodeProfiles();
226
227
228     //HACK: check dvgrab version, because only dvgrab >= 3.3 supports
229     //   --timestamp option without bug
230
231     if (KdenliveSettings::dvgrab_path().isEmpty() || !QFile::exists(KdenliveSettings::dvgrab_path())) {
232         QString dvgrabpath = KStandardDirs::findExe("dvgrab");
233         KdenliveSettings::setDvgrab_path(dvgrabpath);
234     }
235
236     // decklink profile
237     m_configCapture.decklink_showprofileinfo->setIcon(KIcon("help-about"));
238     m_configCapture.decklink_manageprofile->setIcon(KIcon("configure"));
239     m_configCapture.decklink_parameters->setVisible(false);
240     m_configCapture.decklink_parameters->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 4);
241     m_configCapture.decklink_parameters->setPlainText(KdenliveSettings::decklink_parameters());
242     connect(m_configCapture.decklink_manageprofile, SIGNAL(clicked(bool)), this, SLOT(slotManageEncodingProfile()));
243     connect(m_configCapture.kcfg_decklink_profile, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDecklinkProfile()));
244     connect(m_configCapture.decklink_showprofileinfo, SIGNAL(clicked(bool)), m_configCapture.decklink_parameters, SLOT(setVisible(bool)));
245
246     // v4l profile
247     m_configCapture.v4l_showprofileinfo->setIcon(KIcon("help-about"));
248     m_configCapture.v4l_manageprofile->setIcon(KIcon("configure"));
249     m_configCapture.v4l_parameters->setVisible(false);
250     m_configCapture.v4l_parameters->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 4);
251     m_configCapture.v4l_parameters->setPlainText(KdenliveSettings::v4l_parameters());
252     connect(m_configCapture.v4l_manageprofile, SIGNAL(clicked(bool)), this, SLOT(slotManageEncodingProfile()));
253     connect(m_configCapture.kcfg_v4l_profile, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateV4lProfile()));
254     connect(m_configCapture.v4l_showprofileinfo, SIGNAL(clicked(bool)), m_configCapture.v4l_parameters, SLOT(setVisible(bool)));
255
256     // proxy profile stuff
257     m_configProject.proxy_showprofileinfo->setIcon(KIcon("help-about"));
258     m_configProject.proxy_manageprofile->setIcon(KIcon("configure"));
259     m_configProject.proxyparams->setVisible(false);
260     m_configProject.proxyparams->setMaximumHeight(QFontMetrics(font()).lineSpacing() * 4);
261     m_configProject.proxyparams->setPlainText(KdenliveSettings::proxyparams());
262     connect(m_configProject.proxy_manageprofile, SIGNAL(clicked(bool)), this, SLOT(slotManageEncodingProfile()));
263     connect(m_configProject.proxy_showprofileinfo, SIGNAL(clicked(bool)), m_configProject.proxyparams, SLOT(setVisible(bool)));
264     connect(m_configProject.kcfg_proxy_profile, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateProxyProfile()));
265
266
267     slotUpdateProxyProfile(-1);
268     slotUpdateV4lProfile(-1);
269     slotUpdateDecklinkProfile(-1);
270
271 #ifdef USE_BLACKMAGIC
272     BMInterface::getBlackMagicDeviceList(m_configCapture.kcfg_decklink_capturedevice);
273     if (m_configCapture.kcfg_decklink_capturedevice->count() > 0) {
274         QStringList modes = m_configCapture.kcfg_decklink_capturedevice->itemData(m_configCapture.kcfg_decklink_capturedevice->currentIndex()).toStringList();
275         m_configCapture.kcfg_decklink_capturedevice->setToolTip(i18n("Supported capture modes:\n") + modes.join("\n"));
276     }
277     connect(m_configCapture.kcfg_decklink_capturedevice, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateHDMIModes()));
278
279     if (BMInterface::getBlackMagicOutputDeviceList(m_configSdl.kcfg_blackmagic_output_device)) {
280         // Found blackmagic card
281     } else m_configSdl.kcfg_external_display->setEnabled(false);
282 #endif
283
284     double dvgrabVersion = 0;
285     if (!KdenliveSettings::dvgrab_path().isEmpty()) {
286         QProcess *versionCheck = new QProcess;
287         versionCheck->setProcessChannelMode(QProcess::MergedChannels);
288         versionCheck->start("dvgrab", QStringList() << "--version");
289         if (versionCheck->waitForFinished()) {
290             QString version = QString(versionCheck->readAll()).simplified();
291             if (version.contains(' ')) version = version.section(' ', -1);
292             dvgrabVersion = version.toDouble();
293
294             kDebug() << "// FOUND DVGRAB VERSION: " << dvgrabVersion;
295         }
296         delete versionCheck;
297         if (dvgrabVersion < 3.3) {
298             KdenliveSettings::setFirewiretimestamp(false);
299             m_configCapture.kcfg_firewiretimestamp->setEnabled(false);
300         }
301         m_configCapture.dvgrab_info->setText(i18n("dvgrab version %1 at %2", dvgrabVersion, KdenliveSettings::dvgrab_path()));
302     } else m_configCapture.dvgrab_info->setText(i18n("<strong><em>dvgrab</em> utility not found, please install it for firewire capture</strong>"));
303
304     if (KdenliveSettings::rmd_path().isEmpty() || !QFile::exists(KdenliveSettings::rmd_path())) {
305         QString rmdpath = KStandardDirs::findExe("recordmydesktop");
306         KdenliveSettings::setRmd_path(rmdpath);
307     }
308     if (KdenliveSettings::rmd_path().isEmpty())
309         m_configCapture.rmd_info->setText(i18n("<strong><em>Recordmydesktop</em> utility not found, please install it for screen grabs</strong>"));
310     else
311         m_configCapture.rmd_info->setText(i18n("Recordmydesktop found at: %1", KdenliveSettings::rmd_path()));
312 }
313
314 KdenliveSettingsDialog::~KdenliveSettingsDialog() {}
315
316 void KdenliveSettingsDialog::slotUpdateHDMIModes()
317 {
318     QStringList modes = m_configCapture.kcfg_decklink_capturedevice->itemData(m_configCapture.kcfg_decklink_capturedevice->currentIndex()).toStringList();
319     m_configCapture.kcfg_decklink_capturedevice->setToolTip(i18n("Supported capture modes:\n") + modes.join("\n"));
320 }
321
322 void KdenliveSettingsDialog::slotUpdateRmdRegionStatus()
323 {
324     m_configCapture.region_group->setHidden(m_configCapture.kcfg_rmd_capture_type->currentIndex() != 1);
325 }
326
327 void KdenliveSettingsDialog::slotEnableCaptureFolder()
328 {
329     m_configEnv.capturefolderurl->setEnabled(!m_configEnv.kcfg_capturetoprojectfolder->isChecked());
330 }
331
332 void KdenliveSettingsDialog::checkProfile()
333 {
334     m_configProject.kcfg_profiles_list->clear();
335     QMap <QString, QString> profilesInfo = ProfilesDialog::getProfilesInfo();
336     QMapIterator<QString, QString> i(profilesInfo);
337     while (i.hasNext()) {
338         i.next();
339         m_configProject.kcfg_profiles_list->addItem(i.key(), i.value());
340     }
341
342     if (!KdenliveSettings::default_profile().isEmpty()) {
343         for (int i = 0; i < m_configProject.kcfg_profiles_list->count(); i++) {
344             if (m_configProject.kcfg_profiles_list->itemData(i).toString() == KdenliveSettings::default_profile()) {
345                 m_configProject.kcfg_profiles_list->setCurrentIndex(i);
346                 KdenliveSettings::setProfiles_list(i);
347                 break;
348             }
349         }
350     }
351 }
352
353 void KdenliveSettingsDialog::initDevices()
354 {
355     // Fill audio drivers
356     m_configSdl.kcfg_audio_driver->addItem(i18n("Automatic"), QString());
357 #ifndef Q_WS_MAC
358     m_configSdl.kcfg_audio_driver->addItem(i18n("OSS"), "dsp");
359     m_configSdl.kcfg_audio_driver->addItem(i18n("ALSA"), "alsa");
360     m_configSdl.kcfg_audio_driver->addItem(i18n("PulseAudio"), "pulse");
361     m_configSdl.kcfg_audio_driver->addItem(i18n("OSS with DMA access"), "dma");
362     m_configSdl.kcfg_audio_driver->addItem(i18n("Esound daemon"), "esd");
363     m_configSdl.kcfg_audio_driver->addItem(i18n("ARTS daemon"), "artsc");
364 #endif
365
366     if (!KdenliveSettings::audiodrivername().isEmpty())
367         for (int i = 1; i < m_configSdl.kcfg_audio_driver->count(); i++) {
368             if (m_configSdl.kcfg_audio_driver->itemData(i).toString() == KdenliveSettings::audiodrivername()) {
369                 m_configSdl.kcfg_audio_driver->setCurrentIndex(i);
370                 KdenliveSettings::setAudio_driver((uint) i);
371             }
372         }
373
374     // Fill video drivers
375     m_configSdl.kcfg_video_driver->addItem(i18n("Automatic"), QString());
376 #ifndef Q_WS_MAC
377     m_configSdl.kcfg_video_driver->addItem(i18n("XVideo"), "x11");
378     m_configSdl.kcfg_video_driver->addItem(i18n("X11"), "x11_noaccel");
379     m_configSdl.kcfg_video_driver->addItem(i18n("XFree86 DGA 2.0"), "dga");
380     m_configSdl.kcfg_video_driver->addItem(i18n("Nano X"), "nanox");
381     m_configSdl.kcfg_video_driver->addItem(i18n("Framebuffer console"), "fbcon");
382     m_configSdl.kcfg_video_driver->addItem(i18n("Direct FB"), "directfb");
383     m_configSdl.kcfg_video_driver->addItem(i18n("SVGAlib"), "svgalib");
384     m_configSdl.kcfg_video_driver->addItem(i18n("General graphics interface"), "ggi");
385     m_configSdl.kcfg_video_driver->addItem(i18n("Ascii art library"), "aalib");
386 #endif
387
388     // Fill the list of audio playback devices
389     m_configSdl.kcfg_audio_device->addItem(i18n("Default"), QString());
390     m_configCapture.kcfg_rmd_alsa_device->addItem(i18n("Default"), QString());
391     if (!KStandardDirs::findExe("aplay").isEmpty()) {
392         m_readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
393         m_readProcess.setProgram("aplay", QStringList() << "-l");
394         connect(&m_readProcess, SIGNAL(readyReadStandardOutput()) , this, SLOT(slotReadAudioDevices()));
395         m_readProcess.execute(5000);
396     } else {
397         // If aplay is not installed on the system, parse the /proc/asound/pcm file
398         QFile file("/proc/asound/pcm");
399         if (file.open(QIODevice::ReadOnly)) {
400             QTextStream stream(&file);
401             QString line;
402             QString deviceId;
403             while (!stream.atEnd()) {
404                 line = stream.readLine();
405                 if (line.contains("playback")) {
406                     deviceId = line.section(':', 0, 0);
407                     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()));
408                 }
409                 if (line.contains("capture")) {
410                     deviceId = line.section(':', 0, 0);
411                     m_configCapture.kcfg_rmd_alsa_device->addItem(line.section(':', 1, 1).simplified(), "plughw:" + QString::number(deviceId.section('-', 0, 0).toInt()) + ',' + QString::number(deviceId.section('-', 1, 1).toInt()));
412                     m_configCapture.kcfg_v4l_alsadevice->addItem(line.section(':', 1, 1).simplified(), "hw:" + QString::number(deviceId.section('-', 0, 0).toInt()) + ',' + QString::number(deviceId.section('-', 1, 1).toInt()));
413                 }
414             }
415             file.close();
416         }
417     }
418     
419     // Add pulseaudio capture option
420     m_configCapture.kcfg_v4l_alsadevice->addItem(i18n("PulseAudio"), "pulse");
421     
422     if (!KdenliveSettings::audiodevicename().isEmpty()) {
423         // Select correct alsa device
424         int ix = m_configSdl.kcfg_audio_device->findData(KdenliveSettings::audiodevicename());
425         m_configSdl.kcfg_audio_device->setCurrentIndex(ix);
426         KdenliveSettings::setAudio_device(ix);
427     }
428
429     if (!KdenliveSettings::rmd_alsadevicename().isEmpty()) {
430         // Select correct alsa device
431         int ix = m_configCapture.kcfg_rmd_alsa_device->findData(KdenliveSettings::rmd_alsadevicename());
432         m_configCapture.kcfg_rmd_alsa_device->setCurrentIndex(ix);
433         KdenliveSettings::setRmd_alsa_device(ix);
434     }
435
436     if (!KdenliveSettings::v4l_alsadevicename().isEmpty()) {
437         // Select correct alsa device
438         int ix = m_configCapture.kcfg_v4l_alsadevice->findData(KdenliveSettings::v4l_alsadevicename());
439         m_configCapture.kcfg_v4l_alsadevice->setCurrentIndex(ix);
440         KdenliveSettings::setV4l_alsadevice(ix);
441     }
442
443     loadCurrentV4lProfileInfo();
444 }
445
446
447 void KdenliveSettingsDialog::slotReadAudioDevices()
448 {
449     QString result = QString(m_readProcess.readAllStandardOutput());
450     kDebug() << "// / / / / / READING APLAY: ";
451     kDebug() << result;
452     QStringList lines = result.split('\n');
453     foreach(const QString & data, lines) {
454         //kDebug() << "// READING LINE: " << data;
455         if (!data.startsWith(" ") && data.count(':') > 1) {
456             QString card = data.section(':', 0, 0).section(' ', -1);
457             QString device = data.section(':', 1, 1).section(' ', -1);
458             m_configSdl.kcfg_audio_device->addItem(data.section(':', -1).simplified(), "plughw:" + card + ',' + device);
459             m_configCapture.kcfg_rmd_alsa_device->addItem(data.section(':', -1).simplified(), "plughw:" + card + ',' + device);
460             m_configCapture.kcfg_v4l_alsadevice->addItem(data.section(':', -1).simplified(), "hw:" + card + ',' + device);
461         }
462     }
463 }
464
465 void KdenliveSettingsDialog::showPage(int page, int option)
466 {
467     switch (page) {
468     case 1:
469         setCurrentPage(m_page1);
470         break;
471     case 2:
472         setCurrentPage(m_page2);
473         break;
474     case 3:
475         setCurrentPage(m_page3);
476         break;
477     case 4:
478         setCurrentPage(m_page4);
479         m_configCapture.tabWidget->setCurrentIndex(option);
480         break;
481     case 5:
482         setCurrentPage(m_page5);
483         break;
484     case 6:
485         setCurrentPage(m_page6);
486         break;
487     case 7:
488         setCurrentPage(m_page7);
489         break;
490     default:
491         setCurrentPage(m_page1);
492     }
493 }
494
495 void KdenliveSettingsDialog::slotEditVideoApplication()
496 {
497     KService::Ptr service;
498     KOpenWithDialog dlg(KUrl::List(), i18n("Select default video player"), m_configEnv.kcfg_defaultplayerapp->text(), this);
499     if (dlg.exec() != QDialog::Accepted)
500         return;
501
502     service = dlg.service();
503     m_configEnv.kcfg_defaultplayerapp->setText(service->exec());
504 }
505
506 void KdenliveSettingsDialog::slotEditAudioApplication()
507 {
508     KService::Ptr service;
509     KOpenWithDialog dlg(KUrl::List(), i18n("Select default audio editor"), m_configEnv.kcfg_defaultaudioapp->text(), this);
510     if (dlg.exec() != QDialog::Accepted)
511         return;
512
513     service = dlg.service();
514     m_configEnv.kcfg_defaultaudioapp->setText(service->exec());
515 }
516
517 void KdenliveSettingsDialog::slotEditImageApplication()
518 {
519     KService::Ptr service;
520     KOpenWithDialog dlg(KUrl::List(), i18n("Select default image editor"), m_configEnv.kcfg_defaultimageapp->text(), this);
521     if (dlg.exec() != QDialog::Accepted)
522         return;
523
524     service = dlg.service();
525     m_configEnv.kcfg_defaultimageapp->setText(service->exec());
526 }
527
528 #ifdef USE_JOGSHUTTLE
529 void KdenliveSettingsDialog::slotCheckShuttle(int state)
530 {
531     m_configShuttle.config_group->setEnabled(state);
532     if (m_configShuttle.shuttledevicelist->count() == 0) {
533         // parse devices
534         QString baseName = "/dev/input/event";
535         int fd;
536         for (int i = 0; i < 30; i++) {
537             QString filename = baseName + QString::number(i);
538             kDebug() << "/// CHECKING OFR: " << filename;
539
540             char name[256] = "unknown";
541             fd = KDE_open((char *) filename.toUtf8().data(), O_RDONLY);
542             if (fd >= 0 && ioctl(fd, EVIOCGNAME(sizeof(name)), name) >= 0) {
543                 m_configShuttle.shuttledevicelist->addItem(name, filename);
544             }
545             ::close(fd);
546         }
547         if (KdenliveSettings::shuttledevice().isEmpty()) QTimer::singleShot(1500, this, SLOT(slotUpdateShuttleDevice()));
548     }
549 }
550
551 void KdenliveSettingsDialog::slotUpdateShuttleDevice(int ix)
552 {
553     QString device = m_configShuttle.shuttledevicelist->itemData(ix).toString();
554     //KdenliveSettings::setShuttledevice(device);
555     m_configShuttle.kcfg_shuttledevice->setText(device);
556 }
557
558 #endif /* USE_JOGSHUTTLE */
559
560 void KdenliveSettingsDialog::updateWidgets()
561 {
562     // Revert widgets to last saved state (for example when user pressed "Cancel")
563     // kDebug() << "// // // KCONFIG Revert called";
564 #ifdef USE_JOGSHUTTLE
565     // revert jog shuttle device
566     if (m_configShuttle.shuttledevicelist->count() > 0) {
567         for (int i = 0; i < m_configShuttle.shuttledevicelist->count(); i++) {
568             if (m_configShuttle.shuttledevicelist->itemData(i) == KdenliveSettings::shuttledevice()) {
569                 m_configShuttle.shuttledevicelist->setCurrentIndex(i);
570                 break;
571             }
572         }
573     }
574
575     // Revert jog shuttle buttons
576     QList<QString> action_names = m_mappable_actions.keys();
577     qSort(action_names);
578     QStringList actions_map = JogShuttleConfig::actionMap(KdenliveSettings::shuttlebuttons());
579     QMap<QString, int> action_pos;
580     foreach (const QString& action_id, actions_map) {
581       // This loop find out at what index is the string that would map to the action_id.
582       for (int i = 0; i < action_names.size(); i++) {
583           if (m_mappable_actions[action_names[i]] == action_id) {
584               action_pos[action_id] = i;
585               break;
586           }
587       }
588     }
589     int i = 0;
590     foreach (KComboBox* button, m_shuttle_buttons) {
591       ++i;
592       if (i < actions_map.size())
593         button->setCurrentIndex(action_pos[actions_map[i]]);
594     }
595 #endif /* USE_JOGSHUTTLE */
596 }
597
598 void KdenliveSettingsDialog::updateSettings()
599 {
600     // Save changes to settings (for example when user pressed "Apply" or "Ok")
601     // kDebug() << "// // // KCONFIG UPDATE called";
602     m_defaultProfile = m_configProject.kcfg_profiles_list->currentText();
603     KdenliveSettings::setDefault_profile(m_defaultPath);
604
605     bool resetProfile = false;
606     bool updateCapturePath = false;
607
608     /*if (m_configShuttle.shuttledevicelist->count() > 0) {
609         QString device = m_configShuttle.shuttledevicelist->itemData(m_configShuttle.shuttledevicelist->currentIndex()).toString();
610         if (device != KdenliveSettings::shuttledevice()) KdenliveSettings::setShuttledevice(device);
611     }*/
612
613     if (m_configEnv.kcfg_capturetoprojectfolder->isChecked() != KdenliveSettings::capturetoprojectfolder()) {
614         KdenliveSettings::setCapturetoprojectfolder(m_configEnv.kcfg_capturetoprojectfolder->isChecked());
615         updateCapturePath = true;
616     }
617
618     if (m_configEnv.capturefolderurl->url().path() != KdenliveSettings::capturefolder()) {
619         KdenliveSettings::setCapturefolder(m_configEnv.capturefolderurl->url().path());
620         updateCapturePath = true;
621     }
622
623     if (m_configCapture.kcfg_dvgrabfilename->text() != KdenliveSettings::dvgrabfilename()) {
624         KdenliveSettings::setDvgrabfilename(m_configCapture.kcfg_dvgrabfilename->text());
625         updateCapturePath = true;
626     }
627
628     if ((uint) m_configCapture.kcfg_firewireformat->currentIndex() != KdenliveSettings::firewireformat()) {
629         KdenliveSettings::setFirewireformat(m_configCapture.kcfg_firewireformat->currentIndex());
630         updateCapturePath = true;
631     }
632
633     if ((uint) m_configCapture.kcfg_v4l_format->currentIndex() != KdenliveSettings::v4l_format()) {
634         saveCurrentV4lProfile();
635         KdenliveSettings::setV4l_format(0);
636     }
637
638     // Check encoding profiles
639     QString data = m_configCapture.kcfg_v4l_profile->itemData(m_configCapture.kcfg_v4l_profile->currentIndex()).toString();
640     if (!data.isEmpty() && (data.section(";", 0, 0) != KdenliveSettings::v4l_parameters() || data.section(";", 1, 1) != KdenliveSettings::v4l_extension())) {
641         KdenliveSettings::setV4l_parameters(data.section(";", 0, 0));
642         KdenliveSettings::setV4l_extension(data.section(";", 1, 1));
643     }
644     data = m_configCapture.kcfg_decklink_profile->itemData(m_configCapture.kcfg_decklink_profile->currentIndex()).toString();
645     if (!data.isEmpty() && (data.section(";", 0, 0) != KdenliveSettings::decklink_parameters() || data.section(";", 1, 1) != KdenliveSettings::decklink_extension())) {
646         KdenliveSettings::setDecklink_parameters(data.section(";", 0, 0));
647         KdenliveSettings::setDecklink_extension(data.section(";", 1, 1));
648     }
649     data = m_configProject.kcfg_proxy_profile->itemData(m_configProject.kcfg_proxy_profile->currentIndex()).toString();
650     if (!data.isEmpty() && (data.section(";", 0, 0) != KdenliveSettings::proxyparams() || data.section(";", 1, 1) != KdenliveSettings::proxyextension())) {
651         KdenliveSettings::setProxyparams(data.section(";", 0, 0));
652         KdenliveSettings::setProxyextension(data.section(";", 1, 1));
653     }
654
655
656     if (updateCapturePath) emit updateCaptureFolder();
657
658     QString value = m_configCapture.kcfg_rmd_alsa_device->itemData(m_configCapture.kcfg_rmd_alsa_device->currentIndex()).toString();
659     if (value != KdenliveSettings::rmd_alsadevicename()) {
660         KdenliveSettings::setRmd_alsadevicename(value);
661     }
662
663     value = m_configCapture.kcfg_v4l_alsadevice->itemData(m_configCapture.kcfg_v4l_alsadevice->currentIndex()).toString();
664     if (value != KdenliveSettings::v4l_alsadevicename()) {
665         KdenliveSettings::setV4l_alsadevicename(value);
666     }
667
668     value = m_configCapture.kcfg_rmd_audio_freq->itemText(m_configCapture.kcfg_rmd_audio_freq->currentIndex());
669     kDebug() << "// AUDIO FREQ VALUE: " << value << ", CURRENT: " << KdenliveSettings::rmd_freq() << ", IX: " << m_configCapture.kcfg_rmd_audio_freq->currentIndex();
670     if (value != KdenliveSettings::rmd_freq()) {
671         kDebug() << "// SETTING AUDIO FREQ TO: " << value;
672         KdenliveSettings::setRmd_freq(value);
673     }
674
675     if (m_configSdl.kcfg_external_display->isChecked() != KdenliveSettings::external_display()) {
676         KdenliveSettings::setExternal_display(m_configSdl.kcfg_external_display->isChecked());
677         resetProfile = true;
678     }
679
680     value = m_configSdl.kcfg_audio_driver->itemData(m_configSdl.kcfg_audio_driver->currentIndex()).toString();
681     if (value != KdenliveSettings::audiodrivername()) {
682         KdenliveSettings::setAudiodrivername(value);
683         resetProfile = true;
684     }
685
686     if (value == "alsa") {
687         // Audio device setting is only valid for alsa driver
688         value = m_configSdl.kcfg_audio_device->itemData(m_configSdl.kcfg_audio_device->currentIndex()).toString();
689         if (value != KdenliveSettings::audiodevicename()) {
690             KdenliveSettings::setAudiodevicename(value);
691             resetProfile = true;
692         }
693     } else if (KdenliveSettings::audiodevicename().isEmpty() == false) {
694         KdenliveSettings::setAudiodevicename(QString::null);
695         resetProfile = true;
696     }
697
698     value = m_configSdl.kcfg_video_driver->itemData(m_configSdl.kcfg_video_driver->currentIndex()).toString();
699     if (value != KdenliveSettings::videodrivername()) {
700         KdenliveSettings::setVideodrivername(value);
701         resetProfile = true;
702     }
703
704     if (m_configSdl.kcfg_window_background->color() != KdenliveSettings::window_background()) {
705         KdenliveSettings::setWindow_background(m_configSdl.kcfg_window_background->color());
706         resetProfile = true;
707     }
708
709     if (m_configSdl.kcfg_volume->value() != KdenliveSettings::volume()) {
710         KdenliveSettings::setVolume(m_configSdl.kcfg_volume->value());
711         resetProfile = true;
712     }
713
714     if (m_modified) {
715         // The transcoding profiles were modified, save.
716         m_modified = false;
717         saveTranscodeProfiles();
718     }
719
720 #ifdef USE_JOGSHUTTLE
721     m_shuttleModified = false;
722
723     QStringList actions;
724     actions << "monitor_pause";  // the Job rest position action.
725     foreach (KComboBox* button, m_shuttle_buttons) {
726         actions << m_mappable_actions[button->currentText()];
727     }
728     QString maps = JogShuttleConfig::actionMap(actions);
729     //fprintf(stderr, "Shuttle config: %s\n", JogShuttleConfig::actionMap(actions).toAscii().constData());
730     if (KdenliveSettings::shuttlebuttons() != maps)
731         KdenliveSettings::setShuttlebuttons(maps);
732 #endif
733
734     KConfigDialog::settingsChangedSlot();
735     //KConfigDialog::updateSettings();
736     if (resetProfile) emit doResetProfile();
737 }
738
739 void KdenliveSettingsDialog::slotUpdateDisplay()
740 {
741     QString currentProfile = m_configProject.kcfg_profiles_list->itemData(m_configProject.kcfg_profiles_list->currentIndex()).toString();
742     QMap< QString, QString > values = ProfilesDialog::getSettingsFromFile(currentProfile);
743     m_configProject.p_size->setText(values.value("width") + 'x' + values.value("height"));
744     m_configProject.p_fps->setText(values.value("frame_rate_num") + '/' + values.value("frame_rate_den"));
745     m_configProject.p_aspect->setText(values.value("sample_aspect_num") + '/' + values.value("sample_aspect_den"));
746     m_configProject.p_display->setText(values.value("display_aspect_num") + '/' + values.value("display_aspect_den"));
747     if (values.value("progressive").toInt() == 0)
748         m_configProject.p_progressive->setText(i18n("Interlaced"));
749     else
750         m_configProject.p_progressive->setText(i18n("Progressive"));
751     m_defaultProfile = m_configProject.kcfg_profiles_list->itemText(m_configProject.kcfg_profiles_list->currentIndex());
752     m_defaultPath = currentProfile;
753 }
754
755 void KdenliveSettingsDialog::slotCheckAlsaDriver()
756 {
757     QString value = m_configSdl.kcfg_audio_driver->itemData(m_configSdl.kcfg_audio_driver->currentIndex()).toString();
758     m_configSdl.kcfg_audio_device->setEnabled(value == "alsa");
759 }
760
761 void KdenliveSettingsDialog::loadTranscodeProfiles()
762 {
763     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
764     KConfigGroup transConfig(config, "Transcoding");
765     // read the entries
766     m_configTranscode.profiles_list->blockSignals(true);
767     m_configTranscode.profiles_list->clear();
768     QMap< QString, QString > profiles = transConfig.entryMap();
769     QMapIterator<QString, QString> i(profiles);
770     while (i.hasNext()) {
771         i.next();
772         QListWidgetItem *item = new QListWidgetItem(i.key());
773         QString data = i.value();
774         if (data.contains(';')) item->setToolTip(data.section(';', 1, 1));
775         item->setData(Qt::UserRole, data);
776         m_configTranscode.profiles_list->addItem(item);
777         //item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable);
778     }
779     m_configTranscode.profiles_list->blockSignals(false);
780     m_configTranscode.profiles_list->setCurrentRow(0);
781 }
782
783 void KdenliveSettingsDialog::saveTranscodeProfiles()
784 {
785     KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc");
786     //KSharedConfigPtr config = KGlobal::config();
787     KConfigGroup transConfig(config, "Transcoding");
788     // read the entries
789     transConfig.deleteGroup();
790     int max = m_configTranscode.profiles_list->count();
791     for (int i = 0; i < max; i++) {
792         QListWidgetItem *item = m_configTranscode.profiles_list->item(i);
793         transConfig.writeEntry(item->text(), item->data(Qt::UserRole).toString());
794     }
795     config->sync();
796 }
797
798 void KdenliveSettingsDialog::slotAddTranscode()
799 {
800     if (!m_configTranscode.profiles_list->findItems(m_configTranscode.profile_name->text(), Qt::MatchExactly).isEmpty()) {
801         KMessageBox::sorry(this, i18n("A profile with that name already exists"));
802         return;
803     }
804     QListWidgetItem *item = new QListWidgetItem(m_configTranscode.profile_name->text());
805     QString data = m_configTranscode.profile_parameters->toPlainText();
806     data.append(" %1." + m_configTranscode.profile_extension->text());
807     data.append(";");
808     if (!m_configTranscode.profile_description->text().isEmpty()) 
809         data.append(m_configTranscode.profile_description->text());
810     if (m_configTranscode.profile_audioonly->isChecked()) data.append(";audio");
811     item->setData(Qt::UserRole, data);
812     m_configTranscode.profiles_list->addItem(item);
813     m_configTranscode.profiles_list->setCurrentItem(item);
814     slotDialogModified();
815 }
816
817 void KdenliveSettingsDialog::slotUpdateTranscodingProfile()
818 {
819     QListWidgetItem *item = m_configTranscode.profiles_list->currentItem();
820     if (!item) return;
821     m_configTranscode.button_update->setEnabled(false);
822     item->setText(m_configTranscode.profile_name->text());
823     QString data = m_configTranscode.profile_parameters->toPlainText();
824     data.append(" %1." + m_configTranscode.profile_extension->text());
825     data.append(";");
826     if (!m_configTranscode.profile_description->text().isEmpty())
827         data.append(m_configTranscode.profile_description->text());
828     if (m_configTranscode.profile_audioonly->isChecked()) data.append(";audio");
829     item->setData(Qt::UserRole, data);
830     slotDialogModified();
831 }
832
833 void KdenliveSettingsDialog::slotDeleteTranscode()
834 {
835     QListWidgetItem *item = m_configTranscode.profiles_list->currentItem();
836     if (item == NULL) return;
837     delete item;
838     slotDialogModified();
839 }
840
841 void KdenliveSettingsDialog::slotEnableTranscodeUpdate()
842 {
843     if (!m_configTranscode.profile_box->isEnabled()) return;
844     bool allow = true;
845     if (m_configTranscode.profile_name->text().isEmpty() || m_configTranscode.profile_extension->text().isEmpty()) allow = false;
846     m_configTranscode.button_update->setEnabled(allow);
847 }
848
849 void KdenliveSettingsDialog::slotSetTranscodeProfile()
850 {
851     m_configTranscode.profile_box->setEnabled(false);
852     m_configTranscode.button_update->setEnabled(false);
853     m_configTranscode.profile_name->clear();
854     m_configTranscode.profile_description->clear();
855     m_configTranscode.profile_extension->clear();
856     m_configTranscode.profile_parameters->clear();
857     m_configTranscode.profile_audioonly->setChecked(false);
858     QListWidgetItem *item = m_configTranscode.profiles_list->currentItem();
859     if (!item) {
860         return;
861     }
862     m_configTranscode.profile_name->setText(item->text());
863     QString data = item->data(Qt::UserRole).toString();
864     if (data.contains(';')) {
865         m_configTranscode.profile_description->setText(data.section(';', 1, 1));
866         if (data.section(';', 2, 2) == "audio") m_configTranscode.profile_audioonly->setChecked(true);
867         data = data.section(';', 0, 0).simplified();
868     }
869     m_configTranscode.profile_extension->setText(data.section('.', -1));
870     m_configTranscode.profile_parameters->setPlainText(data.section(' ', 0, -2));
871     m_configTranscode.profile_box->setEnabled(true);
872 }
873
874 void KdenliveSettingsDialog::slotShuttleModified()
875 {
876 #ifdef USE_JOGSHUTTLE
877     QStringList actions;
878     actions << "monitor_pause";  // the Job rest position action.
879     foreach (KComboBox* button, m_shuttle_buttons) {
880         actions << m_mappable_actions[button->currentText()];
881     }
882     QString maps = JogShuttleConfig::actionMap(actions);
883     m_shuttleModified = KdenliveSettings::shuttlebuttons() != maps;
884 #endif
885     KConfigDialog::updateButtons();
886 }
887
888 void KdenliveSettingsDialog::slotDialogModified()
889 {
890     m_modified = true;
891     KConfigDialog::updateButtons();
892 }
893
894 //virtual
895 bool KdenliveSettingsDialog::hasChanged()
896 {
897     if (m_modified || m_shuttleModified) return true;
898     return KConfigDialog::hasChanged();
899 }
900
901 void KdenliveSettingsDialog::slotUpdatev4lDevice()
902 {
903     QString device = m_configCapture.kcfg_detectedv4ldevices->itemData(m_configCapture.kcfg_detectedv4ldevices->currentIndex()).toString();
904     if (!device.isEmpty()) m_configCapture.kcfg_video4vdevice->setText(device);
905     QString info = m_configCapture.kcfg_detectedv4ldevices->itemData(m_configCapture.kcfg_detectedv4ldevices->currentIndex(), Qt::UserRole + 1).toString();
906
907     m_configCapture.kcfg_v4l_format->blockSignals(true);
908     m_configCapture.kcfg_v4l_format->clear();
909
910     QString vl4ProfilePath = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
911     if (QFile::exists(vl4ProfilePath)) {
912         m_configCapture.kcfg_v4l_format->addItem(i18n("Current settings"));
913     }
914
915     QStringList pixelformats = info.split(">", QString::SkipEmptyParts);
916     QString itemSize;
917     QString pixelFormat;
918     QStringList itemRates;
919     for (int i = 0; i < pixelformats.count(); i++) {
920         QString format = pixelformats.at(i).section(':', 0, 0);
921         QStringList sizes = pixelformats.at(i).split(":", QString::SkipEmptyParts);
922         pixelFormat = sizes.takeFirst();
923         for (int j = 0; j < sizes.count(); j++) {
924             itemSize = sizes.at(j).section("=", 0, 0);
925             itemRates = sizes.at(j).section("=", 1, 1).split(",", QString::SkipEmptyParts);
926             for (int k = 0; k < itemRates.count(); k++) {
927                 m_configCapture.kcfg_v4l_format->addItem("[" + format + "] " + itemSize + " (" + itemRates.at(k) + ")", QStringList() << format << itemSize.section('x', 0, 0) << itemSize.section('x', 1, 1) << itemRates.at(k).section('/', 0, 0) << itemRates.at(k).section('/', 1, 1));
928             }
929         }
930     }
931     m_configCapture.kcfg_v4l_format->blockSignals(false);
932     slotUpdatev4lCaptureProfile();
933 }
934
935 void KdenliveSettingsDialog::slotUpdatev4lCaptureProfile()
936 {
937     QStringList info = m_configCapture.kcfg_v4l_format->itemData(m_configCapture.kcfg_v4l_format->currentIndex(), Qt::UserRole).toStringList();
938     if (info.isEmpty()) {
939         // No auto info, display the current ones
940         loadCurrentV4lProfileInfo();
941         return;
942     }
943     m_configCapture.p_size->setText(info.at(1) + 'x' + info.at(2));
944     m_configCapture.p_fps->setText(info.at(3) + '/' + info.at(4));
945     m_configCapture.p_aspect->setText("1/1");
946     m_configCapture.p_display->setText(info.at(1) + '/' + info.at(2));
947     m_configCapture.p_colorspace->setText(ProfilesDialog::getColorspaceDescription(601));
948     m_configCapture.p_progressive->setText(i18n("Progressive"));
949
950     QString vl4ProfilePath = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
951     if (!QFile::exists(vl4ProfilePath)) saveCurrentV4lProfile();
952 }
953
954 void KdenliveSettingsDialog::loadCurrentV4lProfileInfo()
955 {
956     QString vl4ProfilePath = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
957     MltVideoProfile prof;
958     if (!QFile::exists(vl4ProfilePath)) {
959         // No default formats found, build one
960         prof.width = 320;
961         prof.height = 200;
962         prof.frame_rate_num = 15;
963         prof.frame_rate_den = 1;
964         prof.display_aspect_num = 4;
965         prof.display_aspect_den = 3;
966         prof.sample_aspect_num = 1;
967         prof.sample_aspect_den = 1;
968         prof.progressive = 1;
969         prof.colorspace = 601;
970         ProfilesDialog::saveProfile(prof, vl4ProfilePath);
971     }
972     else prof = ProfilesDialog::getVideoProfile(vl4ProfilePath);
973     m_configCapture.p_size->setText(QString::number(prof.width) + 'x' + QString::number(prof.height));
974     m_configCapture.p_fps->setText(QString::number(prof.frame_rate_num) + '/' + QString::number(prof.frame_rate_den));
975     m_configCapture.p_aspect->setText(QString::number(prof.sample_aspect_num) + '/' + QString::number(prof.sample_aspect_den));
976     m_configCapture.p_display->setText(QString::number(prof.display_aspect_num) + '/' + QString::number(prof.display_aspect_den));
977     m_configCapture.p_colorspace->setText(ProfilesDialog::getColorspaceDescription(prof.colorspace));
978     if (prof.progressive) m_configCapture.p_progressive->setText(i18n("Progressive"));
979 }
980
981 void KdenliveSettingsDialog::saveCurrentV4lProfile()
982 {
983     MltVideoProfile profile;
984     profile.description = "Video4Linux capture";
985     profile.colorspace = ProfilesDialog::getColorspaceFromDescription(m_configCapture.p_colorspace->text());
986     profile.width = m_configCapture.p_size->text().section('x', 0, 0).toInt();
987     profile.height = m_configCapture.p_size->text().section('x', 1, 1).toInt();
988     profile.sample_aspect_num = m_configCapture.p_aspect->text().section('/', 0, 0).toInt();
989     profile.sample_aspect_den = m_configCapture.p_aspect->text().section('/', 1, 1).toInt();
990     profile.display_aspect_num = m_configCapture.p_display->text().section('/', 0, 0).toInt();
991     profile.display_aspect_den = m_configCapture.p_display->text().section('/', 1, 1).toInt();
992     profile.frame_rate_num = m_configCapture.p_fps->text().section('/', 0, 0).toInt();
993     profile.frame_rate_den = m_configCapture.p_fps->text().section('/', 1, 1).toInt();
994     profile.progressive = m_configCapture.p_progressive->text() == i18n("Progressive");
995     QString vl4ProfilePath = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
996     ProfilesDialog::saveProfile(profile, vl4ProfilePath);
997 }
998
999 void KdenliveSettingsDialog::slotManageEncodingProfile()
1000 {
1001     int type = 0;
1002     if (currentPage() == m_page4) {
1003         if (m_configCapture.tabWidget->currentIndex() == 1) type = 1;
1004         else if (m_configCapture.tabWidget->currentIndex() == 3) type = 2;
1005     }
1006     EncodingProfilesDialog *d = new EncodingProfilesDialog(type);
1007     d->exec();
1008     delete d;
1009     loadEncodingProfiles();
1010 }
1011
1012 void KdenliveSettingsDialog::loadEncodingProfiles()
1013 {
1014     KConfig conf("encodingprofiles.rc", KConfig::FullConfig, "appdata");
1015
1016     // Load v4l profiles
1017     m_configCapture.kcfg_v4l_profile->blockSignals(true);
1018     QString currentItem = m_configCapture.kcfg_v4l_profile->currentText();
1019     m_configCapture.kcfg_v4l_profile->clear();
1020     KConfigGroup group(&conf, "video4linux");
1021     QMap< QString, QString > values = group.entryMap();
1022     QMapIterator<QString, QString> i(values);
1023     while (i.hasNext()) {
1024         i.next();
1025         if (!i.key().isEmpty()) m_configCapture.kcfg_v4l_profile->addItem(i.key(), i.value());
1026     }
1027     m_configCapture.kcfg_v4l_profile->blockSignals(false);
1028     if (!currentItem.isEmpty()) m_configCapture.kcfg_v4l_profile->setCurrentIndex(m_configCapture.kcfg_v4l_profile->findText(currentItem));
1029
1030     // Load Decklink profiles
1031     m_configCapture.kcfg_decklink_profile->blockSignals(true);
1032     currentItem = m_configCapture.kcfg_decklink_profile->currentText();
1033     m_configCapture.kcfg_decklink_profile->clear();
1034     KConfigGroup group2(&conf, "decklink");
1035     values = group2.entryMap();
1036     QMapIterator<QString, QString> j(values);
1037     while (j.hasNext()) {
1038         j.next();
1039         if (!j.key().isEmpty()) m_configCapture.kcfg_decklink_profile->addItem(j.key(), j.value());
1040     }
1041     m_configCapture.kcfg_decklink_profile->blockSignals(false);
1042     if (!currentItem.isEmpty()) m_configCapture.kcfg_decklink_profile->setCurrentIndex(m_configCapture.kcfg_decklink_profile->findText(currentItem));
1043
1044     // Load Proxy profiles
1045     m_configProject.kcfg_proxy_profile->blockSignals(true);
1046     currentItem = m_configProject.kcfg_proxy_profile->currentText();
1047     m_configProject.kcfg_proxy_profile->clear();
1048     KConfigGroup group3(&conf, "proxy");
1049     values = group3.entryMap();
1050     QMapIterator<QString, QString> k(values);
1051     while (k.hasNext()) {
1052         k.next();
1053         if (!k.key().isEmpty()) m_configProject.kcfg_proxy_profile->addItem(k.key(), k.value());
1054     }
1055     if (!currentItem.isEmpty()) m_configProject.kcfg_proxy_profile->setCurrentIndex(m_configProject.kcfg_proxy_profile->findText(currentItem));
1056     m_configProject.kcfg_proxy_profile->blockSignals(false);
1057     slotUpdateProxyProfile();
1058     
1059 }
1060
1061 void KdenliveSettingsDialog::slotUpdateDecklinkProfile(int ix)
1062 {
1063     if (ix == -1) ix = KdenliveSettings::decklink_profile();
1064     else ix = m_configCapture.kcfg_decklink_profile->currentIndex();
1065     QString data = m_configCapture.kcfg_decklink_profile->itemData(ix).toString();
1066     if (data.isEmpty()) return;
1067     m_configCapture.decklink_parameters->setPlainText(data.section(";", 0, 0));
1068     //
1069 }
1070
1071 void KdenliveSettingsDialog::slotUpdateV4lProfile(int ix)
1072 {
1073     if (ix == -1) ix = KdenliveSettings::v4l_profile();
1074     else ix = m_configCapture.kcfg_v4l_profile->currentIndex();
1075     QString data = m_configCapture.kcfg_v4l_profile->itemData(ix).toString();
1076     if (data.isEmpty()) return;
1077     m_configCapture.v4l_parameters->setPlainText(data.section(";", 0, 0));
1078     //
1079 }
1080
1081 void KdenliveSettingsDialog::slotUpdateProxyProfile(int ix)
1082 {
1083     if (ix == -1) ix = KdenliveSettings::v4l_profile();
1084     else ix = m_configProject.kcfg_proxy_profile->currentIndex();
1085     QString data = m_configProject.kcfg_proxy_profile->itemData(ix).toString();
1086     if (data.isEmpty()) return;
1087     m_configProject.proxyparams->setPlainText(data.section(";", 0, 0));
1088     //
1089 }
1090
1091 void KdenliveSettingsDialog::slotEditVideo4LinuxProfile()
1092 {
1093     QString vl4ProfilePath = KStandardDirs::locateLocal("appdata", "profiles/video4linux");
1094     ProfilesDialog *w = new ProfilesDialog(vl4ProfilePath);
1095     if (w->exec() == QDialog::Accepted) {
1096         // save and update profile
1097         loadCurrentV4lProfileInfo();
1098     }
1099     delete w;
1100 }
1101
1102
1103 #include "kdenlivesettingsdialog.moc"
1104
1105