diff --git a/src/ImageItem.cc b/src/ImageItem.cc
index 77523465..e84a2a9f 100644
--- a/src/ImageItem.cc
+++ b/src/ImageItem.cc
@@ -18,6 +18,7 @@
#include <QBrush>
#include <QDebug>
#include <QDesktopServices>
+#include <QFileInfo>
#include <QImage>
#include <QPainter>
#include <QPixmap>
@@ -26,169 +27,198 @@
#include "ImageOverlayDialog.h"
namespace events = matrix::events;
-namespace msgs = matrix::events::messages;
+namespace msgs = matrix::events::messages;
ImageItem::ImageItem(QSharedPointer<MatrixClient> client,
- const events::MessageEvent<msgs::Image> &event,
- QWidget *parent)
+ const events::MessageEvent<msgs::Image> &event,
+ QWidget *parent)
: QWidget(parent)
, event_{ event }
, client_{ client }
{
- setMouseTracking(true);
- setCursor(Qt::PointingHandCursor);
- setAttribute(Qt::WA_Hover, true);
+ setMouseTracking(true);
+ setCursor(Qt::PointingHandCursor);
+ setAttribute(Qt::WA_Hover, true);
- url_ = event.msgContent().url();
- text_ = event.content().body();
+ url_ = event.msgContent().url();
+ text_ = event.content().body();
- QList<QString> url_parts = url_.toString().split("mxc://");
+ QList<QString> url_parts = url_.toString().split("mxc://");
- if (url_parts.size() != 2) {
- qDebug() << "Invalid format for image" << url_.toString();
- return;
- }
+ 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);
+ QString media_params = url_parts[1];
+ url_ = QString("%1/_matrix/media/r0/download/%2")
+ .arg(client_.data()->getHomeServer().toString(), media_params);
- client_.data()->downloadImage(event.eventId(), url_);
+ client_.data()->downloadImage(event.eventId(), url_);
- connect(client_.data(),
- SIGNAL(imageDownloaded(const QString &, const QPixmap &)),
- this,
- SLOT(imageDownloaded(const QString &, const QPixmap &)));
+ connect(client_.data(),
+ SIGNAL(imageDownloaded(const QString &, const QPixmap &)),
+ this,
+ SLOT(imageDownloaded(const QString &, const QPixmap &)));
+}
+
+ImageItem::ImageItem(QSharedPointer<MatrixClient> client,
+ const QString &url,
+ const QString &filename,
+ QWidget *parent)
+ : QWidget(parent)
+ , url_{ url }
+ , text_{ QFileInfo(filename).fileName() }
+ , client_{ client }
+{
+ setMouseTracking(true);
+ setCursor(Qt::PointingHandCursor);
+ setAttribute(Qt::WA_Hover, true);
+
+ 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);
+
+ setImage(QPixmap(filename));
}
void
ImageItem::imageDownloaded(const QString &event_id, const QPixmap &img)
{
- if (event_id != event_.eventId())
- return;
+ if (event_id != event_.eventId())
+ return;
- setImage(img);
+ setImage(img);
}
void
ImageItem::openUrl()
{
- if (url_.toString().isEmpty())
- return;
+ if (url_.toString().isEmpty())
+ return;
- if (!QDesktopServices::openUrl(url_))
- qWarning() << "Could not open url" << url_.toString();
+ if (!QDesktopServices::openUrl(url_))
+ qWarning() << "Could not open url" << url_.toString();
}
void
ImageItem::scaleImage()
{
- if (image_.isNull())
- return;
+ if (image_.isNull())
+ return;
- auto width_ratio = (double)max_width_ / (double)image_.width();
- auto height_ratio = (double)max_height_ / (double)image_.height();
+ auto width_ratio = (double)max_width_ / (double)image_.width();
+ auto height_ratio = (double)max_height_ / (double)image_.height();
- auto min_aspect_ratio = std::min(width_ratio, height_ratio);
+ auto min_aspect_ratio = std::min(width_ratio, height_ratio);
- if (min_aspect_ratio > 1) {
- width_ = image_.width();
- height_ = image_.height();
- } else {
- width_ = image_.width() * min_aspect_ratio;
- height_ = image_.height() * min_aspect_ratio;
- }
+ if (min_aspect_ratio > 1) {
+ width_ = image_.width();
+ height_ = image_.height();
+ } else {
+ width_ = image_.width() * min_aspect_ratio;
+ height_ = image_.height() * min_aspect_ratio;
+ }
- setFixedSize(width_, height_);
- scaled_image_ = image_.scaled(width_, height_, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
+ setFixedSize(width_, height_);
+ scaled_image_ =
+ image_.scaled(width_, height_, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
}
QSize
ImageItem::sizeHint() const
{
- if (image_.isNull())
- return QSize(max_width_, bottom_height_);
+ if (image_.isNull())
+ return QSize(max_width_, bottom_height_);
- return QSize(width_, height_);
+ return QSize(width_, height_);
}
void
ImageItem::setImage(const QPixmap &image)
{
- image_ = image;
- scaleImage();
- update();
+ image_ = image;
+ scaleImage();
+ update();
}
void
ImageItem::mousePressEvent(QMouseEvent *event)
{
- if (event->button() != Qt::LeftButton)
- return;
+ if (event->button() != Qt::LeftButton)
+ return;
- if (image_.isNull()) {
- openUrl();
- return;
- }
+ if (image_.isNull()) {
+ openUrl();
+ return;
+ }
- auto point = event->pos();
+ auto point = event->pos();
- // Click on the text box.
- if (QRect(0, height_ - bottom_height_, width_, bottom_height_).contains(point)) {
- openUrl();
- } else {
- auto image_dialog = new ImageOverlayDialog(image_, this);
- image_dialog->show();
- }
+ // Click on the text box.
+ if (QRect(0, height_ - bottom_height_, width_, bottom_height_).contains(point)) {
+ openUrl();
+ } else {
+ auto image_dialog = new ImageOverlayDialog(image_, this);
+ image_dialog->show();
+ }
}
void
ImageItem::resizeEvent(QResizeEvent *event)
{
- Q_UNUSED(event);
+ Q_UNUSED(event);
- scaleImage();
+ scaleImage();
}
void
ImageItem::paintEvent(QPaintEvent *event)
{
- Q_UNUSED(event);
+ Q_UNUSED(event);
- QPainter painter(this);
- painter.setRenderHint(QPainter::Antialiasing);
+ QPainter painter(this);
+ painter.setRenderHint(QPainter::Antialiasing);
- QFont font("Open Sans");
- font.setPixelSize(12);
+ QFont font("Open Sans");
+ font.setPixelSize(12);
- QFontMetrics metrics(font);
- int fontHeight = metrics.height();
+ QFontMetrics metrics(font);
+ int fontHeight = metrics.height();
- if (image_.isNull()) {
- int height = fontHeight + 10;
+ if (image_.isNull()) {
+ int height = fontHeight + 10;
- QString elidedText = metrics.elidedText(text_, Qt::ElideRight, max_width_ - 10);
+ QString elidedText = metrics.elidedText(text_, Qt::ElideRight, max_width_ - 10);
- setFixedSize(metrics.width(elidedText), fontHeight + 10);
+ setFixedSize(metrics.width(elidedText), fontHeight + 10);
- painter.setFont(font);
- painter.setPen(QPen(QColor(66, 133, 244)));
- painter.drawText(QPoint(0, height / 2 + 2), elidedText);
+ painter.setFont(font);
+ painter.setPen(QPen(QColor(66, 133, 244)));
+ painter.drawText(QPoint(0, height / 2 + 2), elidedText);
- return;
- }
+ return;
+ }
- painter.fillRect(QRect(0, 0, width_, height_), scaled_image_);
+ painter.fillRect(QRect(0, 0, width_, height_), scaled_image_);
- if (underMouse()) {
- // Bottom text section
- painter.fillRect(QRect(0, height_ - bottom_height_, width_, bottom_height_),
- QBrush(QColor(33, 33, 33, 128)));
+ if (underMouse()) {
+ // Bottom text section
+ painter.fillRect(QRect(0, height_ - bottom_height_, width_, bottom_height_),
+ QBrush(QColor(33, 33, 33, 128)));
- QString elidedText = metrics.elidedText(text_, Qt::ElideRight, width_ - 10);
+ QString elidedText = metrics.elidedText(text_, Qt::ElideRight, width_ - 10);
- font.setWeight(500);
- painter.setFont(font);
- painter.setPen(QPen(QColor("white")));
- painter.drawText(QPoint(5, height_ - fontHeight / 2), elidedText);
- }
+ font.setWeight(500);
+ painter.setFont(font);
+ painter.setPen(QPen(QColor("white")));
+ painter.drawText(QPoint(5, height_ - fontHeight / 2), elidedText);
+ }
}
|