]> git.sesse.net Git - kdenlive/blobdiff - src/wizard.h
Apply patch from P. Fleury to improve jog shuttle speed handling.
[kdenlive] / src / wizard.h
index 232437d088c6ed0aed4446a2ee39f1eb321989d6..da2a551329df064093124830e3b7c33d49b02761 100644 (file)
@@ -33,6 +33,7 @@
 #include "ui_wizardextra_ui.h"
 #include "ui_wizardcheck_ui.h"
 #include "ui_wizardmltcheck_ui.h"
+#include "ui_wizardcapture_ui.h"
 
 class WizardDelegate: public QItemDelegate
 {
@@ -48,7 +49,7 @@ public:
                 painter->setPen(option.palette.color(QPalette::HighlightedText));
                 QColor backgroundColor = option.palette.color(QPalette::Highlight);
                 painter->setBrush(QBrush(backgroundColor));
-                painter->fillRect(r1, QBrush(backgroundColor));
+                painter->fillRect(r1, backgroundColor);
             }
             QFont font = painter->font();
             font.setBold(true);
@@ -85,6 +86,7 @@ private:
     Ui::WizardStandard_UI m_standard;
     Ui::WizardExtra_UI m_extra;
     Ui::WizardMltCheck_UI m_mltCheck;
+    Ui::WizardCapture_UI m_capture;
     Ui::WizardCheck_UI m_check;
     QVBoxLayout *m_startLayout;
     bool m_systemCheckIsOk;
@@ -101,7 +103,9 @@ private slots:
     void slotCheckStandard();
     void slotCheckSelectedItem();
     void slotCheckMlt();
-    bool slotShowWebInfos();
+    void slotShowWebInfos();
+    void slotDetectWebcam();
+    void slotUpdateCaptureParameters();
 };
 
 #endif