Mercurial > minori
view src/gui/widgets/poster.cc @ 258:862d0d8619f6
*: HUUUGE changes
animia has been renamed to animone, so instead of thinking of a
health condition, you think of a beautiful flower :)
I've also edited some of the code for animone, but I have no idea
if it even works or not because I don't have a mac or windows
machine lying around. whoops!
... anyway, all of the changes divergent from Anisthesia are now
licensed under BSD. it's possible that I could even rewrite most
of the code to where I don't even have to keep the MIT license,
but that's thinking too far into the future
I've been slacking off on implementing the anime seasons page,
mostly out of laziness. I think I'd have to create another db file
specifically for the seasons
anyway, this code is being pushed *primarily* because the hard drive
it's on is failing! yay :)
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 01 Apr 2024 02:43:44 -0400 |
parents | fe702c8f161f |
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(); }