Add radios
This commit is contained in:
74
src/radios/radioservices.h
Normal file
74
src/radios/radioservices.h
Normal file
@@ -0,0 +1,74 @@
|
||||
/*
|
||||
* Strawberry Music Player
|
||||
* Copyright 2021, Jonas Kvinge <jonas@jkvinge.net>
|
||||
*
|
||||
* Strawberry 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.
|
||||
*
|
||||
* Strawberry 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 Strawberry. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef RADIOSERVICES_H
|
||||
#define RADIOSERVICES_H
|
||||
|
||||
#include <QObject>
|
||||
#include <QMap>
|
||||
|
||||
#include "core/song.h"
|
||||
#include "radiochannel.h"
|
||||
|
||||
class Application;
|
||||
class NetworkAccessManager;
|
||||
class RadioBackend;
|
||||
class RadioModel;
|
||||
class RadioService;
|
||||
|
||||
class RadioServices : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit RadioServices(Application *app, QObject *parent = nullptr);
|
||||
~RadioServices();
|
||||
|
||||
void AddService(RadioService *service);
|
||||
void RemoveService(RadioService *service);
|
||||
|
||||
RadioService *ServiceBySource(const Song::Source source) const;
|
||||
|
||||
template <typename T>
|
||||
T *Service() {
|
||||
return static_cast<T*>(this->ServiceBySource(T::source));
|
||||
}
|
||||
|
||||
void ReloadSettings();
|
||||
|
||||
RadioBackend *radio_backend() const { return backend_; }
|
||||
RadioModel *radio_model() const { return model_; }
|
||||
|
||||
private slots:
|
||||
void ServiceDeleted();
|
||||
void GotChannelsFromBackend(const RadioChannelList &channels);
|
||||
void GotChannelsFromService(const RadioChannelList &channels);
|
||||
|
||||
public slots:
|
||||
void GetChannels();
|
||||
void RefreshChannels();
|
||||
|
||||
private:
|
||||
NetworkAccessManager *network_;
|
||||
RadioBackend *backend_;
|
||||
RadioModel *model_;
|
||||
QMap<Song::Source, RadioService*> services_;
|
||||
bool channels_refresh_;
|
||||
};
|
||||
|
||||
#endif // RADIOSERVICES_H
|
||||
Reference in New Issue
Block a user