From 5ab0f82f0d26060c7066e8bf2e3600327bb0768a Mon Sep 17 00:00:00 2001 From: vovanec Date: Sun, 1 Jul 2007 19:48:44 +0000 Subject: added url add dialog git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@19 90c681e8-e032-0410-971d-27865f9a5e38 --- src/addurldialog.h | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/addurldialog.h (limited to 'src/addurldialog.h') diff --git a/src/addurldialog.h b/src/addurldialog.h new file mode 100644 index 000000000..943e3869f --- /dev/null +++ b/src/addurldialog.h @@ -0,0 +1,27 @@ +#ifndef ADDURLDIALOG_H +#define ADDURLDIALOG_H + +#include "ui_addurldialog.h" +#include +#include + + +class PlayListModel; + +class AddUrlDialog : public QDialog , private Ui::AddUrlDialog +{ + Q_OBJECT +public: + static void popup(QWidget* parent ,PlayListModel*); +protected: + AddUrlDialog( QWidget * parent = 0, Qt::WindowFlags f = 0 ); + ~AddUrlDialog(); +protected slots: + virtual void accept(); +private: + void setModel(PlayListModel*); + static QPointer instance; + PlayListModel* m_model; + +}; +#endif //ADDURLDIALOG_H -- cgit v1.2.3-13-gbd6f