2026-01-28 15:00:12 +08:00
|
|
|
|
#include "global.h"
|
2026-01-25 23:46:14 +08:00
|
|
|
|
#include "lrcPanel.h"
|
|
|
|
|
|
#include "VlcPlayer.h"
|
|
|
|
|
|
|
|
|
|
|
|
class DesktopLrcFrm :public LayeredWindow {
|
|
|
|
|
|
private:
|
|
|
|
|
|
VlcPlayer* _player;
|
|
|
|
|
|
LrcPanel _lrc;
|
|
|
|
|
|
protected:
|
|
|
|
|
|
void OnPaint(PaintEventArgs& args)override;
|
|
|
|
|
|
public:
|
|
|
|
|
|
DesktopLrcFrm(VlcPlayer* player);
|
|
|
|
|
|
void LoadLrc(const UIString& lrcData);
|
|
|
|
|
|
void ChangePostion(int postion);
|
|
|
|
|
|
};
|