Clementine-audio-player-Mac.../src/radio/somafmservice.h

80 lines
1.9 KiB
C++

/* This file is part of Clementine.
Copyright 2010, 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 SOMAFMSERVICE_H
#define SOMAFMSERVICE_H
#include <QXmlStreamReader>
#include "radioservice.h"
class SomaFMUrlHandler;
class QNetworkAccessManager;
class QMenu;
class SomaFMService : public RadioService {
Q_OBJECT
public:
SomaFMService(RadioModel* parent);
~SomaFMService();
enum ItemType {
Type_Stream = 2000,
};
static const char* kServiceName;
static const char* kChannelListUrl;
static const char* kHomepage;
QStandardItem* CreateRootItem();
void LazyPopulate(QStandardItem* item);
void ShowContextMenu(const QModelIndex& index, const QPoint& global_pos);
PlaylistItem::Options playlistitem_options() const;
QNetworkAccessManager* network() const { return network_; }
protected:
QModelIndex GetCurrentIndex();
private slots:
void RefreshChannels();
void RefreshChannelsFinished();
void Homepage();
private:
void ReadChannel(QXmlStreamReader& reader);
void ConsumeElement(QXmlStreamReader& reader);
private:
SomaFMUrlHandler* url_handler_;
QStandardItem* root_;
QMenu* context_menu_;
QStandardItem* context_item_;
int get_channels_task_id_;
QNetworkAccessManager* network_;
};
#endif // SOMAFMSERVICE_H