X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fclipproperties.cpp;h=4c8332235e7f97bb3ed0dfd967aaac9b2c86b3d2;hb=e3b4bf11679a3a195be8896f465b1616581f1fb3;hp=8b6c6a314c76de0ad9a44c084ee8b2f36383432c;hpb=7fff167fb95bb6b13b138b8d3f7b68da8a030473;p=kdenlive diff --git a/src/clipproperties.cpp b/src/clipproperties.cpp index 8b6c6a31..4c833223 100644 --- a/src/clipproperties.cpp +++ b/src/clipproperties.cpp @@ -17,16 +17,17 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * ***************************************************************************/ -#include + +#include "clipproperties.h" +#include "kdenlivesettings.h" +#include "kthumb.h" +#include "markerdialog.h" #include #include #include -#include "kdenlivesettings.h" -#include "clipproperties.h" -#include "kthumb.h" -#include "markerdialog.h" +#include static const int VIDEOTAB = 0; static const int AUDIOTAB = 1; @@ -34,14 +35,18 @@ static const int COLORTAB = 2; static const int SLIDETAB = 3; static const int IMAGETAB = 4; static const int MARKERTAB = 5; -static const int ADVANCEDTAB = 6; - -static const int TYPE_JPEG = 0; -static const int TYPE_PNG = 1; -static const int TYPE_BMP = 2; -static const int TYPE_GIF = 3; - -ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent): QDialog(parent), m_tc(tc), m_clip(clip), m_fps(fps), m_clipNeedsRefresh(false), m_count(0) { +static const int METATAB = 6; +static const int ADVANCEDTAB = 7; + +ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidget * parent) : + QDialog(parent), + m_clip(clip), + m_tc(tc), + m_fps(fps), + m_count(0), + m_clipNeedsRefresh(false), + m_clipNeedsReLoad(false) +{ setFont(KGlobalSettings::toolBarFont()); m_view.setupUi(this); KUrl url = m_clip->fileURL(); @@ -49,6 +54,70 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg m_view.clip_description->setText(m_clip->description()); QMap props = m_clip->properties(); + m_view.clip_force_out->setHidden(true); + m_view.clip_out->setHidden(true); + + if (props.contains("force_aspect_ratio") && props.value("force_aspect_ratio").toDouble() > 0) { + m_view.clip_force_ar->setChecked(true); + m_view.clip_ar->setEnabled(true); + m_view.clip_ar->setValue(props.value("force_aspect_ratio").toDouble()); + } + + if (props.contains("force_fps") && props.value("force_fps").toDouble() > 0) { + m_view.clip_force_framerate->setChecked(true); + m_view.clip_framerate->setEnabled(true); + m_view.clip_framerate->setValue(props.value("force_fps").toDouble()); + } + + if (props.contains("force_progressive")) { + m_view.clip_force_progressive->setChecked(true); + m_view.clip_progressive->setEnabled(true); + m_view.clip_progressive->setValue(props.value("force_progressive").toInt()); + } + + if (props.contains("threads") && props.value("threads").toInt() != 1) { + m_view.clip_force_threads->setChecked(true); + m_view.clip_threads->setEnabled(true); + m_view.clip_threads->setValue(props.value("threads").toInt()); + } + + if (props.contains("video_index") && props.value("video_index").toInt() != 0) { + m_view.clip_force_vindex->setChecked(true); + m_view.clip_vindex->setEnabled(true); + m_view.clip_vindex->setValue(props.value("video_index").toInt()); + } + + if (props.contains("audio_index") && props.value("audio_index").toInt() != 0) { + m_view.clip_force_aindex->setChecked(true); + m_view.clip_aindex->setEnabled(true); + m_view.clip_aindex->setValue(props.value("audio_index").toInt()); + } + + if (props.contains("audio_max")) { + m_view.clip_aindex->setMaximum(props.value("audio_max").toInt()); + } + + if (props.contains("video_max")) { + m_view.clip_vindex->setMaximum(props.value("video_max").toInt()); + } + + // Check for Metadata + QMap meta = m_clip->metadata(); + QMap::const_iterator i = meta.constBegin(); + while (i != meta.constEnd()) { + QTreeWidgetItem *metaitem = new QTreeWidgetItem(m_view.metadata_list); + metaitem->setText(0, i.key()); //i18n(i.key().section('.', 2, 3).toUtf8().data())); + metaitem->setText(1, i.value()); + ++i; + } + + connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar, SLOT(setEnabled(bool))); + connect(m_view.clip_force_framerate, SIGNAL(toggled(bool)), m_view.clip_framerate, SLOT(setEnabled(bool))); + connect(m_view.clip_force_progressive, SIGNAL(toggled(bool)), m_view.clip_progressive, SLOT(setEnabled(bool))); + connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool))); + connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool))); + connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool))); + if (props.contains("audiocodec")) m_view.clip_acodec->setText(props.value("audiocodec")); if (props.contains("frequency")) @@ -57,6 +126,14 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg m_view.clip_channels->setText(props.value("channels")); CLIPTYPE t = m_clip->clipType(); + if (t != AUDIO && t != AV) { + m_view.clip_force_aindex->setEnabled(false); + } + + if (t != VIDEO && t != AV) { + m_view.clip_force_vindex->setEnabled(false); + } + if (t == IMAGE) { m_view.tabWidget->removeTab(SLIDETAB); m_view.tabWidget->removeTab(COLORTAB); @@ -66,56 +143,115 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg m_view.image_size->setText(props.value("frame_size")); if (props.contains("transparency")) m_view.image_transparency->setChecked(props.value("transparency").toInt()); + int width = 180.0 * KdenliveSettings::project_display_ratio(); + if (width % 2 == 1) width++; + m_view.clip_thumb->setPixmap(QPixmap(url.path()).scaled(QSize(width, 180), Qt::KeepAspectRatio)); } else if (t == COLOR) { m_view.clip_path->setEnabled(false); + m_view.tabWidget->removeTab(METATAB); m_view.tabWidget->removeTab(IMAGETAB); m_view.tabWidget->removeTab(SLIDETAB); m_view.tabWidget->removeTab(AUDIOTAB); m_view.tabWidget->removeTab(VIDEOTAB); m_view.clip_thumb->setHidden(true); - m_view.clip_color->setColor(QColor("#" + props.value("colour").right(8).left(6))); + m_view.clip_color->setColor(QColor('#' + props.value("colour").right(8).left(6))); } else if (t == SLIDESHOW) { - m_view.clip_path->setText(url.directory()); + bool isMime = true; + if (url.fileName().startsWith(".all.")) { + // the image sequence is defined by mimetype + m_view.clip_path->setText(url.directory()); + } else { + // the image sequence is defined by pattern + m_view.slide_type_label->setHidden(true); + m_view.image_type->setHidden(true); + m_view.clip_path->setText(url.path()); + isMime = false; + } + + m_view.tabWidget->removeTab(METATAB); m_view.tabWidget->removeTab(IMAGETAB); m_view.tabWidget->removeTab(COLORTAB); m_view.tabWidget->removeTab(AUDIOTAB); m_view.tabWidget->removeTab(VIDEOTAB); - QStringList types; - types << "JPG" << "PNG" << "BMP" << "GIF"; - m_view.image_type->addItems(types); + + //WARNING: Keep in sync with slideshowclip.cpp + m_view.image_type->addItem("JPG (*.jpg)", "jpg"); + m_view.image_type->addItem("JPEG (*.jpeg)", "jpeg"); + m_view.image_type->addItem("PNG (*.png)", "png"); + m_view.image_type->addItem("BMP (*.bmp)", "bmp"); + m_view.image_type->addItem("GIF (*.gif)", "gif"); + m_view.image_type->addItem("TGA (*.tga)", "tga"); + m_view.image_type->addItem("TIFF (*.tiff)", "tiff"); + m_view.image_type->addItem("Open EXR (*.exr)", "exr"); + m_view.animation->addItem(i18n("None"), QString()); + m_view.animation->addItem(i18n("Pan"), "Pan"); + m_view.animation->addItem(i18n("Pan, low-pass"), "Pan, low-pass"); + m_view.animation->addItem(i18n("Pan and zoom"), "Pan and zoom"); + m_view.animation->addItem(i18n("Pan and zoom, low-pass"), "Pan and zoom, low-pass"); + m_view.animation->addItem(i18n("Zoom"), "Zoom"); + m_view.animation->addItem(i18n("Zoom, low-pass"), "Zoom, low-pass"); + m_view.slide_loop->setChecked(props.value("loop").toInt()); + m_view.slide_crop->setChecked(props.value("crop").toInt()); m_view.slide_fade->setChecked(props.value("fade").toInt()); m_view.luma_softness->setValue(props.value("softness").toInt()); + if (!props.value("animation").isEmpty()) + m_view.animation->setCurrentItem(props.value("animation")); + else + m_view.animation->setCurrentIndex(0); QString path = props.value("resource"); - if (path.endsWith("png")) m_view.image_type->setCurrentIndex(TYPE_PNG); - else if (path.endsWith("bmp")) m_view.image_type->setCurrentIndex(TYPE_BMP); - else if (path.endsWith("gif")) m_view.image_type->setCurrentIndex(TYPE_GIF); + QString ext = path.section('.', -1); + for (int i = 0; i < m_view.image_type->count(); i++) { + if (m_view.image_type->itemData(i).toString() == ext) { + m_view.image_type->setCurrentIndex(i); + break; + } + } m_view.slide_duration->setText(tc.getTimecodeFromFrames(props.value("ttl").toInt())); + + m_view.slide_duration_format->addItem(i18n("hh:mm:ss::ff")); + m_view.slide_duration_format->addItem(i18n("Frames")); + connect(m_view.slide_duration_format, SIGNAL(activated(int)), this, SLOT(slotUpdateDurationFormat(int))); + m_view.slide_duration_frames->setHidden(true); + m_view.luma_duration_frames->setHidden(true); + parseFolder(); m_view.luma_duration->setText(tc.getTimecodeFromFrames(props.value("luma_duration").toInt())); QString lumaFile = props.value("luma_file"); + + // Check for Kdenlive installed luma files + QStringList filters; + filters << "*.pgm" << "*.png"; + + QStringList customLumas = KGlobal::dirs()->findDirs("appdata", "lumas"); + foreach(const QString &folder, customLumas) { + QStringList filesnames = QDir(folder).entryList(filters, QDir::Files); + foreach(const QString &fname, filesnames) { + QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname; + m_view.luma_file->addItem(KIcon(filePath), fname, filePath); + } + } + + // Check for MLT lumas QString profilePath = KdenliveSettings::mltpath(); - profilePath = profilePath.section('/', 0, -3); - profilePath += "/lumas/PAL/"; - - QDir dir(profilePath); - QStringList filter; - filter << "*.pgm"; - const QStringList result = dir.entryList(filter, QDir::Files); - QStringList imagefiles; - QStringList imagenamelist; - int current; - foreach(const QString file, result) { - m_view.luma_file->addItem(KIcon(profilePath + file), file, profilePath + file); - if (!lumaFile.isEmpty() && lumaFile == QString(profilePath + file)) - current = m_view.luma_file->count() - 1; + QString folder = profilePath.section('/', 0, -3); + folder.append("/lumas/PAL"); // TODO: cleanup the PAL / NTSC mess in luma files + QDir lumafolder(folder); + QStringList filesnames = lumafolder.entryList(filters, QDir::Files); + foreach(const QString &fname, filesnames) { + QString filePath = KUrl(folder).path(KUrl::AddTrailingSlash) + fname; + m_view.luma_file->addItem(KIcon(filePath), fname, filePath); } if (!lumaFile.isEmpty()) { m_view.slide_luma->setChecked(true); - m_view.luma_file->setCurrentIndex(current); - } + m_view.luma_file->setCurrentIndex(m_view.luma_file->findData(lumaFile)); + } else m_view.luma_file->setEnabled(false); + slotEnableLuma(m_view.slide_fade->checkState()); + slotEnableLumaFile(m_view.slide_luma->checkState()); + connect(m_view.slide_fade, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLuma(int))); + connect(m_view.slide_luma, SIGNAL(stateChanged(int)), this, SLOT(slotEnableLumaFile(int))); connect(m_view.image_type, SIGNAL(currentIndexChanged(int)), this, SLOT(parseFolder())); } else if (t != AUDIO) { @@ -126,12 +262,15 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg m_view.clip_size->setText(props.value("frame_size")); if (props.contains("videocodec")) m_view.clip_vcodec->setText(props.value("videocodec")); - if (props.contains("fps")) + if (props.contains("fps")) { m_view.clip_fps->setText(props.value("fps")); + if (!m_view.clip_framerate->isEnabled()) m_view.clip_framerate->setValue(props.value("fps").toDouble()); + } if (props.contains("aspect_ratio")) m_view.clip_ratio->setText(props.value("aspect_ratio")); - - QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), 240, 180); + int width = 180.0 * KdenliveSettings::project_display_ratio(); + if (width % 2 == 1) width++; + QPixmap pix = m_clip->thumbProducer()->getImage(url, m_clip->getClipThumbFrame(), width, 180); m_view.clip_thumb->setPixmap(pix); if (t == IMAGE || t == VIDEO) m_view.tabWidget->removeTab(AUDIOTAB); } else { @@ -141,11 +280,19 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg m_view.tabWidget->removeTab(VIDEOTAB); m_view.clip_thumb->setHidden(true); } - if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true); - KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true); - m_view.clip_filesize->setText(KIO::convertSize(f.size())); - m_view.clip_duration->setText(tc.getTimecode(m_clip->duration(), m_fps)); + if (t != SLIDESHOW && t != COLOR) { + KFileItem f(KFileItem::Unknown, KFileItem::Unknown, url, true); + m_view.clip_filesize->setText(KIO::convertSize(f.size())); + } else { + m_view.clip_filesize->setHidden(true); + m_view.label_size->setHidden(true); + } + m_view.clip_duration->setInputMask(""); + m_view.clip_duration->setValidator(tc.validator()); + m_view.clip_duration->setText(tc.getTimecode(m_clip->duration())); + if (t != IMAGE && t != COLOR && t != TEXT) m_view.clip_duration->setReadOnly(true); + else connect(m_view.clip_duration, SIGNAL(editingFinished()), this, SLOT(slotCheckMaxLength())); // markers m_view.marker_new->setIcon(KIcon("document-new")); @@ -161,41 +308,168 @@ ClipProperties::ClipProperties(DocClipBase *clip, Timecode tc, double fps, QWidg connect(m_view.marker_delete, SIGNAL(clicked()), this, SLOT(slotDeleteMarker())); connect(m_view.markers_list, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(slotEditMarker())); - adjustSize(); + //adjustSize(); } -void ClipProperties::slotFillMarkersList() { + +// Used for multiple clips editing +ClipProperties::ClipProperties(QList cliplist, Timecode tc, QMap commonproperties, QWidget * parent) : + QDialog(parent), + m_clip(NULL), + m_tc(tc), + m_fps(0), + m_count(0), + m_clipNeedsRefresh(false), + m_clipNeedsReLoad(false) +{ + setFont(KGlobalSettings::toolBarFont()); + m_view.setupUi(this); + QMap props = cliplist.at(0)->properties(); + m_old_props = commonproperties; + + if (commonproperties.contains("force_aspect_ratio") && !commonproperties.value("force_aspect_ratio").isEmpty() && commonproperties.value("force_aspect_ratio").toDouble() > 0) { + m_view.clip_force_ar->setChecked(true); + m_view.clip_ar->setEnabled(true); + m_view.clip_ar->setValue(commonproperties.value("force_aspect_ratio").toDouble()); + } + + if (commonproperties.contains("force_fps") && !commonproperties.value("force_fps").isEmpty() && commonproperties.value("force_fps").toDouble() > 0) { + m_view.clip_force_framerate->setChecked(true); + m_view.clip_framerate->setEnabled(true); + m_view.clip_framerate->setValue(commonproperties.value("force_fps").toDouble()); + } + + if (commonproperties.contains("force_progressive") && !commonproperties.value("force_progressive").isEmpty()) { + m_view.clip_force_progressive->setChecked(true); + m_view.clip_progressive->setEnabled(true); + m_view.clip_progressive->setValue(commonproperties.value("force_progressive").toInt()); + } + + if (commonproperties.contains("threads") && !commonproperties.value("threads").isEmpty() && commonproperties.value("threads").toInt() != 1) { + m_view.clip_force_threads->setChecked(true); + m_view.clip_threads->setEnabled(true); + m_view.clip_threads->setValue(commonproperties.value("threads").toInt()); + } + + if (commonproperties.contains("video_index") && !commonproperties.value("video_index").isEmpty() && commonproperties.value("video_index").toInt() != 0) { + m_view.clip_force_vindex->setChecked(true); + m_view.clip_vindex->setEnabled(true); + m_view.clip_vindex->setValue(commonproperties.value("video_index").toInt()); + } + + if (commonproperties.contains("audio_index") && !commonproperties.value("audio_index").isEmpty() && commonproperties.value("audio_index").toInt() != 0) { + m_view.clip_force_aindex->setChecked(true); + m_view.clip_aindex->setEnabled(true); + m_view.clip_aindex->setValue(commonproperties.value("audio_index").toInt()); + } + + if (props.contains("audio_max")) { + m_view.clip_aindex->setMaximum(props.value("audio_max").toInt()); + } + + if (props.contains("video_max")) { + m_view.clip_vindex->setMaximum(props.value("video_max").toInt()); + } + + connect(m_view.clip_force_ar, SIGNAL(toggled(bool)), m_view.clip_ar, SLOT(setEnabled(bool))); + connect(m_view.clip_force_progressive, SIGNAL(toggled(bool)), m_view.clip_progressive, SLOT(setEnabled(bool))); + connect(m_view.clip_force_threads, SIGNAL(toggled(bool)), m_view.clip_threads, SLOT(setEnabled(bool))); + connect(m_view.clip_force_vindex, SIGNAL(toggled(bool)), m_view.clip_vindex, SLOT(setEnabled(bool))); + connect(m_view.clip_force_aindex, SIGNAL(toggled(bool)), m_view.clip_aindex, SLOT(setEnabled(bool))); + connect(m_view.clip_force_out, SIGNAL(toggled(bool)), m_view.clip_out, SLOT(setEnabled(bool))); + + m_view.tabWidget->removeTab(METATAB); + m_view.tabWidget->removeTab(MARKERTAB); + m_view.tabWidget->removeTab(IMAGETAB); + m_view.tabWidget->removeTab(SLIDETAB); + m_view.tabWidget->removeTab(COLORTAB); + m_view.tabWidget->removeTab(AUDIOTAB); + m_view.tabWidget->removeTab(VIDEOTAB); + + m_view.clip_path->setHidden(true); + m_view.label_path->setHidden(true); + m_view.label_description->setHidden(true); + m_view.label_size->setHidden(true); + m_view.clip_filesize->setHidden(true); + m_view.clip_filesize->setHidden(true); + m_view.clip_path->setHidden(true); + m_view.clip_description->setHidden(true); + m_view.clip_thumb->setHidden(true); + m_view.label_duration->setHidden(true); + m_view.clip_duration->setHidden(true); + + if (commonproperties.contains("out")) { + if (commonproperties.value("out").toInt() > 0) { + m_view.clip_force_out->setChecked(true); + m_view.clip_out->setText(m_tc.getTimecodeFromFrames(commonproperties.value("out").toInt())); + } else m_view.clip_out->setText(KdenliveSettings::image_duration()); + } else { + m_view.clip_force_out->setHidden(true); + m_view.clip_out->setHidden(true); + } +} + + + +void ClipProperties::slotEnableLuma(int state) +{ + bool enable = false; + if (state == Qt::Checked) enable = true; + m_view.luma_duration->setEnabled(enable); + m_view.luma_duration_frames->setEnabled(enable); + m_view.slide_luma->setEnabled(enable); + if (enable) { + m_view.luma_file->setEnabled(m_view.slide_luma->isChecked()); + } else m_view.luma_file->setEnabled(false); + m_view.label_softness->setEnabled(m_view.slide_luma->isChecked() && enable); + m_view.luma_softness->setEnabled(m_view.label_softness->isEnabled()); +} + +void ClipProperties::slotEnableLumaFile(int state) +{ + bool enable = false; + if (state == Qt::Checked) enable = true; + m_view.luma_file->setEnabled(enable); + m_view.luma_softness->setEnabled(enable); + m_view.label_softness->setEnabled(enable); +} + +void ClipProperties::slotFillMarkersList() +{ m_view.markers_list->clear(); QList < CommentedTime > marks = m_clip->commentedSnapMarkers(); - for (uint count = 0; count < marks.count(); ++count) { - QString time = m_tc.getTimecode(marks[count].time(), m_tc.fps()); + for (int count = 0; count < marks.count(); ++count) { + QString time = m_tc.getTimecode(marks[count].time()); QStringList itemtext; itemtext << time << marks[count].comment(); (void) new QTreeWidgetItem(m_view.markers_list, itemtext); } } -void ClipProperties::slotAddMarker() { +void ClipProperties::slotAddMarker() +{ CommentedTime marker(GenTime(), i18n("Marker")); - MarkerDialog d(m_clip, marker, m_tc, this); + MarkerDialog d(m_clip, marker, m_tc, i18n("Add Marker"), this); if (d.exec() == QDialog::Accepted) { emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment()); } QTimer::singleShot(500, this, SLOT(slotFillMarkersList())); } -void ClipProperties::slotEditMarker() { +void ClipProperties::slotEditMarker() +{ QList < CommentedTime > marks = m_clip->commentedSnapMarkers(); int pos = m_view.markers_list->currentIndex().row(); if (pos < 0 || pos > marks.count() - 1) return; - MarkerDialog d(m_clip, marks.at(pos), m_tc, this); + MarkerDialog d(m_clip, marks.at(pos), m_tc, i18n("Edit Marker"), this); if (d.exec() == QDialog::Accepted) { emit addMarker(m_clip->getId(), d.newMarker().time(), d.newMarker().comment()); } QTimer::singleShot(500, this, SLOT(slotFillMarkersList())); } -void ClipProperties::slotDeleteMarker() { +void ClipProperties::slotDeleteMarker() +{ QList < CommentedTime > marks = m_clip->commentedSnapMarkers(); int pos = m_view.markers_list->currentIndex().row(); if (pos < 0 || pos > marks.count() - 1) return; @@ -204,131 +478,279 @@ void ClipProperties::slotDeleteMarker() { QTimer::singleShot(500, this, SLOT(slotFillMarkersList())); } -const QString &ClipProperties::clipId() const { +const QString &ClipProperties::clipId() const +{ return m_clip->getId(); } -QMap ClipProperties::properties() { +QMap ClipProperties::properties() +{ QMap props; - props["description"] = m_view.clip_description->text(); - CLIPTYPE t = m_clip->clipType(); + CLIPTYPE t = UNKNOWN; + if (m_clip != NULL) { + t = m_clip->clipType(); + m_old_props = m_clip->properties(); + } + + double aspect = m_view.clip_ar->value(); + if (m_view.clip_force_ar->isChecked()) { + if (aspect != m_old_props.value("force_aspect_ratio").toDouble()) { + props["force_aspect_ratio"] = QString::number(aspect); + m_clipNeedsRefresh = true; + } + } else if (m_old_props.contains("force_aspect_ratio")) { + props["force_aspect_ratio"].clear(); + m_clipNeedsRefresh = true; + } + + double fps = m_view.clip_framerate->value(); + if (m_view.clip_force_framerate->isChecked()) { + if (fps != m_old_props.value("force_fps").toDouble()) { + props["force_fps"] = QString::number(fps); + m_clipNeedsRefresh = true; + } + } else if (m_old_props.contains("force_fps")) { + props["force_fps"].clear(); + m_clipNeedsRefresh = true; + } + + int progressive = m_view.clip_progressive->value(); + if (m_view.clip_force_progressive->isChecked()) { + if (progressive != m_old_props.value("force_progressive").toInt()) { + props["force_progressive"] = QString::number(progressive); + } + } else if (m_old_props.contains("force_progressive")) { + props["force_progressive"].clear(); + } + + int threads = m_view.clip_threads->value(); + if (m_view.clip_force_threads->isChecked()) { + if (threads != m_old_props.value("threads").toInt()) { + props["threads"] = QString::number(threads); + } + } else if (m_old_props.contains("threads")) { + props["threads"].clear(); + } + + int vindex = m_view.clip_vindex->value(); + if (m_view.clip_force_vindex->isChecked()) { + if (vindex != m_old_props.value("video_index").toInt()) { + props["video_index"] = QString::number(vindex); + } + } else if (m_old_props.contains("video_index")) { + props["video_index"].clear(); + } + + int aindex = m_view.clip_aindex->value(); + if (m_view.clip_force_aindex->isChecked()) { + if (aindex != m_old_props.value("audio_index").toInt()) { + props["audio_index"] = QString::number(aindex); + } + } else if (m_old_props.contains("audio_index")) { + props["audio_index"].clear(); + } + + // If we adjust several clips, return now + if (m_clip == NULL) { + if (m_view.clip_out->isEnabled()) { + int duration = m_tc.getFrameCount(m_view.clip_out->text()); + if (duration != m_old_props.value("out").toInt()) { + props["out"] = QString::number(duration - 1); + } + } + return props; + } + + if (m_old_props.value("description") != m_view.clip_description->text()) + props["description"] = m_view.clip_description->text(); + if (t == COLOR) { - QMap old_props = m_clip->properties(); QString new_color = m_view.clip_color->color().name(); - if (new_color != QString("#" + old_props.value("colour").right(8).left(6))) { + if (new_color != QString('#' + m_old_props.value("colour").right(8).left(6))) { m_clipNeedsRefresh = true; props["colour"] = "0x" + new_color.right(6) + "ff"; } + int duration = m_tc.getFrameCount(m_view.clip_duration->text()); + if (duration != m_clip->duration().frames(m_fps)) { + props["out"] = QString::number(duration - 1); + } } else if (t == IMAGE) { - QMap old_props = m_clip->properties(); - if ((int) m_view.image_transparency->isChecked() != old_props.value("transparency").toInt()) { + if ((int) m_view.image_transparency->isChecked() != m_old_props.value("transparency").toInt()) { props["transparency"] = QString::number((int)m_view.image_transparency->isChecked()); - m_clipNeedsRefresh = true; + //m_clipNeedsRefresh = true; + } + int duration = m_tc.getFrameCount(m_view.clip_duration->text()); + if (duration != m_clip->duration().frames(m_fps)) { + props["out"] = QString::number(duration - 1); } } else if (t == SLIDESHOW) { - QMap old_props = m_clip->properties(); QString value = QString::number((int) m_view.slide_loop->isChecked()); - if (old_props.value("loop") != value) props["loop"] = value; + if (m_old_props.value("loop") != value) props["loop"] = value; + value = QString::number((int) m_view.slide_crop->isChecked()); + if (m_old_props.value("crop") != value) props["crop"] = value; value = QString::number((int) m_view.slide_fade->isChecked()); - if (old_props.value("fade") != value) props["fade"] = value; + if (m_old_props.value("fade") != value) props["fade"] = value; value = QString::number((int) m_view.luma_softness->value()); - if (old_props.value("softness") != value) props["softness"] = value; - - QString extension; - switch (m_view.image_type->currentIndex()) { - case TYPE_PNG: - extension = "/.all.png"; - break; - case TYPE_BMP: - extension = "/.all.bmp"; - break; - case TYPE_GIF: - extension = "/.all.gif"; - break; - default: - extension = "/.all.jpg"; - break; - } - QString new_path = m_view.clip_path->text() + extension; - if (new_path != old_props.value("resource")) { - m_clipNeedsRefresh = true; - props["resource"] = new_path; - kDebug() << "//// SLIDE EDIT, NEW:" << new_path << ", OLD; " << old_props.value("resource"); - } - int duration = m_tc.getFrameCount(m_view.slide_duration->text(), m_fps); - if (duration != old_props.value("ttl").toInt()) { + if (m_old_props.value("softness") != value) props["softness"] = value; + + bool isMime = !(m_view.clip_path->text().contains('%')); + if (isMime) { + QString extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString(); + QString new_path = m_view.clip_path->text() + extension; + if (new_path != m_old_props.value("resource")) { + m_clipNeedsReLoad = true; + props["resource"] = new_path; + kDebug() << "//// SLIDE EDIT, NEW:" << new_path << ", OLD; " << m_old_props.value("resource"); + } + } + int duration; + if (m_view.slide_duration_format->currentIndex() == 1) { + // we are in frames mode + duration = m_view.slide_duration_frames->value(); + } else duration = m_tc.getFrameCount(m_view.slide_duration->text()); + if (duration != m_old_props.value("ttl").toInt()) { m_clipNeedsRefresh = true; props["ttl"] = QString::number(duration); props["out"] = QString::number(duration * m_count); } - if (duration * m_count != old_props.value("out").toInt()) { + + if (duration * m_count - 1 != m_old_props.value("out").toInt()) { m_clipNeedsRefresh = true; - props["out"] = QString::number(duration * m_count); + props["out"] = QString::number(duration * m_count - 1); } if (m_view.slide_fade->isChecked()) { - int luma_duration = m_tc.getFrameCount(m_view.luma_duration->text(), m_fps); - if (luma_duration != old_props.value("luma_duration").toInt()) { + int luma_duration; + if (m_view.slide_duration_format->currentIndex() == 1) { + // we are in frames mode + luma_duration = m_view.luma_duration_frames->value(); + } else luma_duration = m_tc.getFrameCount(m_view.luma_duration->text()); + if (luma_duration != m_old_props.value("luma_duration").toInt()) { m_clipNeedsRefresh = true; props["luma_duration"] = QString::number(luma_duration); } QString lumaFile; if (m_view.slide_luma->isChecked()) lumaFile = m_view.luma_file->itemData(m_view.luma_file->currentIndex()).toString(); - if (lumaFile != old_props.value("luma_file")) { + if (lumaFile != m_old_props.value("luma_file")) { m_clipNeedsRefresh = true; props["luma_file"] = lumaFile; } } else { - if (old_props.value("luma_file") != QString()) { - props["luma_file"] = QString(); + if (!m_old_props.value("luma_file").isEmpty()) { + props["luma_file"].clear(); } } + QString animation = m_view.animation->itemData(m_view.animation->currentIndex()).toString(); + if (animation != m_old_props.value("animation")) { + if (animation.isEmpty()) { + props["animation"].clear(); + } else { + props["animation"] = animation; + } + m_clipNeedsRefresh = true; + } } return props; } -bool ClipProperties::needsTimelineRefresh() const { +bool ClipProperties::needsTimelineRefresh() const +{ return m_clipNeedsRefresh; } -void ClipProperties::parseFolder() { +bool ClipProperties::needsTimelineReload() const +{ + return m_clipNeedsReLoad; +} + + +void ClipProperties::parseFolder() +{ + QString path = m_view.clip_path->text(); + bool isMime = !(path.contains('%')); + if (!isMime) path = KUrl(path).directory(); + QDir dir(path); - QDir dir(m_view.clip_path->text()); QStringList filters; QString extension; - switch (m_view.image_type->currentIndex()) { - case TYPE_PNG: - filters << "*.png"; - extension = "/.all.png"; - break; - case TYPE_BMP: - filters << "*.bmp"; - extension = "/.all.bmp"; - break; - case TYPE_GIF: - filters << "*.gif"; - extension = "/.all.gif"; - break; - default: - filters << "*.jpg" << "*.jpeg"; - extension = "/.all.jpg"; - break; - } - - dir.setNameFilters(filters); + + if (isMime) { + // TODO: improve jpeg image detection with extension like jpeg, requires change in MLT image producers + filters << "*." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString(); + extension = "/.all." + m_view.image_type->itemData(m_view.image_type->currentIndex()).toString(); + dir.setNameFilters(filters); + } + QStringList result = dir.entryList(QDir::Files); + + if (!isMime) { + // find pattern + QString filter = KUrl(m_view.clip_path->text()).fileName(); + QString ext = filter.section('.', -1); + filter = filter.section('%', 0, -2); + QString regexp = "^" + filter + "\\d+\\." + ext + "$"; + QRegExp rx(regexp); + QStringList entries; + foreach(const QString &path, result) { + if (rx.exactMatch(path)) entries << path; + } + result = entries; + } + m_count = result.count(); - m_view.slide_info->setText(i18n("%1 images found", m_count)); + if (m_count == 0) { + // no images, do not accept that + m_view.slide_info->setText(i18n("No image found")); + m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false); + return; + } + m_view.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true); + m_view.slide_info->setText(i18np("1 image found", "%1 images found", m_count)); QDomElement xml = m_clip->toXML(); xml.setAttribute("resource", m_view.clip_path->text() + extension); - QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(m_view.clip_path->text() + extension), 1, 240, 180); + int width = 180.0 * KdenliveSettings::project_display_ratio(); + if (width % 2 == 1) width++; + QString filePath = m_view.clip_path->text(); + if (isMime) filePath.append(extension); + QPixmap pix = m_clip->thumbProducer()->getImage(KUrl(filePath), 1, width, 180); QMap props = m_clip->properties(); m_view.clip_duration->setText(m_tc.getTimecodeFromFrames(props.value("ttl").toInt() * m_count)); m_view.clip_thumb->setPixmap(pix); } +void ClipProperties::slotCheckMaxLength() +{ + if (m_clip->maxDuration() == GenTime()) return; + int duration = m_tc.getFrameCount(m_view.clip_duration->text()); + if (duration > m_clip->maxDuration().frames(m_fps)) { + m_view.clip_duration->setText(m_tc.getTimecode(m_clip->maxDuration())); + } +} + +void ClipProperties::slotUpdateDurationFormat(int ix) +{ + bool framesFormat = ix == 1; + if (framesFormat) { + // switching to frames count, update widget + m_view.slide_duration_frames->setValue(m_tc.getFrameCount(m_view.slide_duration->text())); + m_view.luma_duration_frames->setValue(m_tc.getFrameCount(m_view.luma_duration->text())); + m_view.slide_duration->setHidden(true); + m_view.luma_duration->setHidden(true); + m_view.slide_duration_frames->setHidden(false); + m_view.luma_duration_frames->setHidden(false); + } else { + // switching to timecode format + m_view.slide_duration->setText(m_tc.getTimecodeFromFrames(m_view.slide_duration_frames->value())); + m_view.luma_duration->setText(m_tc.getTimecodeFromFrames(m_view.luma_duration_frames->value())); + m_view.slide_duration_frames->setHidden(true); + m_view.luma_duration_frames->setHidden(true); + m_view.slide_duration->setHidden(false); + m_view.luma_duration->setHidden(false); + } +} + #include "clipproperties.moc"