]> git.sesse.net Git - kdenlive/blobdiff - src/kdenlivesettingsdialog.cpp
* Make sure user cannot create transition with in point bigger than out point
[kdenlive] / src / kdenlivesettingsdialog.cpp
index f644642ae780fcec5d30a4c6c149a513efc03c47..7796b990e74ce21c02fad41ad4f2a142baaa30ff 100644 (file)
@@ -28,7 +28,9 @@
 #include <stdio.h>
 #include <unistd.h>
 #include <fcntl.h>
+#ifndef NO_JOGSHUTTLE
 #include <linux/input.h>
+#endif /* NO_JOGSHUTTLE */
 
 #include "profilesdialog.h"
 #include "kdenlivesettings.h"
@@ -51,6 +53,8 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog(
     m_configEnv.rendererpathurl->lineEdit()->setObjectName("kcfg_rendererpath");
     m_configEnv.tmppathurl->setMode(KFile::Directory);
     m_configEnv.tmppathurl->lineEdit()->setObjectName("kcfg_currenttmpfolder");
+    m_configEnv.projecturl->setMode(KFile::Directory);
+    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");
@@ -62,9 +66,15 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog(
 
     QWidget *p5 = new QWidget;
     m_configShuttle.setupUi(p5);
+#ifndef NO_JOGSHUTTLE
     connect(m_configShuttle.kcfg_enableshuttle, SIGNAL(stateChanged(int)), this, SLOT(slotCheckShuttle(int)));
     connect(m_configShuttle.shuttledevicelist, SIGNAL(activated(int)), this, SLOT(slotUpdateShuttleDevice(int)));
     slotCheckShuttle(KdenliveSettings::enableshuttle());
+    m_configShuttle.shuttledisabled->hide();
+#else
+    m_configShuttle.kcfg_enableshuttle->hide();
+    m_configShuttle.kcfg_enableshuttle->setDisabled(true);
+#endif /* NO_JOGSHUTTLE */
     page5 = addPage(p5, i18n("JogShuttle"), "input-mouse");
 
     QWidget *p6 = new QWidget;
@@ -85,33 +95,93 @@ KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog(
     connect(m_configCapture.kcfg_video4adevice, 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_video4vencoding, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
-    connect(m_configCapture.kcfg_video4aencoding, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
     connect(m_configCapture.kcfg_video4size, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
     connect(m_configCapture.kcfg_video4rate, SIGNAL(editingFinished()), this, SLOT(rebuildVideo4Commands()));
 
+    connect(m_configCapture.kcfg_rmd_capture_audio, SIGNAL(clicked(bool)), m_configCapture.audio_group, SLOT(setVisible(bool)));
+
+    m_configCapture.audio_group->setVisible(KdenliveSettings::rmd_capture_audio());
+
     connect(m_configEnv.kp_image, SIGNAL(clicked()), this, SLOT(slotEditImageApplication()));
     connect(m_configEnv.kp_audio, SIGNAL(clicked()), this, SLOT(slotEditAudioApplication()));
     connect(m_configEnv.kp_player, SIGNAL(clicked()), this, SLOT(slotEditVideoApplication()));
 
-    QStringList profilesNames = ProfilesDialog::getProfileNames();
-    m_configMisc.kcfg_profiles_list->addItems(profilesNames);
-    m_defaultProfile = ProfilesDialog::getSettingsFromFile(KdenliveSettings::default_profile()).value("description");
-    if (profilesNames.contains(m_defaultProfile)) {
-        m_configMisc.kcfg_profiles_list->setCurrentItem(m_defaultProfile);
-        KdenliveSettings::setProfiles_list(profilesNames.indexOf(m_defaultProfile));
+
+
+    QMap <QString, QString> profilesInfo = ProfilesDialog::getProfilesInfo();
+    QMapIterator<QString, QString> i(profilesInfo);
+    while (i.hasNext()) {
+        i.next();
+        m_configMisc.kcfg_profiles_list->addItem(i.key(), i.value());
     }
 
+    checkProfile();
     slotUpdateDisplay();
-    m_audioDevice = KdenliveSettings::audio_device();
+
     initDevices();
     connect(m_configMisc.kcfg_profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
+
+    connect(m_configCapture.kcfg_rmd_capture_type, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateRmdRegionStatus()));
+
+    slotUpdateRmdRegionStatus();
+
+
+    //HACK: check dvgrab version, because only dvgrab >= 3.3 supports
+    //   --timestamp option without bug
+
+    if (KdenliveSettings::dvgrab_path().isEmpty() || !QFile::exists(KdenliveSettings::dvgrab_path())) {
+        QString dvgrabpath = KStandardDirs::findExe("dvgrab");
+        KdenliveSettings::setDvgrab_path(dvgrabpath);
+    }
+
+
+    double dvgrabVersion = 0;
+    if (!KdenliveSettings::dvgrab_path().isEmpty()) {
+        QProcess *versionCheck = new QProcess;
+        versionCheck->setProcessChannelMode(QProcess::MergedChannels);
+        versionCheck->start("dvgrab", QStringList() << "--version");
+        if (versionCheck->waitForFinished()) {
+            QString version = QString(versionCheck->readAll()).simplified();
+            if (version.contains(' ')) version = version.section(' ', -1);
+            dvgrabVersion = version.toDouble();
+
+            kDebug() << "// FOUND DVGRAB VERSION: " << dvgrabVersion;
+        }
+        if (versionCheck) delete versionCheck;
+        if (dvgrabVersion < 3.3) {
+            KdenliveSettings::setFirewiretimestamp(false);
+            m_configCapture.kcfg_firewiretimestamp->setEnabled(false);
+        }
+        m_configCapture.dvgrab_info->setText(i18n("dvgrab version %1 at %2", dvgrabVersion, KdenliveSettings::dvgrab_path()));
+    } else m_configCapture.dvgrab_info->setText(i18n("<b>dvgrab utility not found, please install it for firewire capture</b>"));
+
+    if (KdenliveSettings::rmd_path().isEmpty() || !QFile::exists(KdenliveSettings::rmd_path())) {
+        QString rmdpath = KStandardDirs::findExe("recordmydesktop");
+        KdenliveSettings::setRmd_path(rmdpath);
+    }
+    if (KdenliveSettings::rmd_path().isEmpty()) m_configCapture.rmd_info->setText(i18n("<b>Recordmydesktop utility not found, please install it for screen grabs</b>"));
+    else m_configCapture.rmd_info->setText(i18n("Recordmydesktop found at: %1", KdenliveSettings::rmd_path()));
 }
 
 KdenliveSettingsDialog::~KdenliveSettingsDialog() {}
 
-void KdenliveSettingsDialog::initDevices()
-{
+void KdenliveSettingsDialog::slotUpdateRmdRegionStatus() {
+    m_configCapture.region_group->setHidden(m_configCapture.kcfg_rmd_capture_type->currentIndex() != 1);
+}
+
+void KdenliveSettingsDialog::checkProfile() {
+    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);
+                KdenliveSettings::setProfiles_list(i);
+                break;
+            }
+        }
+    }
+}
+
+void KdenliveSettingsDialog::initDevices() {
     // Fill audio drivers
     m_configSdl.kcfg_audio_driver->addItem(i18n("Automatic"), QString());
     m_configSdl.kcfg_audio_driver->addItem(i18n("OSS"), "dsp");
@@ -121,14 +191,15 @@ void KdenliveSettingsDialog::initDevices()
     m_configSdl.kcfg_audio_driver->addItem(i18n("ARTS daemon"), "artsc");
 
     /*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);
-       }*/
-       // Fill video drivers
+    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);
+    }*/
+
+    // Fill video drivers
     m_configSdl.kcfg_video_driver->addItem(i18n("Automatic"), QString());
-    m_configSdl.kcfg_video_driver->addItem(i18n("X11"), "x11");
+    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");
     m_configSdl.kcfg_video_driver->addItem(i18n("Nano X"), "nanox");
     m_configSdl.kcfg_video_driver->addItem(i18n("Framebuffer console"), "fbcon");
@@ -137,46 +208,51 @@ void KdenliveSettingsDialog::initDevices()
     m_configSdl.kcfg_video_driver->addItem(i18n("General graphics interface"), "ggi");
     m_configSdl.kcfg_video_driver->addItem(i18n("Ascii art library"), "aalib");
 
-       // Fill the list of audio playback devices
+    // Fill the list of audio playback devices
     m_configSdl.kcfg_audio_device->addItem(i18n("Default"), QString());
+    m_configCapture.kcfg_rmd_alsa_device->addItem(i18n("Default"), QString());
     if (KStandardDirs::findExe("aplay") != QString::null) {
-       m_readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
-       m_readProcess.setProgram("aplay", QStringList() << "-l");
-       connect(&m_readProcess, SIGNAL(readyReadStandardOutput()) ,this, SLOT(slotReadAudioDevices()));
-       m_readProcess.execute(5000);
-    }
-    else {
-       // If aplay is not installed on the system, parse the /proc/asound/pcm file
-       QFile file("/proc/asound/pcm");
-       if ( file.open( QIODevice::ReadOnly ) ) {
-           QTextStream stream( &file );
-           QString line;
-           while ( !stream.atEnd() ) {
+        m_readProcess.setOutputChannelMode(KProcess::OnlyStdoutChannel);
+        m_readProcess.setProgram("aplay", QStringList() << "-l");
+        connect(&m_readProcess, SIGNAL(readyReadStandardOutput()) , this, SLOT(slotReadAudioDevices()));
+        m_readProcess.execute(5000);
+    } else {
+        // If aplay is not installed on the system, parse the /proc/asound/pcm file
+        QFile file("/proc/asound/pcm");
+        if (file.open(QIODevice::ReadOnly)) {
+            QTextStream stream(&file);
+            QString line;
+            QString deviceId;
+            while (!stream.atEnd()) {
                 line = stream.readLine();
-               if (line.contains("playback")) {
-               QString 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("playback")) {
+                    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.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();
-       }
+        }
     }
 }
 
 
-void KdenliveSettingsDialog::slotReadAudioDevices()
-{
+void KdenliveSettingsDialog::slotReadAudioDevices() {
     QString result = QString(m_readProcess.readAllStandardOutput());
-    kDebug()<<"// / / / / / READING APLAY: ";
-    kDebug()<< result;
+    kDebug() << "// / / / / / READING APLAY: ";
+    kDebug() << result;
     QStringList lines = result.split('\n');
-    foreach (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.kcfg_audio_device->addItem(data.section(":", -1), "plughw:" + card + "," + device);
-       }
+    foreach(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.kcfg_audio_device->addItem(data.section(":", -1), "plughw:" + card + "," + device);
+            m_configCapture.kcfg_rmd_alsa_device->addItem(data.section(":", -1), "plughw:" + card + "," + device);
+        }
     }
 }
 
@@ -232,6 +308,7 @@ void KdenliveSettingsDialog::slotEditImageApplication() {
     m_configEnv.kcfg_defaultimageapp->setText(service->exec());
 }
 
+#ifndef NO_JOGSHUTTLE
 void KdenliveSettingsDialog::slotCheckShuttle(int state) {
     m_configShuttle.config_group->setEnabled(state);
     if (m_configShuttle.shuttledevicelist->count() == 0) {
@@ -258,17 +335,14 @@ void KdenliveSettingsDialog::slotUpdateShuttleDevice(int ix) {
     //KdenliveSettings::setShuttledevice(device);
     m_configShuttle.kcfg_shuttledevice->setText(device);
 }
+#endif /* NO_JOGSHUTTLE */
 
 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();
 
-    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() + " -f " + m_configCapture.kcfg_video4vencoding->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();
     m_configCapture.kcfg_video4capture->setText(captureCommand);
-
-    QString playbackCommand;
-    playbackCommand =  "-f " + m_configCapture.kcfg_video4vencoding->text();
-    m_configCapture.kcfg_video4playback->setText(playbackCommand);
 }
 
 
@@ -293,20 +367,32 @@ void KdenliveSettingsDialog::updateSettings() {
     bool resetProfile = false;
     QString value = m_configSdl.kcfg_audio_device->itemData(m_configSdl.kcfg_audio_device->currentIndex()).toString();
     if (value != KdenliveSettings::audiodevicename()) {
-       KdenliveSettings::setAudiodevicename(value);
-       resetProfile = true;
+        KdenliveSettings::setAudiodevicename(value);
+        resetProfile = true;
+    }
+
+    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);
+    }
+
+    value = m_configCapture.kcfg_rmd_audio_freq->itemText(m_configCapture.kcfg_rmd_audio_freq->currentIndex());
+    kDebug() << "// AUDIO FREQ VALUE: " << value << ", CURRENT: " << KdenliveSettings::rmd_freq() << ", IX: " << m_configCapture.kcfg_rmd_audio_freq->currentIndex();
+    if (value != KdenliveSettings::rmd_freq()) {
+        kDebug() << "// SETTING AUDIO FREQ TO: " << value;
+        KdenliveSettings::setRmd_freq(value);
     }
 
     value = m_configSdl.kcfg_audio_driver->itemData(m_configSdl.kcfg_audio_driver->currentIndex()).toString();
     if (value != KdenliveSettings::audiodrivername()) {
-       KdenliveSettings::setAudiodrivername(value);
-       resetProfile = true;
+        KdenliveSettings::setAudiodrivername(value);
+        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;
+        KdenliveSettings::setVideodrivername(value);
+        resetProfile = true;
     }
 
     KConfigDialog::updateSettings();
@@ -314,15 +400,16 @@ void KdenliveSettingsDialog::updateSettings() {
 }
 
 void KdenliveSettingsDialog::slotUpdateDisplay() {
-    QString currentProfile = m_configMisc.kcfg_profiles_list->currentText();
-    QMap< QString, QString > values = ProfilesDialog::getSettingsForProfile(currentProfile);
+    QString currentProfile = m_configMisc.kcfg_profiles_list->itemData(m_configMisc.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_defaultPath = values.value("path");
+    m_defaultProfile = m_configMisc.kcfg_profiles_list->itemText(m_configMisc.kcfg_profiles_list->currentIndex());
+    m_defaultPath = currentProfile;
 }