]> git.sesse.net Git - kdenlive/blob - src/slideshowclip.cpp
Small GUI fix for clip properties dialog
[kdenlive] / src / slideshowclip.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 "slideshowclip.h"
21 #include "kdenlivesettings.h"
22
23 #include <KStandardDirs>
24 #include <KDebug>
25 #include <KFileItem>
26
27 #include <QDir>
28
29 SlideshowClip::SlideshowClip(Timecode tc, QWidget * parent) :
30         QDialog(parent),
31         m_count(0),
32         m_timecode(tc)
33 {
34     setFont(KGlobalSettings::toolBarFont());
35     setWindowTitle(i18n("Add Slideshow Clip"));
36     m_view.setupUi(this);
37     m_view.clip_name->setText(i18n("Slideshow Clip"));
38     m_view.folder_url->setMode(KFile::Directory);
39     m_view.icon_list->setIconSize(QSize(50, 50));
40     connect(m_view.folder_url, SIGNAL(textChanged(const QString &)), this, SLOT(parseFolder()));
41     connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder()));
42
43     connect(m_view.slide_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLuma(int)));
44     connect(m_view.luma_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLumaFile(int)));
45
46     m_view.image_type->addItem("JPG (*.jpg)", "jpg");
47     m_view.image_type->addItem("JPEG (*.jpeg)", "jpeg");
48     m_view.image_type->addItem("PNG (*.png)", "png");
49     m_view.image_type->addItem("BMP (*.bmp)", "bmp");
50     m_view.image_type->addItem("GIF (*.gif)", "gif");
51     m_view.image_type->addItem("TGA (*.tga)", "tga");
52     m_view.image_type->addItem("TIFF (*.tiff)", "tiff");
53     m_view.image_type->addItem("Open EXR (*.exr)", "exr");
54     m_view.clip_duration->setText(KdenliveSettings::image_duration());
55     m_view.luma_duration->setText("00:00:00:24");
56     m_view.folder_url->setUrl(QDir::homePath());
57
58     m_view.clip_duration_format->addItem(i18n("hh:mm:ss::ff"));
59     m_view.clip_duration_format->addItem(i18n("Frames"));
60     connect(m_view.clip_duration_format, SIGNAL(activated(int)), this, SLOT(slotUpdateDurationFormat(int)));
61     m_view.clip_duration_frames->setHidden(true);
62     m_view.luma_duration_frames->setHidden(true);
63
64     // Check for Kdenlive installed luma files
65     QStringList filters;
66     filters << "*.pgm" << "*.png";
67
68     QStringList customLumas = KGlobal::dirs()->findDirs("appdata", "lumas");
69     foreach(const QString &folder, customLumas) {
70         QStringList filesnames = QDir(folder).entryList(filters, QDir::Files);
71         foreach(const QString &fname, filesnames) {
72             m_view.luma_file->addItem(KIcon(folder + '/' + fname), fname, folder + '/' + fname);
73         }
74     }
75
76     // Check for MLT lumas
77     QString profilePath = KdenliveSettings::mltpath();
78     QString folder = profilePath.section('/', 0, -3);
79     folder.append("/lumas/PAL"); // TODO: cleanup the PAL / NTSC mess in luma files
80     QDir lumafolder(folder);
81     QStringList filesnames = lumafolder.entryList(filters, QDir::Files);
82     foreach(const QString &fname, filesnames) {
83         m_view.luma_file->addItem(KIcon(folder + '/' + fname), fname, folder + '/' + fname);
84     }
85
86     //adjustSize();
87 }
88
89 void SlideshowClip::slotEnableLuma(int state)
90 {
91     bool enable = false;
92     if (state == Qt::Checked) enable = true;
93     m_view.luma_duration->setEnabled(enable);
94     m_view.luma_duration_frames->setEnabled(enable);
95     m_view.luma_fade->setEnabled(enable);
96     if (enable) {
97         m_view.luma_file->setEnabled(m_view.luma_fade->isChecked());
98     } else m_view.luma_file->setEnabled(false);
99     m_view.label_softness->setEnabled(m_view.luma_fade->isChecked() && enable);
100     m_view.luma_softness->setEnabled(m_view.label_softness->isEnabled());
101 }
102
103 void SlideshowClip::slotEnableLumaFile(int state)
104 {
105     bool enable = false;
106     if (state == Qt::Checked) enable = true;
107     m_view.luma_file->setEnabled(enable);
108     m_view.luma_softness->setEnabled(enable);
109     m_view.label_softness->setEnabled(enable);
110 }
111
112 void SlideshowClip::parseFolder()
113 {
114     m_view.icon_list->clear();
115     QDir dir(m_view.folder_url->url().path());
116
117     QStringList filters;
118     QString filter = m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
119     filters << "*." + filter;
120     // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers
121     // << "*.jpeg";
122
123     dir.setNameFilters(filters);
124     const QStringList result = dir.entryList(QDir::Files);
125     m_count = result.count();
126     if (m_count == 0) m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
127     else m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
128     m_view.label_info->setText(i18n("%1 images found", m_count));
129     QListWidgetItem *item;
130     int i = 0;
131     KIcon unknownicon("unknown");
132     foreach(const QString &path, result) {
133         i++;
134         if (i < 80) {
135             QIcon icon(dir.filePath(path));
136             item = new QListWidgetItem(icon, KUrl(path).fileName());
137         } else {
138             item = new QListWidgetItem(unknownicon, KUrl(path).fileName());
139             item->setData(Qt::UserRole, dir.filePath(path));
140         }
141         m_view.icon_list->addItem(item);
142     }
143     if (m_count >= 80) connect(m_view.icon_list, SIGNAL(currentRowChanged(int)), this, SLOT(slotSetItemIcon(int)));
144     m_view.icon_list->setCurrentRow(0);
145 }
146
147 void SlideshowClip::slotSetItemIcon(int row)
148 {
149     QListWidgetItem * item = m_view.icon_list->item(row);
150     if (item) {
151         QString path = item->data(Qt::UserRole).toString();
152         if (!path.isEmpty()) {
153             KIcon icon(path);
154             item->setIcon(icon);
155             item->setData(Qt::UserRole, QString());
156         }
157     }
158 }
159
160 QString SlideshowClip::selectedPath() const
161 {
162     QString extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString();
163     return m_view.folder_url->url().path() + extension;
164 }
165
166
167 QString SlideshowClip::clipName() const
168 {
169     return m_view.clip_name->text();
170 }
171
172 QString SlideshowClip::clipDuration() const
173 {
174     if (m_view.clip_duration_format->currentIndex() == 1) {
175         // we are in frames mode
176         return m_timecode.getTimecodeFromFrames(m_view.clip_duration_frames->value());
177     }
178     return m_view.clip_duration->text();
179 }
180
181 int SlideshowClip::imageCount() const
182 {
183     return m_count;
184 }
185
186 int SlideshowClip::softness() const
187 {
188     return m_view.luma_softness->value();
189 }
190
191 bool SlideshowClip::loop() const
192 {
193     return m_view.slide_loop->isChecked();
194 }
195
196 bool SlideshowClip::fade() const
197 {
198     return m_view.slide_fade->isChecked();
199 }
200
201 QString SlideshowClip::lumaDuration() const
202 {
203     if (m_view.clip_duration_format->currentIndex() == 1) {
204         // we are in frames mode
205         return m_timecode.getTimecodeFromFrames(m_view.luma_duration_frames->value());
206     }
207     return m_view.luma_duration->text();
208 }
209
210 QString SlideshowClip::lumaFile() const
211 {
212     if (!m_view.luma_fade->isChecked() || !m_view.luma_file->isEnabled()) return QString();
213     return m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString();
214 }
215
216 void SlideshowClip::slotUpdateDurationFormat(int ix)
217 {
218     bool framesFormat = ix == 1;
219     if (framesFormat) {
220         // switching to frames count, update widget
221         m_view.clip_duration_frames->setValue(m_timecode.getFrameCount(m_view.clip_duration->text(), m_timecode.fps()));
222         m_view.luma_duration_frames->setValue(m_timecode.getFrameCount(m_view.luma_duration->text(), m_timecode.fps()));
223     } else {
224         // switching to timecode format
225         m_view.clip_duration->setText(m_timecode.getTimecodeFromFrames(m_view.clip_duration_frames->value()));
226         m_view.luma_duration->setText(m_timecode.getTimecodeFromFrames(m_view.luma_duration_frames->value()));
227     }
228     m_view.clip_duration_frames->setHidden(!framesFormat);
229     m_view.clip_duration->setHidden(framesFormat);
230     m_view.luma_duration_frames->setHidden(!framesFormat);
231     m_view.luma_duration->setHidden(framesFormat);
232 }
233
234 #include "slideshowclip.moc"
235
236