aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/converter/preseteditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/General/converter/preseteditor.h')
-rw-r--r--src/plugins/General/converter/preseteditor.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/plugins/General/converter/preseteditor.h b/src/plugins/General/converter/preseteditor.h
index 8378009af..07bf2087f 100644
--- a/src/plugins/General/converter/preseteditor.h
+++ b/src/plugins/General/converter/preseteditor.h
@@ -22,6 +22,7 @@
#define PRESETEDITOR_H
#include <QDialog>
+#include <QVariantMap>
namespace Ui {
class PresetEditor;
@@ -35,11 +36,14 @@ class PresetEditor : public QDialog
Q_OBJECT
public:
- explicit PresetEditor(QWidget *parent = 0);
- ~PresetEditor();
+ explicit PresetEditor(const QString &name, const QVariantMap &data, QWidget *parent = 0);
+ virtual ~PresetEditor();
+
+ const QString name() const;
+ const QVariantMap data() const;
private:
- Ui::PresetEditor *ui;
+ Ui::PresetEditor *m_ui;
};
#endif // PRESETEDITOR_H