nheko/src/timeline/widgets/ImageItem.cc

260 lines
7.7 KiB
C++
Raw Normal View History

2017-04-28 13:56:45 +02:00
/*
* 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 <QDesktopServices>
#include <QFileDialog>
2017-09-10 11:58:00 +02:00
#include <QFileInfo>
2017-04-28 13:56:45 +02:00
#include <QPainter>
#include <QPixmap>
#include <QUuid>
2017-04-28 13:56:45 +02:00
2017-12-21 17:27:57 +01:00
#include "Config.h"
#include "Logging.hpp"
#include "MatrixClient.h"
2018-02-19 22:32:37 +01:00
#include "Utils.h"
#include "dialogs/ImageOverlay.h"
2017-11-30 12:53:28 +01:00
#include "timeline/widgets/ImageItem.h"
2017-04-28 13:56:45 +02:00
void
ImageItem::downloadMedia(const QUrl &url)
2017-04-28 13:56:45 +02:00
{
http::client()->download(url.toString().toStdString(),
[this, url](const std::string &data,
const std::string &,
const std::string &,
mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn(
"failed to retrieve image {}: {} {}",
url.toString().toStdString(),
err->matrix_error.error,
static_cast<int>(err->status_code));
return;
}
QPixmap img;
img.loadFromData(QByteArray(data.data(), data.size()));
emit imageDownloaded(img);
});
}
2017-04-28 13:56:45 +02:00
void
ImageItem::saveImage(const QString &filename, const QByteArray &data)
{
try {
QFile file(filename);
if (!file.open(QIODevice::WriteOnly))
return;
2017-04-28 13:56:45 +02:00
file.write(data);
file.close();
} catch (const std::exception &e) {
nhlog::ui()->warn("Error while saving file to: {}", e.what());
2017-09-10 11:58:00 +02:00
}
}
2017-04-28 13:56:45 +02:00
void
ImageItem::init()
{
setMouseTracking(true);
setCursor(Qt::PointingHandCursor);
setAttribute(Qt::WA_Hover, true);
2017-04-28 13:56:45 +02:00
connect(this, &ImageItem::imageDownloaded, this, &ImageItem::setImage);
connect(this, &ImageItem::imageSaved, this, &ImageItem::saveImage);
downloadMedia(url_);
}
ImageItem::ImageItem(const mtx::events::RoomEvent<mtx::events::msg::Image> &event, QWidget *parent)
: QWidget(parent)
, event_{event}
{
url_ = QString::fromStdString(event.content.url);
text_ = QString::fromStdString(event.content.body);
init();
2017-09-10 11:58:00 +02:00
}
ImageItem::ImageItem(const QString &url, const QString &filename, uint64_t size, QWidget *parent)
2017-09-10 11:58:00 +02:00
: QWidget(parent)
2017-11-05 22:04:55 +01:00
, url_{url}
, text_{filename}
2017-09-10 11:58:00 +02:00
{
Q_UNUSED(size);
init();
2017-04-28 13:56:45 +02:00
}
2017-08-20 12:47:22 +02:00
void
ImageItem::openUrl()
2017-04-28 13:56:45 +02:00
{
2017-09-10 11:58:00 +02:00
if (url_.toString().isEmpty())
return;
2017-04-28 13:56:45 +02:00
auto urlToOpen = utils::mxcToHttp(
url_, QString::fromStdString(http::client()->server()), http::client()->port());
if (!QDesktopServices::openUrl(urlToOpen))
nhlog::ui()->warn("could not open url: {}", urlToOpen.toStdString());
2017-04-28 13:56:45 +02:00
}
2017-08-20 12:47:22 +02:00
QSize
ImageItem::sizeHint() const
2017-04-28 13:56:45 +02:00
{
2017-09-10 11:58:00 +02:00
if (image_.isNull())
return QSize(max_width_, bottom_height_);
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
return QSize(width_, height_);
2017-04-28 13:56:45 +02:00
}
2017-08-20 12:47:22 +02:00
void
ImageItem::setImage(const QPixmap &image)
2017-04-28 13:56:45 +02:00
{
2018-02-19 22:32:37 +01:00
image_ = image;
scaled_image_ = utils::scaleDown<QPixmap>(max_width_, max_height_, image_);
width_ = scaled_image_.width();
height_ = scaled_image_.height();
setFixedSize(width_, height_);
2017-09-10 11:58:00 +02:00
update();
2017-04-28 13:56:45 +02:00
}
2017-08-20 12:47:22 +02:00
void
ImageItem::mousePressEvent(QMouseEvent *event)
2017-04-28 13:56:45 +02:00
{
if (!isInteractive_) {
event->accept();
return;
}
2017-09-10 11:58:00 +02:00
if (event->button() != Qt::LeftButton)
return;
if (image_.isNull()) {
openUrl();
return;
}
2017-12-21 17:27:57 +01:00
if (textRegion_.contains(event->pos())) {
2017-09-10 11:58:00 +02:00
openUrl();
} else {
auto imgDialog = new dialogs::ImageOverlay(image_);
imgDialog->show();
2017-09-10 11:58:00 +02:00
}
2017-04-28 13:56:45 +02:00
}
2017-08-20 12:47:22 +02:00
void
ImageItem::resizeEvent(QResizeEvent *event)
2017-04-28 13:56:45 +02:00
{
2018-02-19 22:32:37 +01:00
if (!image_)
return QWidget::resizeEvent(event);
scaled_image_ = utils::scaleDown<QPixmap>(max_width_, max_height_, image_);
2017-04-28 13:56:45 +02:00
2018-02-19 22:32:37 +01:00
width_ = scaled_image_.width();
height_ = scaled_image_.height();
setFixedSize(width_, height_);
2017-04-28 13:56:45 +02:00
}
2017-08-20 12:47:22 +02:00
void
ImageItem::paintEvent(QPaintEvent *event)
2017-04-28 13:56:45 +02:00
{
2017-09-10 11:58:00 +02:00
Q_UNUSED(event);
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
QPainter painter(this);
painter.setRenderHint(QPainter::Antialiasing);
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
QFont font("Open Sans");
2017-12-21 17:27:57 +01:00
font.setPixelSize(conf::fontSize);
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
QFontMetrics metrics(font);
const int fontHeight = metrics.height() + metrics.ascent();
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
if (image_.isNull()) {
QString elidedText = metrics.elidedText(text_, Qt::ElideRight, max_width_ - 10);
2017-04-28 13:56:45 +02:00
2017-12-21 17:27:57 +01:00
setFixedSize(metrics.width(elidedText), fontHeight);
2017-09-10 11:58:00 +02:00
painter.setFont(font);
painter.setPen(QPen(QColor(66, 133, 244)));
painter.drawText(QPoint(0, fontHeight / 2), elidedText);
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
return;
}
2017-04-28 13:56:45 +02:00
2017-12-21 17:27:57 +01:00
imageRegion_ = QRectF(0, 0, width_, height_);
QPainterPath path;
path.addRoundedRect(imageRegion_, 5, 5);
painter.setPen(Qt::NoPen);
painter.fillPath(path, scaled_image_);
painter.drawPath(path);
2017-04-28 13:56:45 +02:00
2017-12-21 17:27:57 +01:00
// Bottom text section
if (isInteractive_ && underMouse()) {
const int textBoxHeight = fontHeight / 2 + 6;
2017-12-21 17:27:57 +01:00
textRegion_ = QRectF(0, height_ - textBoxHeight, width_, textBoxHeight);
QPainterPath textPath;
textPath.addRoundedRect(textRegion_, 0, 0);
painter.fillPath(textPath, QColor(40, 40, 40, 140));
2017-04-28 13:56:45 +02:00
2017-09-10 11:58:00 +02:00
QString elidedText = metrics.elidedText(text_, Qt::ElideRight, width_ - 10);
2017-04-28 13:56:45 +02:00
2017-09-28 13:42:16 +02:00
font.setWeight(80);
2017-09-10 11:58:00 +02:00
painter.setFont(font);
painter.setPen(QPen(QColor("white")));
2017-12-21 17:27:57 +01:00
textRegion_.adjust(5, 0, 5, 0);
painter.drawText(textRegion_, Qt::AlignVCenter, elidedText);
2017-09-10 11:58:00 +02:00
}
2017-04-28 13:56:45 +02:00
}
void
ImageItem::saveAs()
{
auto filename = QFileDialog::getSaveFileName(this, tr("Save image"), text_);
if (filename.isEmpty())
return;
const auto url = url_.toString().toStdString();
http::client()->download(
url,
[this, filename, url](const std::string &data,
const std::string &,
const std::string &,
mtx::http::RequestErr err) {
if (err) {
nhlog::net()->warn("failed to retrieve image {}: {} {}",
url,
err->matrix_error.error,
static_cast<int>(err->status_code));
return;
}
emit imageSaved(filename, QByteArray(data.data(), data.size()));
});
}