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