aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/converter/preseteditor.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-10-04 18:19:15 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2011-10-04 18:19:15 +0000
commit899a15f90c2845cd44e0e6aa1dc4eae5dcc68f2b (patch)
treee81614170ef7ea506acf809e125990cf2adff348 /src/plugins/General/converter/preseteditor.h
parent4e1820f359a8e50cfc48274cb45753a9d8d6307b (diff)
downloadqmmp-899a15f90c2845cd44e0e6aa1dc4eae5dcc68f2b.tar.gz
qmmp-899a15f90c2845cd44e0e6aa1dc4eae5dcc68f2b.tar.bz2
qmmp-899a15f90c2845cd44e0e6aa1dc4eae5dcc68f2b.zip
converter: added preset editor
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2378 90c681e8-e032-0410-971d-27865f9a5e38
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