rainmeter-studio/Plugins/PluginNowPlaying/Lyrics.h
Birunthan Mohanathas d633f4b586 NowPlayingPlugin:
- Added preliminary support to display lyrics (PlayerType=LYRICS)
- Applied r825 fix on TrackChangeAction= (sends bang to correct window without the need of #CURRENTCONFIG#)
- Some refactoring
2011-06-19 14:58:48 +00:00

33 lines
1.3 KiB
C++

/*
Copyright (C) 2011 Birunthan Mohanathas (www.poiru.net)
This program 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 2
of the License, or (at your option) any later version.
This program 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 this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef __LYRICS_H__
#define __LYRICS_H__
class CLyrics
{
public:
static bool GetFromInternet(const std::wstring& artist, const std::wstring& title, std::wstring& out);
private:
static bool GetFromLetras(const std::wstring& artist, const std::wstring& title, std::wstring& data);
static bool GetFromLYRDB(const std::wstring& artist, const std::wstring& title, std::wstring& data);
static bool GetFromWikia(const std::wstring& artist, const std::wstring& title, std::wstring& data);
};
#endif