]> git.sesse.net Git - kdenlive/blobdiff - src/dvdwizardvob.h
Improved Dvd Wizard (new chapters dialog)
[kdenlive] / src / dvdwizardvob.h
index 448829be3431f6237fbf8f43e3cd2566a78a43e2..40f69a69ae6e58e3c55fd2b1e9d4b69aeb201644 100644 (file)
 #include <kcapacitybar.h>
 #endif
 
+#include <KUrl>
+
 #include <QWizardPage>
 
-class DvdWizardVob : public QWizardPage {
+class DvdWizardVob : public QWizardPage
+{
     Q_OBJECT
 
 public:
-    DvdWizardVob(QWidget * parent = 0);
+    DvdWizardVob(const QString &profile, QWidget * parent = 0);
     virtual ~DvdWizardVob();
     virtual bool isComplete() const;
     QStringList selectedUrls() const;
     void setUrl(const QString &url);
     QString introMovie() const;
+    bool isPal() const;
+    int duration(int ix) const;
+    QStringList durations() const;
 
 private:
     Ui::DvdWizardVob_UI m_view;
@@ -51,7 +57,12 @@ private:
 #endif
 
 private slots:
-    void slotCheckVobList(const QString &text);
+    void slotCheckVobList();
+    void slotAddVobFile(KUrl url = KUrl());
+    void slotDeleteVobFile();
+    void slotItemUp();
+    void slotItemDown();
+    void changeFormat();
 };
 
 #endif