1 /***************************************************************************
2 * Copyright (C) 2008-2013 by Andrzej Rybczak *
3 * electricityispower@gmail.com *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
19 ***************************************************************************/
21 #ifndef NCMPCPP_LASTFM_H
22 #define NCMPCPP_LASTFM_H
26 #ifdef HAVE_CURL_CURL_H
31 #include "interfaces.h"
32 #include "lastfm_service.h"
35 struct Lastfm
: Screen
<NC::Scrollpad
>, Tabbable
39 virtual void switchTo() OVERRIDE
;
40 virtual void resize() OVERRIDE
;
42 virtual std::wstring
title() OVERRIDE
;
43 virtual ScreenType
type() OVERRIDE
{ return ScreenType::Lastfm
; }
45 virtual void update() OVERRIDE
;
47 virtual void enterPressed() OVERRIDE
{ }
48 virtual void spacePressed() OVERRIDE
{ }
50 virtual bool isMergable() OVERRIDE
{ return true; }
55 bool isDownloading() { return isDownloadInProgress
&& !isReadyToTake
; }
56 bool SetArtistInfoArgs(const std::string
&artist
, const std::string
&lang
= "");
59 virtual bool isLockable() OVERRIDE
{ return false; }
62 std::wstring itsTitle
;
64 std::string itsArtist
;
65 std::string itsFilename
;
67 std::string itsFolder
;
69 std::auto_ptr
<LastfmService
> itsService
;
70 LastfmService::Args itsArgs
;
73 void Save(const std::string
&data
);
74 void SetTitleAndFolder();
77 static void *DownloadWrapper(void *);
81 bool isDownloadInProgress
;
82 pthread_t itsDownloader
;
85 extern Lastfm
*myLastfm
;
87 #endif // HAVE_CURL_CURL_H
89 #endif // NCMPCPP_LASTFM_H