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:
@ -24,8 +24,9 @@
|
||||
class CPlayerWLM : public CPlayer
|
||||
{
|
||||
public:
|
||||
CPlayerWLM();
|
||||
~CPlayerWLM();
|
||||
virtual ~CPlayerWLM();
|
||||
|
||||
static CPlayer* Create();
|
||||
|
||||
virtual void UpdateData();
|
||||
|
||||
@ -35,10 +36,15 @@ public:
|
||||
virtual void Next();
|
||||
virtual void Previous();
|
||||
|
||||
protected:
|
||||
CPlayerWLM();
|
||||
|
||||
private:
|
||||
static LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
|
||||
void SendKeyInput(WORD key);
|
||||
|
||||
static CPlayer* c_Player;
|
||||
|
||||
HWND m_Window;
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user