]> git.sesse.net Git - kdenlive/blobdiff - src/markerdialog.cpp
When user wants to display timecode in frames, use frames for all timecode display...
[kdenlive] / src / markerdialog.cpp
index 91b0b37f253fed5f22243e8df91bf6d5cf2f08d7..c437aa82d3505a0a88b98905999e795cea873ec7 100644 (file)
  ***************************************************************************/
 
 
+#include "markerdialog.h"
+#include "kthumb.h"
+#include "kdenlivesettings.h"
+
+#include <QWheelEvent>
 #include <KDebug>
 
-#include "markerdialog.h"
 
-MarkerDialog::MarkerDialog(DocClipBase *clip, CommentedTime t, Timecode tc, QWidget * parent): QDialog(parent), m_tc(tc), m_clip(clip), m_marker(t) {
+MarkerDialog::MarkerDialog(DocClipBase *clip, CommentedTime t, Timecode tc, const QString &caption, QWidget * parent) :
+        QDialog(parent),
+        m_producer(NULL),
+        m_profile(NULL),
+        m_clip(clip),
+        m_tc(tc)
+{
     setFont(KGlobalSettings::toolBarFont());
     m_fps = m_tc.fps();
-    m_view.setupUi(this);
-    m_view.marker_position->setText(tc.getTimecode(t.time(), tc.fps()));
-    m_view.marker_comment->setText(t.comment());
-    connect(m_view.position_up, SIGNAL(clicked()), this, SLOT(slotTimeUp()));
-    connect(m_view.position_down, SIGNAL(clicked()), this, SLOT(slotTimeDown()));
-    m_view.marker_comment->selectAll();
-    m_view.marker_comment->setFocus();
+    setupUi(this);
+    setWindowTitle(caption);
+    m_previewTimer = new QTimer(this);
+
+    if (m_clip != NULL) {
+        m_previewTimer->setInterval(500);
+        connect(m_previewTimer, SIGNAL(timeout()), this, SLOT(slotUpdateThumb()));
+        m_profile = new Mlt::Profile((char*) KdenliveSettings::current_profile().data());
+        m_dar = m_profile->dar();
+        QDomDocument doc;
+        QDomElement mlt = doc.createElement("mlt");
+        QDomElement play = doc.createElement("mlt");
+        doc.appendChild(mlt);
+        mlt.appendChild(play);
+        play.appendChild(doc.importNode(clip->toXML(), true));
+        //char *tmp = doc.toString().toUtf8().data();
+        m_producer = new Mlt::Producer(*m_profile, "xml-string", doc.toString().toUtf8().data());
+        //delete[] tmp;
+        int width = 100.0 * m_dar;
+        if (width % 2 == 1) width++;
+        QPixmap p(width, 100);
+        QString colour = clip->getProperty("colour");
+        switch (m_clip->clipType()) {
+        case VIDEO:
+        case AV:
+        case SLIDESHOW:
+        case PLAYLIST:
+            connect(this, SIGNAL(updateThumb()), m_previewTimer, SLOT(start()));
+        case IMAGE:
+        case TEXT:
+            p = QPixmap::fromImage(KThumb::getFrame(m_producer, t.time().frames(m_fps), width, 100));
+            break;
+        case COLOR:
+            colour = colour.replace(0, 2, "#");
+            p.fill(QColor(colour.left(7)));
+            break;
+        default:
+            p.fill(Qt::black);
+        }
+        if (!p.isNull()) {
+            clip_thumb->setFixedWidth(p.width());
+            clip_thumb->setFixedHeight(p.height());
+            clip_thumb->setPixmap(p);
+        }
+        connect(marker_position, SIGNAL(textChanged(const QString &)), this, SIGNAL(updateThumb()));
+    } else clip_thumb->setHidden(true);
+
+    if (KdenliveSettings::frametimecode()) {
+        marker_position->setInputMask("000000000000");
+        marker_position->setText(QString::number((int) t.time().frames(m_fps)));
+    } else marker_position->setText(tc.getTimecode(t.time()));
+
+    marker_comment->setText(t.comment());
+    marker_comment->selectAll();
+    marker_comment->setFocus();
+
+    connect(position_up, SIGNAL(clicked()), this, SLOT(slotTimeUp()));
+    connect(position_down, SIGNAL(clicked()), this, SLOT(slotTimeDown()));
+
     adjustSize();
 }
 
+MarkerDialog::~MarkerDialog()
+{
+    delete m_previewTimer;
+    delete m_producer;
+    delete m_profile;
+}
+
+void MarkerDialog::slotUpdateThumb()
+{
+    m_previewTimer->stop();
+    int pos;
+    if (KdenliveSettings::frametimecode()) pos = marker_position->text().toInt();
+    else pos = m_tc.getFrameCount(marker_position->text());
+    int width = 100.0 * m_dar;
+    if (width % 2 == 1) width++;
+    QPixmap p = QPixmap::fromImage(KThumb::getFrame(m_producer, pos, width, 100));
+    if (!p.isNull()) clip_thumb->setPixmap(p);
+    else kDebug() << "!!!!!!!!!!!  ERROR CREATING THUMB";
+}
 
-void MarkerDialog::slotTimeUp() {
-    int duration = m_tc.getFrameCount(m_view.marker_position->text(), m_fps);
-    if (duration >= m_clip->duration().frames(m_fps)) return;
+void MarkerDialog::slotTimeUp()
+{
+    int duration;
+    if (KdenliveSettings::frametimecode()) duration = marker_position->text().toInt();
+    else duration = m_tc.getFrameCount(marker_position->text());
+    if (m_clip && duration >= m_clip->duration().frames(m_fps)) return;
     duration ++;
-    m_view.marker_position->setText(m_tc.getTimecode(GenTime(duration, m_fps), m_fps));
+    if (KdenliveSettings::frametimecode()) marker_position->setText(QString::number(duration));
+    else marker_position->setText(m_tc.getTimecode(GenTime(duration, m_fps)));
 }
 
-void MarkerDialog::slotTimeDown() {
-    int duration = m_tc.getFrameCount(m_view.marker_position->text(), m_fps);
+void MarkerDialog::slotTimeDown()
+{
+    int duration;
+    if (KdenliveSettings::frametimecode()) duration = marker_position->text().toInt();
+    else duration = m_tc.getFrameCount(marker_position->text());
     if (duration <= 0) return;
     duration --;
-    m_view.marker_position->setText(m_tc.getTimecode(GenTime(duration, m_fps), m_fps));
+    if (KdenliveSettings::frametimecode()) marker_position->setText(QString::number(duration));
+    else marker_position->setText(m_tc.getTimecode(GenTime(duration, m_fps)));
+}
+
+CommentedTime MarkerDialog::newMarker()
+{
+    if (KdenliveSettings::frametimecode()) return CommentedTime(GenTime(marker_position->text().toInt(), m_fps), marker_comment->text());
+    return CommentedTime(GenTime(m_tc.getFrameCount(marker_position->text()), m_fps), marker_comment->text());
 }
 
-CommentedTime MarkerDialog::newMarker() {
-    return CommentedTime(GenTime(m_tc.getFrameCount(m_view.marker_position->text(), m_fps), m_fps), m_view.marker_comment->text());
+void MarkerDialog::wheelEvent(QWheelEvent * event)
+{
+    if (marker_position->underMouse() || clip_thumb->underMouse()) {
+        if (event->delta() > 0)
+            slotTimeUp();
+        else
+            slotTimeDown();
+    }
 }
 
 #include "markerdialog.moc"