Sayonara Player
Loading...
Searching...
No Matches
SomaFMLibrary.h
1/* SomaFMLibrary.h */
2
3/* Copyright (C) 2011-2024 Michael Lugmair (Lucio Carreras)
4 *
5 * This file is part of sayonara player
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21/* SomaFMLibrary.h */
22
23#ifndef SOMAFMLIBRARY_H
24#define SOMAFMLIBRARY_H
25
26#include <QObject>
27
28#include "Utils/Pimpl.h"
29
30namespace Playlist
31{
32 class Creator;
33}
34
35namespace SomaFM
36{
37 class Station;
38 class Library :
39 public QObject
40 {
41 Q_OBJECT
42 PIMPL(Library)
43
44 signals:
45 void sigStationsLoaded(const QList<SomaFM::Station>& stations);
46 void sigStationChanged(const SomaFM::Station& station);
47 void sigLoadingFinished();
48 void sigLoadingStarted();
49
50 public:
51 explicit Library(Playlist::Creator* playlistCreator, QObject* parent = nullptr);
52 ~Library();
53
54 Station station(const QString& name);
55 void createPlaylistFromStation(int idx);
56 bool createPlaylistFromStreamlist(int idx);
57 void searchStations();
58 void setStationLoved(const QString& stationName, bool loved);
59
60 private slots:
61 void websiteFetched();
62 void playlistContentFetched(bool success);
63 void stationStreamsFetched(bool success);
64 };
65}
66
67#endif // SOMAFMLIBRARY_H
Definition: PlaylistInterface.h:59
Definition: EngineUtils.h:33
Definition: SomaFMLibrary.h:40
Definition: SomaFMStation.h:41
Definition: Station.h:34