]> git.sesse.net Git - kdenlive/blobdiff - src/slideshowclip.h
Add new dialog for template clips, fix thumbs & monitors not updating when clip is...
[kdenlive] / src / slideshowclip.h
index 116219ea8477a1a375365dceaddf9af61bb23ea1..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;
@@ -48,10 +48,13 @@ private slots:
     void parseFolder();
     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;
 };