Sayonara Player
LastFM.h
1 /* LastFM.h */
2 
3 /* Copyright (C) 2011-2020 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 
22 /*
23  * LastFM.h
24  *
25  * Created on: Apr 19, 2011
26  * Author: Michael Lugmair (Lucio Carreras)
27  */
28 
29 #ifndef LASTFM_H_
30 #define LASTFM_H_
31 
32 #include "Utils/Pimpl.h"
33 
34 #include <QObject>
35 
36 // singleton base LastFM API class
37 // signals and slots are handled by the adapter class
38 namespace LastFM
39 {
40  class Base :
41  public QObject
42  {
43  Q_OBJECT
44  PIMPL(Base)
45 
46  signals:
47  void sigLoggedIn(bool);
48 
49  public:
50  Base();
51  virtual ~Base();
52 
53  void login(const QString& username, const QString& password);
54  bool isLoggedIn();
55 
56  private:
57  bool initTrackChangeThread();
58  void getSimilarArtists(const QString& artist);
59  bool updateTrack(const MetaData& md);
60 
61  private slots:
62  void activeChanged();
63  void loginThreadFinished(bool success);
64  //void similarArtistsFetched(const IdList& playlistTrack);
65  void currentTrackChanged(const MetaData& md);
66 
67  void scrobble();
68  void scrobbleResponseReceived(const QByteArray& data);
69  void scrobbleErrorReceived(const QString& str);
70 
71  void trackChangedTimerTimedOut();
72  };
73 }
74 
75 #endif /* LASTFM_H_ */
LastFM::Base
Definition: LastFM.h:42
MetaData
The MetaData class.
Definition: MetaData.h:47