]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.cpp
Add command line for advanced video4linux config
[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 <QDir>
21
22 #include <KStandardDirs>
23 #include <KDebug>
24
25 #include "profilesdialog.h"
26 #include "kdenlivesettings.h"
27 #include "kdenlivesettingsdialog.h"
28
29 KdenliveSettingsDialog::KdenliveSettingsDialog(QWidget * parent): KConfigDialog(parent, "settings", KdenliveSettings::self()) {
30
31     QWidget *p1 = new QWidget;
32     m_configMisc.setupUi(p1);
33     page1 = addPage(p1, i18n("Misc"), "configure");
34
35     QWidget *p3 = new QWidget;
36     m_configDisplay.setupUi(p3);
37     page3 = addPage(p3, i18n("Display"), "display");
38
39     QWidget *p2 = new QWidget;
40     m_configEnv.setupUi(p2);
41     m_configEnv.mltpathurl->setMode(KFile::Directory);
42     m_configEnv.mltpathurl->lineEdit()->setObjectName("kcfg_mltpath");
43     m_configEnv.rendererpathurl->lineEdit()->setObjectName("kcfg_rendererpath");
44     m_configEnv.tmppathurl->setMode(KFile::Directory);
45     m_configEnv.tmppathurl->lineEdit()->setObjectName("kcfg_currenttmpfolder");
46     page2 = addPage(p2, i18n("Environnement"), "terminal");
47
48     QWidget *p4 = new QWidget;
49     m_configCapture.setupUi(p4);
50     m_configCapture.capturefolderurl->setMode(KFile::Directory);
51     m_configCapture.capturefolderurl->lineEdit()->setObjectName("kcfg_capturefolder");
52     page4 = addPage(p4, i18n("Capture"), "audio-card");
53
54     connect(m_configCapture.kcfg_video4vdevice, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
55     connect(m_configCapture.kcfg_video4adevice, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
56     connect(m_configCapture.kcfg_video4vformat, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
57     connect(m_configCapture.kcfg_video4aformat, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
58     connect(m_configCapture.kcfg_video4vencoding, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
59     connect(m_configCapture.kcfg_video4aencoding, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
60     connect(m_configCapture.kcfg_video4size, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
61     connect(m_configCapture.kcfg_video4rate, SIGNAL(editingFinished ()), this, SLOT(rebuildVideo4Commands()));
62
63     QStringList profilesNames = ProfilesDialog::getProfileNames();
64     m_configMisc.profiles_list->addItems(profilesNames);
65     m_defaulfProfile = ProfilesDialog::getSettingsFromFile(KdenliveSettings::default_profile()).value("description");
66     if (profilesNames.contains(m_defaulfProfile)) m_configMisc.profiles_list->setCurrentItem(m_defaulfProfile);
67
68     slotUpdateDisplay();
69     connect(m_configMisc.profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
70 }
71
72 KdenliveSettingsDialog::~KdenliveSettingsDialog() {}
73
74
75 void KdenliveSettingsDialog::rebuildVideo4Commands() {
76     QString captureCommand;
77         if (!m_configCapture.kcfg_video4adevice->text().isEmpty()) captureCommand = "-f " + m_configCapture.kcfg_video4aformat->text() + " -i " + m_configCapture.kcfg_video4adevice->text();
78
79         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();
80         m_configCapture.kcfg_video4capture->setText(captureCommand);
81
82         QString playbackCommand;
83         playbackCommand =  "-f " + m_configCapture.kcfg_video4vencoding->text();
84         m_configCapture.kcfg_video4playback->setText(playbackCommand);
85 }
86
87 bool KdenliveSettingsDialog::hasChanged() {
88     kDebug() << "// // // KCONFIG hasChanged called";
89     if (m_configMisc.profiles_list->currentText() != m_defaulfProfile) return true;
90     return KConfigDialog::hasChanged();
91 }
92
93 void KdenliveSettingsDialog::slotUpdateDisplay() {
94     QString currentProfile = m_configMisc.profiles_list->currentText();
95     QMap< QString, QString > values = ProfilesDialog::getSettingsForProfile(currentProfile);
96     m_configMisc.p_size->setText(values.value("width") + "x" + values.value("height"));
97     m_configMisc.p_fps->setText(values.value("frame_rate_num") + "/" + values.value("frame_rate_den"));
98     m_configMisc.p_aspect->setText(values.value("sample_aspect_num") + "/" + values.value("sample_aspect_den"));
99     m_configMisc.p_display->setText(values.value("display_aspect_num") + "/" + values.value("display_aspect_den"));
100     if (values.value("progressive").toInt() == 0) m_configMisc.p_progressive->setText(i18n("Interlaced"));
101     else m_configMisc.p_progressive->setText(i18n("Progressive"));
102 }
103
104
105 #include "kdenlivesettingsdialog.moc"
106
107