]> git.sesse.net Git - kdenlive/blobdiff - src/wizard.h
Improve reloading of externally modified clips (wait for 1.5 second before reloading...
[kdenlive] / src / wizard.h
index 4b922028d18068666caba659aa40a9d8e7630c12..633ba299eb2469996be7228b44074ce085f94c44 100644 (file)
@@ -34,7 +34,8 @@
 #include "ui_wizardcheck_ui.h"
 #include "ui_wizardmltcheck_ui.h"
 
-class WizardDelegate: public QItemDelegate {
+class WizardDelegate: public QItemDelegate
+{
 public:
     WizardDelegate(QAbstractItemView* parent = 0): QItemDelegate(parent) {
     }
@@ -47,7 +48,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);
@@ -70,7 +71,8 @@ public:
 };
 
 
-class Wizard : public QWizard {
+class Wizard : public QWizard
+{
     Q_OBJECT
 public:
     Wizard(bool upgrade, QWidget * parent = 0);
@@ -86,10 +88,9 @@ private:
     Ui::WizardCheck_UI m_check;
     QVBoxLayout *m_startLayout;
     bool m_systemCheckIsOk;
-    QStringList m_dvProfiles;
-    QStringList m_hdvProfiles;
-    QStringList m_otherProfiles;
-    QMap <QString, QString> m_profilesInfo;
+    QMap <QString, QString> m_dvProfiles;
+    QMap <QString, QString> m_hdvProfiles;
+    QMap <QString, QString> m_otherProfiles;
     void slotCheckPrograms();
     void checkMltComponents();
     KIcon m_okIcon;
@@ -100,6 +101,7 @@ private slots:
     void slotCheckStandard();
     void slotCheckSelectedItem();
     void slotCheckMlt();
+    void slotShowWebInfos();
 };
 
 #endif