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
30class PlaylistCreator;
31
32namespace SomaFM
33{
34 class Station;
35 class Library :
36 public QObject
37 {
38 Q_OBJECT
39 PIMPL(Library)
40
41 signals:
42 void sigStationsLoaded(const QList<SomaFM::Station>& stations);
43 void sigStationChanged(const SomaFM::Station& station);
44 void sigLoadingFinished();
45 void sigLoadingStarted();
46
47 public:
48 explicit Library(PlaylistCreator* playlistCreator, QObject* parent = nullptr);
49 ~Library();
50
51 Station station(const QString& name);
52 void createPlaylistFromStation(int idx);
53 bool createPlaylistFromStreamlist(int idx);
54 void searchStations();
55 void setStationLoved(const QString& stationName, bool loved);
56
57 private slots:
58 void websiteFetched();
59 void playlistContentFetched(bool success);
60 void stationStreamsFetched(bool success);
61 };
62}
63
64#endif // SOMAFMLIBRARY_H
Definition PlaylistInterface.h:57
Definition EngineUtils.h:33
Definition SomaFMLibrary.h:37
Definition SomaFMStation.h:41
Definition Station.h:34