2012-03-05 19:15:45 +01:00
|
|
|
/* This file is part of Clementine.
|
|
|
|
Copyright 2012, David Sansome <me@davidsansome.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ADDPODCASTDIALOG_H
|
|
|
|
#define ADDPODCASTDIALOG_H
|
|
|
|
|
2012-03-06 19:37:46 +01:00
|
|
|
#include "podcast.h"
|
|
|
|
|
2012-03-05 19:15:45 +01:00
|
|
|
#include <QDialog>
|
|
|
|
|
2012-03-11 18:57:15 +01:00
|
|
|
class AddPodcastByUrl;
|
2012-03-05 19:15:45 +01:00
|
|
|
class AddPodcastPage;
|
|
|
|
class Application;
|
2012-03-11 18:57:15 +01:00
|
|
|
class OpmlContainer;
|
2012-03-06 12:39:29 +01:00
|
|
|
class WidgetFadeHelper;
|
2012-03-05 19:15:45 +01:00
|
|
|
class Ui_AddPodcastDialog;
|
|
|
|
|
|
|
|
class QModelIndex;
|
|
|
|
|
|
|
|
class AddPodcastDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
AddPodcastDialog(Application* app, QWidget* parent = 0);
|
|
|
|
~AddPodcastDialog();
|
|
|
|
|
2012-03-07 16:31:12 +01:00
|
|
|
static const char* kBbcOpmlUrl;
|
|
|
|
|
2012-03-11 18:57:15 +01:00
|
|
|
// Convenience methods that open the dialog at the Add By Url page and fill
|
|
|
|
// it with either a URL (which is then fetched), or a pre-fetched OPML
|
|
|
|
// container.
|
|
|
|
void ShowWithUrl(const QUrl& url);
|
|
|
|
void ShowWithOpml(const OpmlContainer& opml);
|
|
|
|
|
2012-03-05 19:15:45 +01:00
|
|
|
private slots:
|
2012-03-10 23:39:24 +01:00
|
|
|
void OpenSettingsPage();
|
2012-03-05 19:15:45 +01:00
|
|
|
void AddPodcast();
|
2012-03-11 00:38:54 +01:00
|
|
|
void PodcastDoubleClicked(const QModelIndex& index);
|
2012-03-07 12:22:43 +01:00
|
|
|
void RemovePodcast();
|
2012-03-05 19:15:45 +01:00
|
|
|
void ChangePage(int index);
|
|
|
|
void ChangePodcast(const QModelIndex& current);
|
|
|
|
|
|
|
|
void PageBusyChanged(bool busy);
|
2012-03-06 22:25:16 +01:00
|
|
|
void CurrentPageBusyChanged(bool busy);
|
2012-03-05 19:15:45 +01:00
|
|
|
|
2012-03-09 20:12:45 +01:00
|
|
|
void SelectFirstPodcast();
|
|
|
|
|
2012-06-16 23:58:33 +02:00
|
|
|
void OpenOPMLFile();
|
|
|
|
|
2012-03-05 19:15:45 +01:00
|
|
|
private:
|
|
|
|
void AddPage(AddPodcastPage* page);
|
|
|
|
|
|
|
|
private:
|
2012-03-06 19:37:46 +01:00
|
|
|
Application* app_;
|
|
|
|
|
2012-03-05 19:15:45 +01:00
|
|
|
Ui_AddPodcastDialog* ui_;
|
|
|
|
QPushButton* add_button_;
|
2012-03-07 12:22:43 +01:00
|
|
|
QPushButton* remove_button_;
|
2012-03-05 19:15:45 +01:00
|
|
|
|
|
|
|
QList<AddPodcastPage*> pages_;
|
|
|
|
QList<bool> page_is_busy_;
|
2012-03-11 18:57:15 +01:00
|
|
|
AddPodcastByUrl* by_url_page_;
|
2012-03-06 12:39:29 +01:00
|
|
|
|
|
|
|
WidgetFadeHelper* fader_;
|
2012-03-06 19:37:46 +01:00
|
|
|
|
|
|
|
Podcast current_podcast_;
|
2012-06-16 23:58:33 +02:00
|
|
|
|
|
|
|
QString last_opml_path_;
|
2012-03-05 19:15:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ADDPODCASTDIALOG_H
|