2012-03-07 16:31:12 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2012, David Sansome <me@davidsansome.com>
|
2014-11-01 19:38:39 +01:00
|
|
|
Copyright 2014, John Maguire <john.maguire@gmail.com>
|
2014-11-02 19:50:39 +01:00
|
|
|
Copyright 2014, Krzysztof Sobiecki <sobkas@gmail.com>
|
2014-02-07 16:34:20 +01:00
|
|
|
|
2012-03-07 16:31:12 +01:00
|
|
|
Clementine is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
2014-02-07 16:34:20 +01:00
|
|
|
|
2012-03-07 16:31:12 +01:00
|
|
|
Clementine is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-02-07 16:34:20 +01:00
|
|
|
|
2012-03-07 16:31:12 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-12-18 23:54:21 +01:00
|
|
|
#ifndef INTERNET_PODCASTS_FIXEDOPMLPAGE_H_
|
|
|
|
#define INTERNET_PODCASTS_FIXEDOPMLPAGE_H_
|
2012-03-07 16:31:12 +01:00
|
|
|
|
|
|
|
#include <QUrl>
|
|
|
|
|
2020-09-18 16:15:19 +02:00
|
|
|
#include "addpodcastpage.h"
|
|
|
|
|
2012-03-07 16:31:12 +01:00
|
|
|
class PodcastUrlLoader;
|
|
|
|
class PodcastUrlLoaderReply;
|
|
|
|
|
|
|
|
class FixedOpmlPage : public AddPodcastPage {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
public:
|
2012-03-07 16:31:12 +01:00
|
|
|
FixedOpmlPage(const QUrl& opml_url, const QString& title, const QIcon& icon,
|
2014-02-10 14:20:20 +01:00
|
|
|
Application* app, QWidget* parent = nullptr);
|
2012-03-07 16:31:12 +01:00
|
|
|
|
|
|
|
bool has_visible_widget() const { return false; }
|
|
|
|
void Show();
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private slots:
|
2012-03-07 16:31:12 +01:00
|
|
|
void LoadFinished(PodcastUrlLoaderReply* reply);
|
|
|
|
|
2014-02-07 16:34:20 +01:00
|
|
|
private:
|
2012-03-07 16:31:12 +01:00
|
|
|
PodcastUrlLoader* loader_;
|
|
|
|
QUrl opml_url_;
|
|
|
|
|
|
|
|
bool done_initial_load_;
|
|
|
|
};
|
|
|
|
|
2014-12-18 23:54:21 +01:00
|
|
|
#endif // INTERNET_PODCASTS_FIXEDOPMLPAGE_H_
|