mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
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:
@ -35,8 +35,9 @@
|
||||
class CPlayerITunes : public CPlayer
|
||||
{
|
||||
public:
|
||||
CPlayerITunes();
|
||||
~CPlayerITunes();
|
||||
virtual ~CPlayerITunes();
|
||||
|
||||
static CPlayer* Create();
|
||||
|
||||
virtual void UpdateData();
|
||||
|
||||
@ -51,6 +52,9 @@ public:
|
||||
virtual void ClosePlayer();
|
||||
virtual void OpenPlayer(std::wstring& path);
|
||||
|
||||
protected:
|
||||
CPlayerITunes();
|
||||
|
||||
private:
|
||||
class CEventHandler : public _IiTunesEvents
|
||||
{
|
||||
@ -83,6 +87,8 @@ private:
|
||||
void OnVolumeChange(int volume);
|
||||
bool CheckWindow();
|
||||
|
||||
static CPlayer* c_Player;
|
||||
|
||||
bool m_UserQuitPrompt;
|
||||
IiTunes* m_iTunes;
|
||||
CEventHandler* m_iTunesEvent;
|
||||
|
Reference in New Issue
Block a user