]> git.sesse.net Git - kdenlive/blobdiff - src/slideshowclip.h
Introducing template based title clips
[kdenlive] / src / slideshowclip.h
index fd4c32cc903da61e2c8e3a2ae3da73f187df3066..d9b571729345ec48efb8103e2bced12d76d6a4b5 100644 (file)
  ***************************************************************************/
 
 
-#ifndef SLIDESHOWDIALOG_H
-#define SLIDESHOWDIALOG_H
+#ifndef SLIDESHOWCLIP_H
+#define SLIDESHOWCLIP_H
 
-#include <QDialog>
 
 #include "definitions.h"
 #include "docclipbase.h"
 #include "timecode.h"
 #include "ui_slideshowclip_ui.h"
 
-class SlideshowClip : public QDialog {
+class SlideshowClip : public QDialog
+{
     Q_OBJECT
 
 public:
-    SlideshowClip(QWidget * parent = 0);
+    SlideshowClip(Timecode tc, QWidget * parent = 0);
     /** return selected path for slideshow in MLT format */
     QString selectedPath() const;
     QString clipName() const;
@@ -49,10 +49,12 @@ private slots:
     void slotEnableLuma(int state);
     void slotEnableLumaFile(int state);
     void slotSetItemIcon(int row);
+    void slotUpdateDurationFormat(int ix);
 
 private:
     Ui::SlideshowClip_UI m_view;
     int m_count;
+    Timecode m_timecode;
 };