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