X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fkdenlivesettingsdialog.cpp;h=90c3d816b90e2c815c5d9a4daed529c5a4d22e2c;hb=db5991fd0a58d9f9ba21968b3c1c993965de9855;hp=7c5f7a002c57e16df8213c9b858cecb7857e00ae;hpb=8ecf208fad45e2285789050b2f8299ce5c897437;p=kdenlive diff --git a/src/kdenlivesettingsdialog.cpp b/src/kdenlivesettingsdialog.cpp index 7c5f7a00..90c3d816 100644 --- a/src/kdenlivesettingsdialog.cpp +++ b/src/kdenlivesettingsdialog.cpp @@ -17,12 +17,22 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ -#include -#include +#include "kdenlivesettingsdialog.h" +#include "profilesdialog.h" +#include "blackmagic/devices.h" +#include "kdenlivesettings.h" #include #include #include +#include +#include +#include +#include + +#include +#include +#include #include #include @@ -32,19 +42,26 @@ #include #endif /* NO_JOGSHUTTLE */ -#include "profilesdialog.h" -#include "kdenlivesettings.h" -#include "kdenlivesettingsdialog.h" -KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog(parent, "settings", KdenliveSettings::self()) { +KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent) : + KConfigDialog(parent, "settings", KdenliveSettings::self()), + m_modified(false) +{ QWidget *p1 = new QWidget; m_configMisc.setupUi(p1); - page1 = addPage(p1, i18n("Misc"), "configure"); + m_page1 = addPage(p1, i18n("Misc"), "configure"); + + // Hide multi tab option until Kdenlive really supports it + m_configMisc.kcfg_activatetabs->setVisible(false); + + QWidget *p8 = new QWidget; + m_configProject.setupUi(p8); + m_page8 = addPage(p8, i18n("Project Defaults"), "document-new"); QWidget *p3 = new QWidget; - m_configDisplay.setupUi(p3); - page3 = addPage(p3, i18n("Display"), "display"); + m_configTimeline.setupUi(p3); + m_page3 = addPage(p3, i18n("Timeline"), "video-display"); QWidget *p2 = new QWidget; m_configEnv.setupUi(p2); @@ -57,12 +74,19 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( m_configEnv.projecturl->lineEdit()->setObjectName("kcfg_defaultprojectfolder"); m_configEnv.capturefolderurl->setMode(KFile::Directory); m_configEnv.capturefolderurl->lineEdit()->setObjectName("kcfg_capturefolder"); - page2 = addPage(p2, i18n("Environment"), "terminal"); + m_configEnv.capturefolderurl->setEnabled(!KdenliveSettings::capturetoprojectfolder()); + connect(m_configEnv.kcfg_capturetoprojectfolder, SIGNAL(clicked()), this, SLOT(slotEnableCaptureFolder())); + m_page2 = addPage(p2, i18n("Environment"), "application-x-executable-script"); QWidget *p4 = new QWidget; m_configCapture.setupUi(p4); - page4 = addPage(p4, i18n("Capture"), "audio-card"); + m_page4 = addPage(p4, i18n("Capture"), "media-record"); m_configCapture.tabWidget->setCurrentIndex(KdenliveSettings::defaultcapture()); +#ifdef Q_WS_MAC + m_configCapture.tabWidget->setEnabled(false); + m_configCapture.kcfg_defaultcapture->setEnabled(false); + m_configCapture.label->setText(i18n("Capture is not yet available on OS X.")); +#endif QWidget *p5 = new QWidget; m_configShuttle.setupUi(p5); @@ -75,11 +99,25 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( m_configShuttle.kcfg_enableshuttle->hide(); m_configShuttle.kcfg_enableshuttle->setDisabled(true); #endif /* NO_JOGSHUTTLE */ - page5 = addPage(p5, i18n("JogShuttle"), "input-mouse"); + m_page5 = addPage(p5, i18n("JogShuttle"), "input-mouse"); QWidget *p6 = new QWidget; m_configSdl.setupUi(p6); - page6 = addPage(p6, i18n("Playback"), "audio-card"); + + // Disable drop B frames, see Kdenlive issue #1330 + m_configSdl.groupBox->setHidden(true); +#if not defined(Q_WS_MAC) && not defined(USE_OPEN_GL) + m_configSdl.kcfg_openglmonitors->setHidden(true); +#endif + + m_page6 = addPage(p6, i18n("Playback"), "media-playback-start"); + + QWidget *p7 = new QWidget; + m_configTranscode.setupUi(p7); + m_page7 = addPage(p7, i18n("Transcode"), "edit-copy"); + connect(m_configTranscode.button_add, SIGNAL(clicked()), this, SLOT(slotAddTranscode())); + connect(m_configTranscode.button_delete, SIGNAL(clicked()), this, SLOT(slotDeleteTranscode())); + connect(m_configTranscode.profiles_list, SIGNAL(itemChanged(QTreeWidgetItem *, int)), this, SLOT(slotDialogModified())); QStringList actions; actions << i18n("Do nothing"); @@ -93,6 +131,8 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( connect(m_configCapture.kcfg_video4vdevice, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); connect(m_configCapture.kcfg_video4adevice, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); + connect(m_configCapture.kcfg_video4vcodec, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); + connect(m_configCapture.kcfg_video4acodec, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); connect(m_configCapture.kcfg_video4vformat, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); connect(m_configCapture.kcfg_video4aformat, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); connect(m_configCapture.kcfg_video4size, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands())); @@ -106,24 +146,17 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( connect(m_configEnv.kp_audio, SIGNAL(clicked()), this, SLOT(slotEditAudioApplication())); connect(m_configEnv.kp_player, SIGNAL(clicked()), this, SLOT(slotEditVideoApplication())); - - - QMap profilesInfo = ProfilesDialog::getProfilesInfo(); - QMapIterator i(profilesInfo); - while (i.hasNext()) { - i.next(); - m_configMisc.kcfg_profiles_list->addItem(i.key(), i.value()); - } - checkProfile(); + slotUpdateDisplay(); + connect(m_configSdl.kcfg_audio_driver, SIGNAL(currentIndexChanged(int)), this, SLOT(slotCheckAlsaDriver())); initDevices(); - connect(m_configMisc.kcfg_profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay())); - + connect(m_configProject.kcfg_profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay())); connect(m_configCapture.kcfg_rmd_capture_type, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateRmdRegionStatus())); slotUpdateRmdRegionStatus(); + loadTranscodeProfiles(); //HACK: check dvgrab version, because only dvgrab >= 3.3 supports @@ -135,6 +168,12 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( } + BMInterface::getBlackMagicDeviceList(m_configCapture.hdmi_list, m_configCapture.hdmi_capturemode); + connect(m_configCapture.hdmi_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateHDMIModes())); + connect(m_configCapture.hdmi_capturemode, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateHDMICaptureMode())); + m_configCapture.hdmi_list->setCurrentIndex(KdenliveSettings::hdmicapturedevice()); + m_configCapture.hdmi_capturemode->setCurrentIndex(KdenliveSettings::hdmicapturemode()); + double dvgrabVersion = 0; if (!KdenliveSettings::dvgrab_path().isEmpty()) { QProcess *versionCheck = new QProcess; @@ -147,7 +186,7 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( kDebug() << "// FOUND DVGRAB VERSION: " << dvgrabVersion; } - if (versionCheck) delete versionCheck; + delete versionCheck; if (dvgrabVersion < 3.3) { KdenliveSettings::setFirewiretimestamp(false); m_configCapture.kcfg_firewiretimestamp->setEnabled(false); @@ -159,21 +198,51 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog( QString rmdpath = KStandardDirs::findExe("recordmydesktop"); KdenliveSettings::setRmd_path(rmdpath); } - if (KdenliveSettings::rmd_path().isEmpty()) m_configCapture.rmd_info->setText(i18n("Recordmydesktop utility not found, please install it for screen grabs")); - else m_configCapture.rmd_info->setText(i18n("Recordmydesktop found at: %1", KdenliveSettings::rmd_path())); + if (KdenliveSettings::rmd_path().isEmpty()) + m_configCapture.rmd_info->setText(i18n("Recordmydesktop utility not found, please install it for screen grabs")); + else + m_configCapture.rmd_info->setText(i18n("Recordmydesktop found at: %1", KdenliveSettings::rmd_path())); } KdenliveSettingsDialog::~KdenliveSettingsDialog() {} -void KdenliveSettingsDialog::slotUpdateRmdRegionStatus() { +void KdenliveSettingsDialog::slotUpdateHDMIModes() +{ + QStringList modes = m_configCapture.hdmi_list->itemData(m_configCapture.hdmi_list->currentIndex()).toStringList(); + m_configCapture.hdmi_capturemode->clear(); + m_configCapture.hdmi_capturemode->insertItems(0, modes); + KdenliveSettings::setHdmicapturedevice(m_configCapture.hdmi_list->currentIndex()); +} + +void KdenliveSettingsDialog::slotUpdateHDMICaptureMode() +{ + KdenliveSettings::setHdmicapturemode(m_configCapture.hdmi_capturemode->currentIndex()); +} + +void KdenliveSettingsDialog::slotUpdateRmdRegionStatus() +{ m_configCapture.region_group->setHidden(m_configCapture.kcfg_rmd_capture_type->currentIndex() != 1); } -void KdenliveSettingsDialog::checkProfile() { +void KdenliveSettingsDialog::slotEnableCaptureFolder() +{ + m_configEnv.capturefolderurl->setEnabled(!m_configEnv.kcfg_capturetoprojectfolder->isChecked()); +} + +void KdenliveSettingsDialog::checkProfile() +{ + m_configProject.kcfg_profiles_list->clear(); + QMap profilesInfo = ProfilesDialog::getProfilesInfo(); + QMapIterator i(profilesInfo); + while (i.hasNext()) { + i.next(); + m_configProject.kcfg_profiles_list->addItem(i.key(), i.value()); + } + if (!KdenliveSettings::default_profile().isEmpty()) { - for (int i = 0; i < m_configMisc.kcfg_profiles_list->count(); i++) { - if (m_configMisc.kcfg_profiles_list->itemData(i).toString() == KdenliveSettings::default_profile()) { - m_configMisc.kcfg_profiles_list->setCurrentIndex(i); + for (int i = 0; i < m_configProject.kcfg_profiles_list->count(); i++) { + if (m_configProject.kcfg_profiles_list->itemData(i).toString() == KdenliveSettings::default_profile()) { + m_configProject.kcfg_profiles_list->setCurrentIndex(i); KdenliveSettings::setProfiles_list(i); break; } @@ -181,23 +250,30 @@ void KdenliveSettingsDialog::checkProfile() { } } -void KdenliveSettingsDialog::initDevices() { +void KdenliveSettingsDialog::initDevices() +{ // Fill audio drivers m_configSdl.kcfg_audio_driver->addItem(i18n("Automatic"), QString()); +#ifndef Q_WS_MAC m_configSdl.kcfg_audio_driver->addItem(i18n("OSS"), "dsp"); m_configSdl.kcfg_audio_driver->addItem(i18n("ALSA"), "alsa"); + m_configSdl.kcfg_audio_driver->addItem(i18n("PulseAudio"), "pulse"); m_configSdl.kcfg_audio_driver->addItem(i18n("OSS with DMA access"), "dma"); m_configSdl.kcfg_audio_driver->addItem(i18n("Esound daemon"), "esd"); m_configSdl.kcfg_audio_driver->addItem(i18n("ARTS daemon"), "artsc"); +#endif - /*if (!KdenliveSettings::audiodriver().isEmpty()) - for (uint i = 1;i < m_configDisplay.kcfg_audio_driver->count(); i++) { - if (m_configDisplay.kcfg_audio_driver->itemData(i).toString() == KdenliveSettings::audiodriver()) - m_configDisplay.kcfg_audio_driver->setCurrentIndex(i); - }*/ + if (!KdenliveSettings::audiodrivername().isEmpty()) + for (int i = 1; i < m_configSdl.kcfg_audio_driver->count(); i++) { + if (m_configSdl.kcfg_audio_driver->itemData(i).toString() == KdenliveSettings::audiodrivername()) { + m_configSdl.kcfg_audio_driver->setCurrentIndex(i); + KdenliveSettings::setAudio_driver((uint) i); + } + } // Fill video drivers m_configSdl.kcfg_video_driver->addItem(i18n("Automatic"), QString()); +#ifndef Q_WS_MAC m_configSdl.kcfg_video_driver->addItem(i18n("XVideo"), "x11"); m_configSdl.kcfg_video_driver->addItem(i18n("X11"), "x11_noaccel"); m_configSdl.kcfg_video_driver->addItem(i18n("XFree86 DGA 2.0"), "dga"); @@ -207,11 +283,12 @@ void KdenliveSettingsDialog::initDevices() { m_configSdl.kcfg_video_driver->addItem(i18n("SVGAlib"), "svgalib"); m_configSdl.kcfg_video_driver->addItem(i18n("General graphics interface"), "ggi"); m_configSdl.kcfg_video_driver->addItem(i18n("Ascii art library"), "aalib"); +#endif // Fill the list of audio playback devices - m_configSdl.audio_device->addItem(i18n("Default"), QString()); - m_configCapture.rmd_alsa_device->addItem(i18n("Default"), QString()); - if (KStandardDirs::findExe("aplay") != QString::null) { + m_configSdl.kcfg_audio_device->addItem(i18n("Default"), QString()); + m_configCapture.kcfg_rmd_alsa_device->addItem(i18n("Default"), QString()); + if (!KStandardDirs::findExe("aplay").isEmpty()) { m_readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel); m_readProcess.setProgram("aplay", QStringList() << "-l"); connect(&m_readProcess, SIGNAL(readyReadStandardOutput()) , this, SLOT(slotReadAudioDevices())); @@ -226,12 +303,12 @@ void KdenliveSettingsDialog::initDevices() { while (!stream.atEnd()) { line = stream.readLine(); if (line.contains("playback")) { - deviceId = line.section(":", 0, 0); - m_configSdl.audio_device->addItem(line.section(":", 1, 1), "plughw:" + QString::number(deviceId.section("-", 0, 0).toInt()) + "," + QString::number(deviceId.section("-", 1, 1).toInt())); + deviceId = line.section(':', 0, 0); + 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())); } if (line.contains("capture")) { - deviceId = line.section(":", 0, 0); - m_configCapture.rmd_alsa_device->addItem(line.section(":", 1, 1), "plughw:" + QString::number(deviceId.section("-", 0, 0).toInt()) + "," + QString::number(deviceId.section("-", 1, 1).toInt())); + deviceId = line.section(':', 0, 0); + m_configCapture.kcfg_rmd_alsa_device->addItem(line.section(':', 1, 1), "plughw:" + QString::number(deviceId.section('-', 0, 0).toInt()) + ',' + QString::number(deviceId.section('-', 1, 1).toInt())); } } file.close(); @@ -239,56 +316,68 @@ void KdenliveSettingsDialog::initDevices() { } if (!KdenliveSettings::audiodevicename().isEmpty()) { // Select correct alsa device - int ix = m_configSdl.audio_device->findData(KdenliveSettings::audiodevicename()); - if (ix > 0) m_configSdl.audio_device->setCurrentIndex(ix); + int ix = m_configSdl.kcfg_audio_device->findData(KdenliveSettings::audiodevicename()); + m_configSdl.kcfg_audio_device->setCurrentIndex(ix); + KdenliveSettings::setAudio_device(ix); } if (!KdenliveSettings::rmd_alsadevicename().isEmpty()) { // Select correct alsa device - int ix = m_configCapture.rmd_alsa_device->findData(KdenliveSettings::rmd_alsadevicename()); - if (ix > 0) m_configCapture.rmd_alsa_device->setCurrentIndex(ix); + int ix = m_configCapture.kcfg_rmd_alsa_device->findData(KdenliveSettings::rmd_alsadevicename()); + m_configCapture.kcfg_rmd_alsa_device->setCurrentIndex(ix); + KdenliveSettings::setRmd_alsa_device(ix); } } -void KdenliveSettingsDialog::slotReadAudioDevices() { +void KdenliveSettingsDialog::slotReadAudioDevices() +{ QString result = QString(m_readProcess.readAllStandardOutput()); kDebug() << "// / / / / / READING APLAY: "; kDebug() << result; QStringList lines = result.split('\n'); - foreach(QString data, lines) { + foreach(const QString & data, lines) { kDebug() << "// READING LINE: " << data; if (data.simplified().startsWith("card")) { - QString card = data.section(":", 0, 0).section(" ", -1); - QString device = data.section(":", 1, 1).section(" ", -1); - m_configSdl.audio_device->addItem(data.section(":", -1), "plughw:" + card + "," + device); - m_configCapture.rmd_alsa_device->addItem(data.section(":", -1), "plughw:" + card + "," + device); + QString card = data.section(':', 0, 0).section(' ', -1); + QString device = data.section(':', 1, 1).section(' ', -1); + m_configSdl.kcfg_audio_device->addItem(data.section(':', -1), "plughw:" + card + ',' + device); + m_configCapture.kcfg_rmd_alsa_device->addItem(data.section(':', -1), "plughw:" + card + ',' + device); } } } -void KdenliveSettingsDialog::showPage(int page, int option) { +void KdenliveSettingsDialog::showPage(int page, int option) +{ switch (page) { case 1: - setCurrentPage(page1); + setCurrentPage(m_page1); break; case 2: - setCurrentPage(page2); + setCurrentPage(m_page2); break; case 3: - setCurrentPage(page3); + setCurrentPage(m_page3); break; case 4: - setCurrentPage(page4); + setCurrentPage(m_page4); m_configCapture.tabWidget->setCurrentIndex(option); break; case 5: - setCurrentPage(page5); + setCurrentPage(m_page5); break; - + case 6: + setCurrentPage(m_page6); + break; + case 7: + setCurrentPage(m_page7); + break; + default: + setCurrentPage(m_page1); } } -void KdenliveSettingsDialog::slotEditVideoApplication() { +void KdenliveSettingsDialog::slotEditVideoApplication() +{ KService::Ptr service; KOpenWithDialog dlg(KUrl::List(), i18n("Select default video player"), m_configEnv.kcfg_defaultplayerapp->text(), this); if (dlg.exec() != QDialog::Accepted) @@ -298,7 +387,8 @@ void KdenliveSettingsDialog::slotEditVideoApplication() { m_configEnv.kcfg_defaultplayerapp->setText(service->exec()); } -void KdenliveSettingsDialog::slotEditAudioApplication() { +void KdenliveSettingsDialog::slotEditAudioApplication() +{ KService::Ptr service; KOpenWithDialog dlg(KUrl::List(), i18n("Select default audio editor"), m_configEnv.kcfg_defaultaudioapp->text(), this); if (dlg.exec() != QDialog::Accepted) @@ -308,7 +398,8 @@ void KdenliveSettingsDialog::slotEditAudioApplication() { m_configEnv.kcfg_defaultaudioapp->setText(service->exec()); } -void KdenliveSettingsDialog::slotEditImageApplication() { +void KdenliveSettingsDialog::slotEditImageApplication() +{ KService::Ptr service; KOpenWithDialog dlg(KUrl::List(), i18n("Select default image editor"), m_configEnv.kcfg_defaultimageapp->text(), this); if (dlg.exec() != QDialog::Accepted) @@ -319,7 +410,8 @@ void KdenliveSettingsDialog::slotEditImageApplication() { } #ifndef NO_JOGSHUTTLE -void KdenliveSettingsDialog::slotCheckShuttle(int state) { +void KdenliveSettingsDialog::slotCheckShuttle(int state) +{ m_configShuttle.config_group->setEnabled(state); if (m_configShuttle.shuttledevicelist->count() == 0) { // parse devices @@ -330,7 +422,7 @@ void KdenliveSettingsDialog::slotCheckShuttle(int state) { kDebug() << "/// CHECKING OFR: " << filename; char name[256] = "unknown"; - fd = ::open((char *) filename.toUtf8().data(), O_RDONLY); + fd = KDE_open((char *) filename.toUtf8().data(), O_RDONLY); if (fd >= 0 && ioctl(fd, EVIOCGNAME(sizeof(name)), name) >= 0) { m_configShuttle.shuttledevicelist->addItem(name, filename); } @@ -340,48 +432,57 @@ void KdenliveSettingsDialog::slotCheckShuttle(int state) { } } -void KdenliveSettingsDialog::slotUpdateShuttleDevice(int ix) { +void KdenliveSettingsDialog::slotUpdateShuttleDevice(int ix) +{ QString device = m_configShuttle.shuttledevicelist->itemData(ix).toString(); //KdenliveSettings::setShuttledevice(device); m_configShuttle.kcfg_shuttledevice->setText(device); } #endif /* NO_JOGSHUTTLE */ -void KdenliveSettingsDialog::rebuildVideo4Commands() { +void KdenliveSettingsDialog::rebuildVideo4Commands() +{ QString captureCommand; - if (!m_configCapture.kcfg_video4adevice->text().isEmpty()) captureCommand = "-f " + m_configCapture.kcfg_video4aformat->text() + " -i " + m_configCapture.kcfg_video4adevice->text(); + if (!m_configCapture.kcfg_video4adevice->text().isEmpty()) captureCommand = "-f " + m_configCapture.kcfg_video4aformat->text() + " -i " + m_configCapture.kcfg_video4adevice->text() + " -acodec " + m_configCapture.kcfg_video4acodec->text(); - captureCommand += " -f " + m_configCapture.kcfg_video4vformat->text() + " -s " + m_configCapture.kcfg_video4size->text() + " -r " + QString::number(m_configCapture.kcfg_video4rate->value()) + " -i " + m_configCapture.kcfg_video4vdevice->text(); + captureCommand += " -f " + m_configCapture.kcfg_video4vformat->text() + " -s " + m_configCapture.kcfg_video4size->text() + " -r " + QString::number(m_configCapture.kcfg_video4rate->value()) + " -i " + m_configCapture.kcfg_video4vdevice->text() + " -vcodec " + m_configCapture.kcfg_video4vcodec->text(); m_configCapture.kcfg_video4capture->setText(captureCommand); } -// virtual protected -bool KdenliveSettingsDialog::isDefault() { - return KConfigDialog::isDefault(); -} - -// virtual protected -bool KdenliveSettingsDialog::hasChanged() { - kDebug() << "// // // KCONFIG hasChanged called: " << m_configMisc.kcfg_profiles_list->currentText() << ", " << m_defaultProfile; +void KdenliveSettingsDialog::updateSettings() +{ + //kDebug() << "// // // KCONFIG UPDATE called"; - if (m_configMisc.kcfg_profiles_list->currentText() != m_defaultProfile) return true; - return KConfigDialog::hasChanged(); -} - -void KdenliveSettingsDialog::updateSettings() { - kDebug() << "// // // KCONFIG UPDATE called"; - m_defaultProfile = m_configMisc.kcfg_profiles_list->currentText(); + m_defaultProfile = m_configProject.kcfg_profiles_list->currentText(); KdenliveSettings::setDefault_profile(m_defaultPath); bool resetProfile = false; - QString value = m_configSdl.audio_device->itemData(m_configSdl.audio_device->currentIndex()).toString(); - if (value != KdenliveSettings::audiodevicename()) { - KdenliveSettings::setAudiodevicename(value); - resetProfile = true; + bool updateCapturePath = false; + + if (m_configEnv.kcfg_capturetoprojectfolder->isChecked() != KdenliveSettings::capturetoprojectfolder()) { + KdenliveSettings::setCapturetoprojectfolder(m_configEnv.kcfg_capturetoprojectfolder->isChecked()); + updateCapturePath = true; + } + + if (m_configEnv.capturefolderurl->url().path() != KdenliveSettings::capturefolder()) { + KdenliveSettings::setCapturefolder(m_configEnv.capturefolderurl->url().path()); + updateCapturePath = true; + } + + if (m_configCapture.kcfg_dvgrabfilename->text() != KdenliveSettings::dvgrabfilename()) { + KdenliveSettings::setDvgrabfilename(m_configCapture.kcfg_dvgrabfilename->text()); + updateCapturePath = true; } - value = m_configCapture.rmd_alsa_device->itemData(m_configCapture.rmd_alsa_device->currentIndex()).toString(); + if ((uint) m_configCapture.kcfg_firewireformat->currentIndex() != KdenliveSettings::firewireformat()) { + KdenliveSettings::setFirewireformat(m_configCapture.kcfg_firewireformat->currentIndex()); + updateCapturePath = true; + } + + if (updateCapturePath) emit updateCaptureFolder(); + + QString value = m_configCapture.kcfg_rmd_alsa_device->itemData(m_configCapture.kcfg_rmd_alsa_device->currentIndex()).toString(); if (value != KdenliveSettings::rmd_alsadevicename()) { KdenliveSettings::setRmd_alsadevicename(value); } @@ -399,36 +500,141 @@ void KdenliveSettingsDialog::updateSettings() { resetProfile = true; } + if (value == "alsa") { + // Audio device setting is only valid for alsa driver + value = m_configSdl.kcfg_audio_device->itemData(m_configSdl.kcfg_audio_device->currentIndex()).toString(); + if (value != KdenliveSettings::audiodevicename()) { + KdenliveSettings::setAudiodevicename(value); + resetProfile = true; + } + } else if (KdenliveSettings::audiodevicename().isEmpty() == false) { + KdenliveSettings::setAudiodevicename(QString::null); + resetProfile = true; + } + value = m_configSdl.kcfg_video_driver->itemData(m_configSdl.kcfg_video_driver->currentIndex()).toString(); if (value != KdenliveSettings::videodrivername()) { KdenliveSettings::setVideodrivername(value); resetProfile = true; } + if (m_configSdl.kcfg_window_background->color() != KdenliveSettings::window_background()) { + KdenliveSettings::setWindow_background(m_configSdl.kcfg_window_background->color()); + resetProfile = true; + } + + if (m_configSdl.kcfg_volume->value() != KdenliveSettings::volume()) { + KdenliveSettings::setVolume(m_configSdl.kcfg_volume->value()); + resetProfile = true; + } + bool updatePreview = false; if (m_configSdl.kcfg_dropbframes->isChecked() != KdenliveSettings::dropbframes()) { KdenliveSettings::setDropbframes(m_configSdl.kcfg_dropbframes->isChecked()); updatePreview = true; } - KConfigDialog::updateSettings(); + if (m_modified) { + // The transcoding profiles were modified, save. + m_modified = false; + saveTranscodeProfiles(); + } + +#if KDE_IS_VERSION(4,3,0) + KConfigDialog::settingsChangedSlot(); +#endif + + //KConfigDialog::updateSettings(); if (resetProfile) emit doResetProfile(); if (updatePreview) emit updatePreviewSettings(); } -void KdenliveSettingsDialog::slotUpdateDisplay() { - QString currentProfile = m_configMisc.kcfg_profiles_list->itemData(m_configMisc.kcfg_profiles_list->currentIndex()).toString(); +void KdenliveSettingsDialog::slotUpdateDisplay() +{ + QString currentProfile = m_configProject.kcfg_profiles_list->itemData(m_configProject.kcfg_profiles_list->currentIndex()).toString(); QMap< QString, QString > values = ProfilesDialog::getSettingsFromFile(currentProfile); - m_configMisc.p_size->setText(values.value("width") + "x" + values.value("height")); - m_configMisc.p_fps->setText(values.value("frame_rate_num") + "/" + values.value("frame_rate_den")); - m_configMisc.p_aspect->setText(values.value("sample_aspect_num") + "/" + values.value("sample_aspect_den")); - m_configMisc.p_display->setText(values.value("display_aspect_num") + "/" + values.value("display_aspect_den")); - if (values.value("progressive").toInt() == 0) m_configMisc.p_progressive->setText(i18n("Interlaced")); - else m_configMisc.p_progressive->setText(i18n("Progressive")); - m_defaultProfile = m_configMisc.kcfg_profiles_list->itemText(m_configMisc.kcfg_profiles_list->currentIndex()); + m_configProject.p_size->setText(values.value("width") + 'x' + values.value("height")); + m_configProject.p_fps->setText(values.value("frame_rate_num") + '/' + values.value("frame_rate_den")); + m_configProject.p_aspect->setText(values.value("sample_aspect_num") + '/' + values.value("sample_aspect_den")); + m_configProject.p_display->setText(values.value("display_aspect_num") + '/' + values.value("display_aspect_den")); + if (values.value("progressive").toInt() == 0) + m_configProject.p_progressive->setText(i18n("Interlaced")); + else + m_configProject.p_progressive->setText(i18n("Progressive")); + m_defaultProfile = m_configProject.kcfg_profiles_list->itemText(m_configProject.kcfg_profiles_list->currentIndex()); m_defaultPath = currentProfile; } +void KdenliveSettingsDialog::slotCheckAlsaDriver() +{ + QString value = m_configSdl.kcfg_audio_driver->itemData(m_configSdl.kcfg_audio_driver->currentIndex()).toString(); + m_configSdl.kcfg_audio_device->setEnabled(value == "alsa"); +} + +void KdenliveSettingsDialog::loadTranscodeProfiles() +{ + KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc"); + KConfigGroup transConfig(config, "Transcoding"); + // read the entries + m_configTranscode.profiles_list->blockSignals(true); + QMap< QString, QString > profiles = transConfig.entryMap(); + QMapIterator i(profiles); + while (i.hasNext()) { + i.next(); + QTreeWidgetItem *item = new QTreeWidgetItem(m_configTranscode.profiles_list, QStringList() << i.key() << i.value()); + item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable); + } + m_configTranscode.profiles_list->blockSignals(false); +} + +void KdenliveSettingsDialog::saveTranscodeProfiles() +{ + KSharedConfigPtr config = KSharedConfig::openConfig("kdenlivetranscodingrc"); + //KSharedConfigPtr config = KGlobal::config(); + KConfigGroup transConfig(config, "Transcoding"); + // read the entries + transConfig.deleteGroup(); + int max = m_configTranscode.profiles_list->topLevelItemCount(); + for (int i = 0; i < max; i++) { + QTreeWidgetItem *item = m_configTranscode.profiles_list->topLevelItem(i); + transConfig.writeEntry(item->text(0), item->text(1)); + } + config->sync(); +} + +void KdenliveSettingsDialog::slotAddTranscode() +{ + QTreeWidgetItem *item = new QTreeWidgetItem(m_configTranscode.profiles_list, QStringList() << i18n("Name") << i18n("Parameters")); + item->setFlags(Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable); + m_configTranscode.profiles_list->setCurrentItem(item); + m_configTranscode.profiles_list->editItem(item); + slotDialogModified(); +} + +void KdenliveSettingsDialog::slotDeleteTranscode() +{ + QTreeWidgetItem *item = m_configTranscode.profiles_list->currentItem(); + if (item == NULL) return; + delete item; + slotDialogModified(); +} + +void KdenliveSettingsDialog::slotDialogModified() +{ + m_modified = true; +#if KDE_IS_VERSION(4,3,0) + KConfigDialog::updateButtons(); +#endif +} + +//virtual +bool KdenliveSettingsDialog::hasChanged() +{ + if (m_modified) return true; + return KConfigDialog::hasChanged(); +} + + #include "kdenlivesettingsdialog.moc"