]> git.sesse.net Git - kdenlive/blobdiff - src/projectsettings.h
* Clean up profiles handling
[kdenlive] / src / projectsettings.h
index e165d47bbbcabf4434f07a6f30ee7773c109fc1b..e36fe8dfa1f18fcef1e89bac9bcd3b7ce9403def 100644 (file)
@@ -22,6 +22,7 @@
 #define PROJECTSETTINGS_H
 
 #include <QDialog>
+#include <QPushButton>
 
 #include "ui_projectsettings_ui.h"
 
@@ -30,15 +31,19 @@ class ProjectSettings : public QDialog {
 
 public:
     ProjectSettings(QWidget * parent = 0);
+    QString selectedProfile() const;
+    KUrl selectedFolder() const;
 
 private slots:
     void slotUpdateDisplay();
+    void slotUpdateButton(const QString &path);
 
 private:
     Ui::ProjectSettings_UI m_view;
     QStringList m_mltProfilesList;
     QStringList m_customProfilesList;
     bool m_isCustomProfile;
+    QPushButton *buttonOk;
 };