]> git.sesse.net Git - kdenlive/blobdiff - src/dvdwizardvob.h
Improved Dvd Wizard (new chapters dialog)
[kdenlive] / src / dvdwizardvob.h
index 5544133c3ae0851593b2173f9b21efe58840b69c..40f69a69ae6e58e3c55fd2b1e9d4b69aeb201644 100644 (file)
@@ -29,6 +29,8 @@
 #include <kcapacitybar.h>
 #endif
 
+#include <KUrl>
+
 #include <QWizardPage>
 
 class DvdWizardVob : public QWizardPage
@@ -36,12 +38,15 @@ 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;
@@ -52,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