]> git.sesse.net Git - kdenlive/blobdiff - src/profilesdialog.h
Fix several title clips problems, including:
[kdenlive] / src / profilesdialog.h
index d0039b0a5b684d6e1de2b0f9866bc8613b8306a0..f75faef0002d8ed5ec8fe1b51db71d260ba15ea2 100644 (file)
 #ifndef PROFILESDIALOG_H
 #define PROFILESDIALOG_H
 
-#include <QDialog>
 
+#include "definitions.h"
 #include "ui_profiledialog_ui.h"
 
-class ProfilesDialog : public QDialog {
+class ProfilesDialog : public QDialog
+{
     Q_OBJECT
 
 public:
     ProfilesDialog(QWidget * parent = 0);
 
-    static QStringList getProfileNames();
+    void fillList(const QString selectedProfile = QString());
+    static QString getProfileDescription(QString name);
     static QMap< QString, QString > getSettingsForProfile(const QString profileName);
     static QMap< QString, QString > getSettingsFromFile(const QString path);
+    static QString getPathFromDescription(const QString profileDesc);
+    static MltVideoProfile getVideoProfile(QString name);
+    static QMap <QString, QString> getProfilesInfo();
+
+protected:
+    virtual void closeEvent(QCloseEvent *event);
 
 private slots:
     void slotUpdateDisplay();
+    void slotCreateProfile();
+    bool slotSaveProfile();
+    void slotDeleteProfile();
+    void slotSetDefaultProfile();
+    void slotProfileEdited();
+    virtual void accept();
 
 private:
     Ui::ProfilesDialog_UI m_view;
     QStringList m_mltProfilesList;
     QStringList m_customProfilesList;
+    int m_selectedProfileIndex;
+    bool m_profileIsModified;
     bool m_isCustomProfile;
+    void saveProfile(const QString path);
+    bool askForSave();
 };