diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2011-10-01 12:33:51 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2011-10-01 12:33:51 +0000 |
| commit | e3ab83869f4b74e485964720f941fed22ce035ea (patch) | |
| tree | 770ed571f9fc0c83cce2addb75148f60fd39c4dd /src/plugins/General/converter/converterdialog.h | |
| parent | 041067950f9a2f01ebb1a27db2e811a1167e508d (diff) | |
| download | qmmp-e3ab83869f4b74e485964720f941fed22ce035ea.tar.gz qmmp-e3ab83869f4b74e485964720f941fed22ce035ea.tar.bz2 qmmp-e3ab83869f4b74e485964720f941fed22ce035ea.zip | |
implemented converter settings, fixed build
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2364 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/converter/converterdialog.h')
| -rw-r--r-- | src/plugins/General/converter/converterdialog.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/plugins/General/converter/converterdialog.h b/src/plugins/General/converter/converterdialog.h index 154357176..025b209e8 100644 --- a/src/plugins/General/converter/converterdialog.h +++ b/src/plugins/General/converter/converterdialog.h @@ -25,6 +25,7 @@ #include <QStringList> #include "ui_converterdialog.h" +class QAction; class PlayListItem; /** @@ -37,7 +38,16 @@ public: explicit ConverterDialog(QList <PlayListItem *> items, QWidget *parent = 0); QStringList selectedUrls() const; +public slots: + virtual void accept(); + +private slots: + void on_dirButton_clicked(); + void addTitleString(QAction *a); + private: + void createMenus(); + Ui::ConverterDialog ui; }; |
