/* * Strawberry Music Player * Copyright 2021, Jonas Kvinge * * 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 . * */ #ifndef RADIOSERVICES_H #define RADIOSERVICES_H #include #include #include "core/song.h" #include "radiochannel.h" class QSortFilterProxyModel; 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 T *Service() { return static_cast(ServiceBySource(T::source)); } void ReloadSettings(); RadioBackend *radio_backend() const { return backend_; } RadioModel *radio_model() const { return model_; } QSortFilterProxyModel *sort_model() const { return sort_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_; QSortFilterProxyModel *sort_model_; QMap services_; bool channels_refresh_; }; #endif // RADIOSERVICES_H