mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-02 15:45:21 +00:00

如果没有提供默认专辑和歌手信息图标等返回一个默认的图标和文字 如 firefox 播放酷狗音乐只有一个title,其他歌曲信息都没的 Issue: https://github.com/linuxdeepin/developer-center/issues/5786,https://github.com/linuxdeepin/developer-center/issues/4331
201 lines
5.6 KiB
C++
201 lines
5.6 KiB
C++
// Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
|
|
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#include "mediawidget.h"
|
|
|
|
#include <DFontSizeManager>
|
|
#include <DGuiApplicationHelper>
|
|
|
|
#include <QLabel>
|
|
#include <QHBoxLayout>
|
|
#include <QVBoxLayout>
|
|
#include <QEvent>
|
|
#include <QPainter>
|
|
#include <QDebug>
|
|
#include <QPainterPath>
|
|
|
|
DWIDGET_USE_NAMESPACE
|
|
DGUI_USE_NAMESPACE
|
|
|
|
#define PAUSEHEIGHT 21
|
|
#define PLAYHEIGHT 18
|
|
|
|
MediaWidget::MediaWidget(MediaPlayerModel *model, QWidget *parent)
|
|
: QWidget(parent)
|
|
, m_model(model)
|
|
, m_musicIcon(new QLabel(this))
|
|
, m_musicName(new QLabel(this))
|
|
, m_musicSinger(new QLabel(this))
|
|
, m_pausePlayButton(new MusicButton(this))
|
|
, m_nextButton(new MusicButton(this))
|
|
{
|
|
initUi();
|
|
initConnection();
|
|
}
|
|
|
|
MediaWidget::~MediaWidget()
|
|
{
|
|
}
|
|
|
|
void MediaWidget::statusChanged(const MediaPlayerModel::PlayStatus &newStatus)
|
|
{
|
|
switch (newStatus) {
|
|
case MediaPlayerModel::PlayStatus::Play: {
|
|
m_pausePlayButton->setButtonType(MusicButton::ButtonType::Pause);
|
|
break;
|
|
}
|
|
case MediaPlayerModel::PlayStatus::Stop:
|
|
case MediaPlayerModel::PlayStatus::Pause: {
|
|
m_pausePlayButton->setButtonType(MusicButton::ButtonType::Playing);
|
|
break;
|
|
}
|
|
default: break;
|
|
}
|
|
}
|
|
|
|
void MediaWidget::onPlayClicked()
|
|
{
|
|
// 设置当前的播放状态
|
|
if (m_model->status() == MediaPlayerModel::PlayStatus::Play)
|
|
m_model->setStatus(MediaPlayerModel::PlayStatus::Pause);
|
|
else
|
|
m_model->setStatus(MediaPlayerModel::PlayStatus::Play);
|
|
}
|
|
|
|
void MediaWidget::onNext()
|
|
{
|
|
// 播放下一曲
|
|
m_model->playNext();
|
|
}
|
|
|
|
void MediaWidget::initUi()
|
|
{
|
|
m_pausePlayButton->setFixedWidth(20);
|
|
m_nextButton->setFixedWidth(20);
|
|
|
|
QHBoxLayout *mainLayout = new QHBoxLayout(this);
|
|
mainLayout->setContentsMargins(20, 0, 20, 0);
|
|
mainLayout->addWidget(m_musicIcon);
|
|
|
|
QWidget *infoWidget = new QWidget(this);
|
|
QVBoxLayout *infoLayout = new QVBoxLayout(infoWidget);
|
|
infoLayout->addWidget(m_musicName);
|
|
infoLayout->addWidget(m_musicSinger);
|
|
mainLayout->addWidget(infoWidget);
|
|
mainLayout->addStretch();
|
|
mainLayout->addWidget(m_pausePlayButton);
|
|
mainLayout->addSpacing(25);
|
|
mainLayout->addWidget(m_nextButton);
|
|
|
|
m_musicIcon->setFixedSize(32, 32);
|
|
m_musicName->setFont(DFontSizeManager::instance()->t8());
|
|
m_musicSinger->setFont(DFontSizeManager::instance()->t10());
|
|
}
|
|
|
|
void MediaWidget::initConnection()
|
|
{
|
|
connect(m_model, &MediaPlayerModel::startStop, this, [ this ](bool startOrStop) {
|
|
m_nextButton->setEnabled(m_model->canGoNext());
|
|
onUpdateMediaInfo();
|
|
statusChanged(m_model->status());
|
|
});
|
|
connect(m_model, &MediaPlayerModel::metadataChanged, this, &MediaWidget::onUpdateMediaInfo);
|
|
connect(m_model, &MediaPlayerModel::statusChanged, this, &MediaWidget::statusChanged);
|
|
connect(m_pausePlayButton, &MusicButton::clicked, this, &MediaWidget::onPlayClicked);
|
|
connect(m_nextButton, &MusicButton::clicked, this, &MediaWidget::onNext);
|
|
|
|
m_pausePlayButton->setButtonType(m_model->status() == MediaPlayerModel::PlayStatus::Play ?
|
|
MusicButton::ButtonType::Pause : MusicButton::ButtonType::Playing);
|
|
m_nextButton->setButtonType(MusicButton::ButtonType::Next);
|
|
}
|
|
|
|
void MediaWidget::onUpdateMediaInfo()
|
|
{
|
|
m_musicName->setText(m_model->name());
|
|
QString file = m_model->iconUrl();
|
|
QPixmap pixmap;
|
|
if (file.startsWith("file:///")) {
|
|
file.replace("file:///", "/");
|
|
pixmap = QPixmap(file).scaled(m_musicIcon->size());
|
|
}
|
|
|
|
if (pixmap.isNull()) {
|
|
// 就算给的文件不存在(e.g. deepin-music..),也至少 fallback 到 music 图标
|
|
pixmap = QIcon::fromTheme(file, QIcon::fromTheme("music")).pixmap(m_musicIcon->size());
|
|
}
|
|
|
|
m_musicIcon->setPixmap(pixmap);
|
|
m_musicSinger->setText(m_model->artist());
|
|
}
|
|
|
|
/**
|
|
* @brief 音乐播放的相关按钮
|
|
* @param parent
|
|
*/
|
|
|
|
MusicButton::MusicButton(QWidget *parent)
|
|
: QWidget(parent)
|
|
{
|
|
installEventFilter(this);
|
|
}
|
|
|
|
MusicButton::~MusicButton()
|
|
{
|
|
}
|
|
|
|
int MusicButton::getIconHeight() const
|
|
{
|
|
switch (m_buttonType) {
|
|
case ButtonType::Pause:
|
|
return PAUSEHEIGHT;
|
|
case ButtonType::Next:
|
|
case ButtonType::Playing:
|
|
return PLAYHEIGHT;
|
|
}
|
|
|
|
return PLAYHEIGHT;
|
|
}
|
|
|
|
void MusicButton::paintEvent(QPaintEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
|
|
#define ICOMMARGIN 6
|
|
#define ICONSPACE 2
|
|
|
|
int ctrlHeight = getIconHeight();
|
|
|
|
int width = this->width();
|
|
int height = this->height();
|
|
int startX = 2;
|
|
int startY = (height - ctrlHeight) / 2;
|
|
QColor color = DGuiApplicationHelper::instance()->themeType() == DGuiApplicationHelper::ColorType::LightType ? Qt::black : Qt::white;
|
|
QPainter painter(this);
|
|
painter.save();
|
|
painter.setRenderHint(QPainter::Antialiasing);
|
|
painter.setPen(color);
|
|
painter.setBrush(color);
|
|
if (m_buttonType == ButtonType::Pause) {
|
|
painter.drawRect(QRect(startX, startY, ICOMMARGIN, ctrlHeight));
|
|
painter.drawRect(QRect(width - ICOMMARGIN - ICONSPACE, startY, ICOMMARGIN, ctrlHeight));
|
|
} else {
|
|
QPainterPath trianglePath;
|
|
trianglePath.moveTo(startX, startY);
|
|
trianglePath.lineTo(width - ICOMMARGIN, height / 2);
|
|
trianglePath.lineTo(startX, startY + ctrlHeight);
|
|
trianglePath.lineTo(startX, startY);
|
|
painter.drawPath(trianglePath);
|
|
if (m_buttonType == ButtonType::Next)
|
|
painter.drawRect(width - ICOMMARGIN, startY, 2, ctrlHeight);
|
|
}
|
|
painter.restore();
|
|
}
|
|
|
|
void MusicButton::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
Q_UNUSED(event);
|
|
Q_EMIT clicked();
|
|
}
|