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
This commit is contained in:
Birunthan Mohanathas
2011-06-19 14:58:48 +00:00
parent 6aa004eb22
commit d633f4b586
29 changed files with 1181 additions and 329 deletions

View File

@ -24,8 +24,9 @@
class CPlayerSpotify : public CPlayer
{
public:
CPlayerSpotify();
~CPlayerSpotify();
virtual ~CPlayerSpotify();
static CPlayer* Create();
virtual void Pause() { return Play(); }
virtual void Play();
@ -36,6 +37,9 @@ public:
virtual void OpenPlayer(std::wstring& path);
virtual void UpdateData();
protected:
CPlayerSpotify();
private:
enum SPOTIFYCOMMAND
{
@ -50,6 +54,8 @@ private:
bool CheckWindow();
static CPlayer* c_Player;
HWND m_Window;
};