Qmmp
|
00001 /*************************************************************************** 00002 * Copyright (C) 2006-2012 by Ilya Kotov * 00003 * forkotov02@hotmail.ru * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * 00019 ***************************************************************************/ 00020 00021 #ifndef ADDURLDIALOG_P_H 00022 #define ADDURLDIALOG_P_H 00023 00024 #include <QDialog> 00025 #include <QPointer> 00026 #include <QUrl> 00027 #include "ui_addurldialog.h" 00028 00029 class QNetworkAccessManager; 00030 class QNetworkReply; 00031 class PlayListModel; 00032 class PlayListDownloader; 00033 00037 class AddUrlDialog : public QDialog , private Ui::AddUrlDialog 00038 { 00039 Q_OBJECT 00040 public: 00041 static void popup(QWidget* parent ,PlayListModel*); 00042 00043 private slots: 00044 void add(const QStringList &urls); 00045 void showError(const QString &message); 00046 00047 private: 00048 AddUrlDialog(QWidget *parent); 00049 ~AddUrlDialog(); 00050 void accept(); 00051 void setModel(PlayListModel*); 00052 static QPointer<AddUrlDialog> m_instance; 00053 PlayListModel *m_model; 00054 PlayListDownloader *m_downloader; 00055 QStringList m_history; 00056 }; 00057 #endif //ADDURLDIALOG_P_H