From 899a15f90c2845cd44e0e6aa1dc4eae5dcc68f2b Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Tue, 4 Oct 2011 18:19:15 +0000 Subject: converter: added preset editor git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2378 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/converter/preseteditor.h | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'src/plugins/General/converter/preseteditor.h') 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 +#include 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 -- cgit v1.2.3-13-gbd6f