]> git.sesse.net Git - kdenlive/blob - src/kdenlivesettingsdialog.cpp
Reindent all source files
[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"), "misc");
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"), "env");
47
48     QStringList profilesNames = ProfilesDialog::getProfileNames();
49     m_configMisc.profiles_list->addItems(profilesNames);
50     m_defaulfProfile = ProfilesDialog::getSettingsFromFile(KdenliveSettings::default_profile()).value("description");
51     if (profilesNames.contains(m_defaulfProfile)) m_configMisc.profiles_list->setCurrentItem(m_defaulfProfile);
52
53     slotUpdateDisplay();
54     connect(m_configMisc.profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
55 }
56
57 KdenliveSettingsDialog::~KdenliveSettingsDialog() {}
58
59
60 bool KdenliveSettingsDialog::hasChanged() {
61     kDebug() << "// // // KCONFIG hasChanged called";
62     if (m_configMisc.profiles_list->currentText() != m_defaulfProfile) return true;
63     return KConfigDialog::hasChanged();
64 }
65
66 void KdenliveSettingsDialog::slotUpdateDisplay() {
67     QString currentProfile = m_configMisc.profiles_list->currentText();
68     QMap< QString, QString > values = ProfilesDialog::getSettingsForProfile(currentProfile);
69     m_configMisc.p_size->setText(values.value("width") + "x" + values.value("height"));
70     m_configMisc.p_fps->setText(values.value("frame_rate_num") + "/" + values.value("frame_rate_den"));
71     m_configMisc.p_aspect->setText(values.value("sample_aspect_num") + "/" + values.value("sample_aspect_den"));
72     m_configMisc.p_display->setText(values.value("display_aspect_num") + "/" + values.value("display_aspect_den"));
73     if (values.value("progressive").toInt() == 0) m_configMisc.p_progressive->setText(i18n("Interlaced"));
74     else m_configMisc.p_progressive->setText(i18n("Progressive"));
75 }
76
77
78 #include "kdenlivesettingsdialog.moc"
79
80