Mercurial > minori
view src/gui/widgets/poster.cc @ 264:9a04802848c0
*: improve multiple things
e.g. making some strings.cc functions modify strings in-place,
improving m4_ax_have_qt.m4 code, making anime_db.cc rely on
std::optional rather than std::shared_ptr (which was stupid
anyway)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Thu, 11 Apr 2024 10:15:57 -0400 |
parents | 862d0d8619f6 |
children | f31305b9f60a |
line wrap: on
line source
#include "gui/widgets/poster.h" #include "core/anime_db.h" #include "core/http.h" #include "core/session.h" #include "core/strings.h" #include "gui/widgets/clickable_label.h" #include <QByteArray> #include <QDebug> #include <QDesktopServices> #include <QFrame> #include <QHBoxLayout> #include <QLabel> #include <QMessageBox> #include <QPixmap> #include <QThread> #include <QUrl> Poster::Poster(QWidget* parent) : QFrame(parent) { QHBoxLayout* layout = new QHBoxLayout(this); layout->setContentsMargins(1, 1, 1, 1); setCursor(Qt::PointingHandCursor); setFixedSize(150, 225); setFrameShape(QFrame::Box); setFrameShadow(QFrame::Plain); label = new ClickableLabel(this); label->setAlignment(Qt::AlignCenter); layout->addWidget(label); } Poster::Poster(const Anime::Anime& anime, QWidget* parent) : Poster(parent) { SetAnime(anime); } void Poster::SetAnime(const Anime::Anime& anime) { /* todo: only download on showEvent() */ { HTTP::GetThread* thread = new HTTP::GetThread(anime.GetPosterUrl(), {}, this); connect(thread, &HTTP::GetThread::ReceivedData, this, &Poster::ImageDownloadFinished); connect(thread, &HTTP::GetThread::finished, thread, &HTTP::GetThread::deleteLater); thread->start(); } service_url = Strings::ToQString(anime.GetServiceUrl()); if (clickable) { label->disconnect(); connect(label, &ClickableLabel::clicked, this, [this] { QDesktopServices::openUrl(service_url); }); } } void Poster::SetClickable(bool enabled) { clickable = enabled; if (clickable && !service_url.isEmpty()) { setCursor(Qt::PointingHandCursor); label->disconnect(); connect(label, &ClickableLabel::clicked, this, [this] { QDesktopServices::openUrl(service_url); }); } else { setCursor(Qt::ArrowCursor); label->disconnect(); } } void Poster::ImageDownloadFinished(const QByteArray& arr) { img.loadFromData(arr); RenderToLabel(); } void Poster::RenderToLabel() { const QPixmap pixmap = QPixmap::fromImage(img); if (pixmap.isNull()) return; label->setPixmap(pixmap.scaled(label->size(), Qt::KeepAspectRatioByExpanding, Qt::SmoothTransformation)); } void Poster::resizeEvent(QResizeEvent*) { RenderToLabel(); }