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:
@ -19,6 +19,8 @@
|
||||
#ifndef __COVER_H__
|
||||
#define __COVER_H__
|
||||
|
||||
// TagLib
|
||||
#include "fileref.h"
|
||||
#include "apefile.h"
|
||||
#include "apetag.h"
|
||||
#include "asffile.h"
|
||||
@ -40,10 +42,9 @@
|
||||
class CCover
|
||||
{
|
||||
public:
|
||||
static void GetCover(const std::wstring& artist, const std::wstring& title, const std::wstring& file, std::wstring& target);
|
||||
static bool GetCachedCover(const std::wstring& artist, const std::wstring& title, std::wstring& target);
|
||||
static bool GetLocalCover(std::wstring filename, const std::wstring& folder, std::wstring& target);
|
||||
static bool GetEmbeddedCover(const TagLib::FileRef& fr, std::wstring& target);
|
||||
static bool GetCached(std::wstring& path);
|
||||
static bool GetLocal(std::wstring filename, const std::wstring& folder, std::wstring& target);
|
||||
static bool GetEmbedded(const TagLib::FileRef& fr, std::wstring& target);
|
||||
static std::wstring GetFileFolder(const std::wstring& file);
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user