]> git.sesse.net Git - kdenlive/blob - src/projectsettings.cpp
Reindent the codebase using 'linux' bracket placement.
[kdenlive] / src / projectsettings.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 "projectsettings.h"
21 #include "kdenlivesettings.h"
22 #include "profilesdialog.h"
23
24 #include <KStandardDirs>
25 #include <KDebug>
26
27 #include <QDir>
28
29 ProjectSettings::ProjectSettings(int videotracks, int audiotracks, const QString projectPath, bool readOnlyTracks, QWidget * parent): QDialog(parent), m_isCustomProfile(false)
30 {
31     m_view.setupUi(this);
32
33     QMap <QString, QString> profilesInfo = ProfilesDialog::getProfilesInfo();
34     QMapIterator<QString, QString> i(profilesInfo);
35     while (i.hasNext()) {
36         i.next();
37         m_view.profiles_list->addItem(i.key(), i.value());
38     }
39     m_view.project_folder->setMode(KFile::Directory);
40     m_view.project_folder->setPath(projectPath);
41     QString currentProf = KdenliveSettings::current_profile();
42
43     for (int i = 0; i < m_view.profiles_list->count(); i++) {
44         if (m_view.profiles_list->itemData(i).toString() == currentProf) {
45             m_view.profiles_list->setCurrentIndex(i);
46             break;
47         }
48     }
49
50     buttonOk = m_view.buttonBox->button(QDialogButtonBox::Ok);
51     //buttonOk->setEnabled(false);
52     m_view.audio_thumbs->setChecked(KdenliveSettings::audiothumbnails());
53     m_view.video_thumbs->setChecked(KdenliveSettings::videothumbnails());
54     m_view.audio_tracks->setValue(audiotracks);
55     m_view.video_tracks->setValue(videotracks);
56     if (readOnlyTracks) {
57         m_view.video_tracks->setEnabled(false);
58         m_view.audio_tracks->setEnabled(false);
59     }
60     slotUpdateDisplay();
61     connect(m_view.profiles_list, SIGNAL(currentIndexChanged(int)), this, SLOT(slotUpdateDisplay()));
62     connect(m_view.project_folder, SIGNAL(textChanged(const QString &)), this, SLOT(slotUpdateButton(const QString &)));
63 }
64
65
66 void ProjectSettings::slotUpdateDisplay()
67 {
68     QString currentProfile = m_view.profiles_list->itemData(m_view.profiles_list->currentIndex()).toString();
69     QMap< QString, QString > values = ProfilesDialog::getSettingsFromFile(currentProfile);
70     m_view.p_size->setText(values.value("width") + 'x' + values.value("height"));
71     m_view.p_fps->setText(values.value("frame_rate_num") + '/' + values.value("frame_rate_den"));
72     m_view.p_aspect->setText(values.value("sample_aspect_num") + '/' + values.value("sample_aspect_den"));
73     m_view.p_display->setText(values.value("display_aspect_num") + '/' + values.value("display_aspect_den"));
74     if (values.value("progressive").toInt() == 0) m_view.p_progressive->setText(i18n("Interlaced"));
75     else m_view.p_progressive->setText(i18n("Progressive"));
76 }
77
78 void ProjectSettings::slotUpdateButton(const QString &path)
79 {
80     if (path.isEmpty()) buttonOk->setEnabled(false);
81     else buttonOk->setEnabled(true);
82 }
83
84 QString ProjectSettings::selectedProfile() const
85 {
86     return m_view.profiles_list->itemData(m_view.profiles_list->currentIndex()).toString();
87 }
88
89 KUrl ProjectSettings::selectedFolder() const
90 {
91     return m_view.project_folder->url();
92 }
93
94 QPoint ProjectSettings::tracks()
95 {
96     QPoint p;
97     p.setX(m_view.video_tracks->value());
98     p.setY(m_view.audio_tracks->value());
99     return p;
100 }
101
102 bool ProjectSettings::enableVideoThumbs() const
103 {
104     return m_view.video_thumbs->isChecked();
105 }
106
107 bool ProjectSettings::enableAudioThumbs() const
108 {
109     return m_view.audio_thumbs->isChecked();
110 }
111
112 #include "projectsettings.moc"
113
114