mirror of https://github.com/Nheko-Reborn/nheko
Add inline audio clip player (m.audio) (#143)
parent
eae069ad93
commit
432a2e1354
@ -0,0 +1,111 @@ |
||||
/*
|
||||
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
|
||||
#pragma once |
||||
|
||||
#include <QEvent> |
||||
#include <QIcon> |
||||
#include <QMediaPlayer> |
||||
#include <QMouseEvent> |
||||
#include <QSharedPointer> |
||||
#include <QWidget> |
||||
|
||||
#include "Audio.h" |
||||
#include "MatrixClient.h" |
||||
#include "MessageEvent.h" |
||||
|
||||
namespace events = matrix::events; |
||||
namespace msgs = matrix::events::messages; |
||||
|
||||
class AudioItem : public QWidget |
||||
{ |
||||
Q_OBJECT |
||||
|
||||
Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor) |
||||
Q_PROPERTY(QColor iconColor WRITE setIconColor READ iconColor) |
||||
Q_PROPERTY(QColor backgroundColor WRITE setBackgroundColor READ backgroundColor) |
||||
|
||||
Q_PROPERTY(QColor durationBackgroundColor WRITE setDurationBackgroundColor READ |
||||
durationBackgroundColor) |
||||
Q_PROPERTY(QColor durationForegroundColor WRITE setDurationForegroundColor READ |
||||
durationForegroundColor) |
||||
|
||||
public: |
||||
AudioItem(QSharedPointer<MatrixClient> client, |
||||
const events::MessageEvent<msgs::Audio> &event, |
||||
QWidget *parent = nullptr); |
||||
|
||||
AudioItem(QSharedPointer<MatrixClient> client, |
||||
const QString &url, |
||||
const QString &filename, |
||||
QWidget *parent = nullptr); |
||||
|
||||
QSize sizeHint() const override; |
||||
|
||||
void setTextColor(const QColor &color) { textColor_ = color; } |
||||
void setIconColor(const QColor &color) { iconColor_ = color; } |
||||
void setBackgroundColor(const QColor &color) { backgroundColor_ = color; } |
||||
|
||||
void setDurationBackgroundColor(const QColor &color) { durationBgColor_ = color; } |
||||
void setDurationForegroundColor(const QColor &color) { durationFgColor_ = color; } |
||||
|
||||
QColor textColor() const { return textColor_; } |
||||
QColor iconColor() const { return iconColor_; } |
||||
QColor backgroundColor() const { return backgroundColor_; } |
||||
|
||||
QColor durationBackgroundColor() const { return durationBgColor_; } |
||||
QColor durationForegroundColor() const { return durationFgColor_; } |
||||
|
||||
protected: |
||||
void paintEvent(QPaintEvent *event) override; |
||||
void mousePressEvent(QMouseEvent *event) override; |
||||
|
||||
private slots: |
||||
void fileDownloaded(const QString &event_id, const QByteArray &data); |
||||
|
||||
private: |
||||
QString calculateFileSize(int nbytes) const; |
||||
void init(); |
||||
|
||||
enum class AudioState |
||||
{ |
||||
Play, |
||||
Pause, |
||||
}; |
||||
|
||||
AudioState state_ = AudioState::Play; |
||||
|
||||
QUrl url_; |
||||
QString text_; |
||||
QString readableFileSize_; |
||||
QString filenameToSave_; |
||||
|
||||
events::MessageEvent<msgs::Audio> event_; |
||||
QSharedPointer<MatrixClient> client_; |
||||
|
||||
QMediaPlayer *player_; |
||||
|
||||
QIcon playIcon_; |
||||
QIcon pauseIcon_; |
||||
|
||||
QColor textColor_ = QColor("white"); |
||||
QColor iconColor_ = QColor("#38A3D8"); |
||||
QColor backgroundColor_ = QColor("#333"); |
||||
|
||||
QColor durationBgColor_ = QColor("black"); |
||||
QColor durationFgColor_ = QColor("blue"); |
||||
}; |
After Width: | Height: | Size: 392 B |
After Width: | Height: | Size: 444 B |
After Width: | Height: | Size: 505 B |
After Width: | Height: | Size: 692 B |
@ -0,0 +1,237 @@ |
||||
/*
|
||||
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr> |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License as published by |
||||
* the Free Software Foundation, either version 3 of the License, or |
||||
* (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
|
||||
#include <QBrush> |
||||
#include <QDebug> |
||||
#include <QDesktopServices> |
||||
#include <QFile> |
||||
#include <QFileDialog> |
||||
#include <QFileInfo> |
||||
#include <QPainter> |
||||
#include <QPixmap> |
||||
|
||||
#include "timeline/widgets/AudioItem.h" |
||||
|
||||
namespace events = matrix::events; |
||||
namespace msgs = matrix::events::messages; |
||||
|
||||
constexpr int MaxWidth = 400; |
||||
constexpr int Height = 70; |
||||
constexpr int IconRadius = 22; |
||||
constexpr int IconDiameter = IconRadius * 2; |
||||
constexpr int HorizontalPadding = 12; |
||||
constexpr int TextPadding = 15; |
||||
constexpr int ActionIconRadius = IconRadius - 4; |
||||
|
||||
constexpr double VerticalPadding = Height - 2 * IconRadius; |
||||
constexpr double IconYCenter = Height / 2; |
||||
constexpr double IconXCenter = HorizontalPadding + IconRadius; |
||||
|
||||
void |
||||
AudioItem::init() |
||||
{ |
||||
setMouseTracking(true); |
||||
setCursor(Qt::PointingHandCursor); |
||||
setAttribute(Qt::WA_Hover, true); |
||||
|
||||
playIcon_.addFile(":/icons/icons/ui/play-sign.png"); |
||||
pauseIcon_.addFile(":/icons/icons/ui/pause-symbol.png"); |
||||
|
||||
QList<QString> url_parts = url_.toString().split("mxc://"); |
||||
if (url_parts.size() != 2) { |
||||
qDebug() << "Invalid format for image" << url_.toString(); |
||||
return; |
||||
} |
||||
|
||||
QString media_params = url_parts[1]; |
||||
url_ = QString("%1/_matrix/media/r0/download/%2") |
||||
.arg(client_.data()->getHomeServer().toString(), media_params); |
||||
|
||||
player_ = new QMediaPlayer; |
||||
player_->setMedia(QUrl(url_)); |
||||
player_->setVolume(100); |
||||
player_->setNotifyInterval(1000); |
||||
|
||||
connect(client_.data(), &MatrixClient::fileDownloaded, this, &AudioItem::fileDownloaded); |
||||
connect(player_, &QMediaPlayer::stateChanged, this, [=](QMediaPlayer::State state) { |
||||
if (state == QMediaPlayer::StoppedState) { |
||||
state_ = AudioState::Play; |
||||
player_->setMedia(QUrl(url_)); |
||||
update(); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
AudioItem::AudioItem(QSharedPointer<MatrixClient> client, |
||||
const events::MessageEvent<msgs::Audio> &event, |
||||
QWidget *parent) |
||||
: QWidget(parent) |
||||
, url_{event.msgContent().url()} |
||||
, text_{event.content().body()} |
||||
, event_{event} |
||||
, client_{client} |
||||
{ |
||||
readableFileSize_ = calculateFileSize(event.msgContent().info().size); |
||||
|
||||
init(); |
||||
} |
||||
|
||||
AudioItem::AudioItem(QSharedPointer<MatrixClient> client, |
||||
const QString &url, |
||||
const QString &filename, |
||||
QWidget *parent) |
||||
: QWidget(parent) |
||||
, url_{url} |
||||
, text_{QFileInfo(filename).fileName()} |
||||
, client_{client} |
||||
{ |
||||
readableFileSize_ = calculateFileSize(QFileInfo(filename).size()); |
||||
|
||||
init(); |
||||
} |
||||
|
||||
QString |
||||
AudioItem::calculateFileSize(int nbytes) const |
||||
{ |
||||
if (nbytes < 1024) |
||||
return QString("%1 B").arg(nbytes); |
||||
|
||||
if (nbytes < 1024 * 1024) |
||||
return QString("%1 KB").arg(nbytes / 1024); |
||||
|
||||
return QString("%1 MB").arg(nbytes / 1024 / 1024); |
||||
} |
||||
|
||||
QSize |
||||
AudioItem::sizeHint() const |
||||
{ |
||||
return QSize(MaxWidth, Height); |
||||
} |
||||
|
||||
void |
||||
AudioItem::mousePressEvent(QMouseEvent *event) |
||||
{ |
||||
if (event->button() != Qt::LeftButton) |
||||
return; |
||||
|
||||
auto point = event->pos(); |
||||
|
||||
// Click on the download icon.
|
||||
if (QRect(HorizontalPadding, VerticalPadding / 2, IconDiameter, IconDiameter) |
||||
.contains(point)) { |
||||
if (state_ == AudioState::Play) { |
||||
state_ = AudioState::Pause; |
||||
player_->play(); |
||||
} else { |
||||
state_ = AudioState::Play; |
||||
player_->pause(); |
||||
} |
||||
|
||||
update(); |
||||
} else { |
||||
filenameToSave_ = QFileDialog::getSaveFileName(this, tr("Save File"), text_); |
||||
|
||||
if (filenameToSave_.isEmpty()) |
||||
return; |
||||
|
||||
client_->downloadFile(event_.eventId(), url_); |
||||
} |
||||
} |
||||
|
||||
void |
||||
AudioItem::fileDownloaded(const QString &event_id, const QByteArray &data) |
||||
{ |
||||
if (event_id != event_.eventId()) |
||||
return; |
||||
|
||||
try { |
||||
QFile file(filenameToSave_); |
||||
|
||||
if (!file.open(QIODevice::WriteOnly)) |
||||
return; |
||||
|
||||
file.write(data); |
||||
file.close(); |
||||
} catch (const std::exception &ex) { |
||||
qDebug() << "Error while saving file to:" << ex.what(); |
||||
} |
||||
} |
||||
|
||||
void |
||||
AudioItem::paintEvent(QPaintEvent *event) |
||||
{ |
||||
Q_UNUSED(event); |
||||
|
||||
QPainter painter(this); |
||||
painter.setRenderHint(QPainter::Antialiasing); |
||||
|
||||
QFont font("Open Sans"); |
||||
font.setPixelSize(12); |
||||
font.setWeight(80); |
||||
|
||||
QFontMetrics fm(font); |
||||
|
||||
int computedWidth = std::min( |
||||
fm.width(text_) + 2 * IconRadius + VerticalPadding * 2 + TextPadding, (double)MaxWidth); |
||||
|
||||
QPainterPath path; |
||||
path.addRoundedRect(QRectF(0, 0, computedWidth, Height), 10, 10); |
||||
|
||||
painter.setPen(Qt::NoPen); |
||||
painter.fillPath(path, backgroundColor_); |
||||
painter.drawPath(path); |
||||
|
||||
QPainterPath circle; |
||||
circle.addEllipse(QPoint(IconXCenter, IconYCenter), IconRadius, IconRadius); |
||||
|
||||
painter.setPen(Qt::NoPen); |
||||
painter.fillPath(circle, iconColor_); |
||||
painter.drawPath(circle); |
||||
|
||||
QIcon icon_; |
||||
if (state_ == AudioState::Play) |
||||
icon_ = playIcon_; |
||||
else |
||||
icon_ = pauseIcon_; |
||||
|
||||
icon_.paint(&painter, |
||||
QRect(IconXCenter - ActionIconRadius / 2, |
||||
IconYCenter - ActionIconRadius / 2, |
||||
ActionIconRadius, |
||||
ActionIconRadius), |
||||
Qt::AlignCenter, |
||||
QIcon::Normal); |
||||
|
||||
const int textStartX = HorizontalPadding + 2 * IconRadius + TextPadding; |
||||
const int textStartY = VerticalPadding + fm.ascent() / 2; |
||||
|
||||
// Draw the filename.
|
||||
QString elidedText = |
||||
fm.elidedText(text_, |
||||
Qt::ElideRight, |
||||
computedWidth - HorizontalPadding * 2 - TextPadding - 2 * IconRadius); |
||||
|
||||
painter.setFont(font); |
||||
painter.setPen(QPen(textColor_)); |
||||
painter.drawText(QPoint(textStartX, textStartY), elidedText); |
||||
|
||||
// Draw the filesize.
|
||||
font.setWeight(50); |
||||
painter.setFont(font); |
||||
painter.setPen(QPen(textColor_)); |
||||
painter.drawText(QPoint(textStartX, textStartY + 1.5 * fm.ascent()), readableFileSize_); |
||||
} |
Loading…
Reference in new issue