diff src/gui/widgets/anime_button.cc @ 273:f31305b9f60a

*: various code safety changes this also makes the code build on Qt 5.7. I can't test it though because I don't have it working... FAIL!
author Paper <paper@paper.us.eu.org>
date Thu, 18 Apr 2024 16:53:17 -0400
parents 862d0d8619f6
children 9a88e1725fd2
line wrap: on
line diff
--- a/src/gui/widgets/anime_button.cc	Thu Apr 18 16:51:35 2024 -0400
+++ b/src/gui/widgets/anime_button.cc	Thu Apr 18 16:53:17 2024 -0400
@@ -26,15 +26,17 @@
 *|_________| Synopsis               *
 \***********************************/
 
-AnimeButton::AnimeButton(QWidget* parent) : QFrame(parent) {
+AnimeButton::AnimeButton(QWidget* parent)
+	: QFrame(parent)
+	, _info(tr("Aired:\nEpisodes:\nGenres:\nProducers:\nScore:\nPopularity:"), "\n\n\n\n\n", nullptr)
+	, _synopsis("", nullptr) {
 	setFrameShadow(QFrame::Plain);
 	setFrameShape(QFrame::Box);
 	QHBoxLayout* ly = new QHBoxLayout(this);
 
-	_poster = new Poster(this);
-	_poster->setFixedSize(120, 170);
-	_poster->SetClickable(false);
-	ly->addWidget(_poster, 0, Qt::AlignTop);
+	_poster.setFixedSize(120, 170);
+	_poster.SetClickable(false);
+	ly->addWidget(&_poster, 0, Qt::AlignTop);
 
 	{
 		QWidget* misc_section = new QWidget(this);
@@ -43,39 +45,37 @@
 		QVBoxLayout* misc_layout = new QVBoxLayout(misc_section);
 		misc_layout->setContentsMargins(0, 0, 0, 0);
 
-		_title = new QLabel("", misc_section);
-		_title->setAutoFillBackground(true);
-		_title->setContentsMargins(4, 4, 4, 4);
-		_title->setStyleSheet("background-color: rgba(0, 245, 25, 50);");
+		_title.setAutoFillBackground(true);
+		_title.setContentsMargins(4, 4, 4, 4);
+		_title.setStyleSheet("background-color: rgba(0, 245, 25, 50);");
 		{
-			QFont fnt(_title->font());
+			QFont fnt(_title.font());
 			fnt.setWeight(QFont::Bold);
-			_title->setFont(fnt);
+			_title.setFont(fnt);
 		}
-		misc_layout->addWidget(_title);
+		misc_layout->addWidget(&_title);
 
-		_info = new TextWidgets::LabelledParagraph(tr("Aired:\nEpisodes:\nGenres:\nProducers:\nScore:\nPopularity:"),
-		                                           "\n\n\n\n\n", misc_section);
 		{
-			QFont fnt(_info->GetLabels()->font());
+			QFont fnt(_info.GetLabels()->font());
 			fnt.setWeight(QFont::Bold);
-			_info->GetLabels()->setFont(fnt);
+			_info.GetLabels()->setFont(fnt);
 		}
-		_info->setContentsMargins(4, 0, 4, 0);
-		_info->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum);
-		misc_layout->addWidget(_info);
+
+		_info.setContentsMargins(4, 0, 4, 0);
+		_info.setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Minimum);
+		misc_layout->addWidget(&_info);
 
-		QWidget* dummy = new QWidget(misc_section);
-		dummy->setContentsMargins(4, 0, 4, 0);
-		QVBoxLayout* dummy_layout = new QVBoxLayout(dummy);
-		dummy_layout->setSpacing(0);
-		// dummy_layout->setContentsMargins(0, 0, 0, 0);
-		dummy_layout->setContentsMargins(0, 0, 0, 0);
+		{
+			QWidget* dummy = new QWidget(misc_section);
+			dummy->setContentsMargins(4, 0, 4, 0);
+			QVBoxLayout* dummy_layout = new QVBoxLayout(dummy);
+			dummy_layout->setSpacing(0);
+			dummy_layout->setContentsMargins(0, 0, 0, 0);
 
-		_synopsis = new ElidedLabel("", dummy);
-		_synopsis->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
-		dummy_layout->addWidget(_synopsis);
-		misc_layout->addWidget(dummy);
+			_synopsis.setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Expanding);
+			dummy_layout->addWidget(&_synopsis);
+			misc_layout->addWidget(dummy);
+		}
 
 		ly->addWidget(misc_section, 0, Qt::AlignTop);
 	}
@@ -86,20 +86,16 @@
 }
 
 void AnimeButton::SetAnime(const Anime::Anime& anime) {
-	_poster->SetAnime(anime);
-	_title->setText(Strings::ToQString(anime.GetUserPreferredTitle()));
+	_poster.SetAnime(anime);
+	_title.setText(Strings::ToQString(anime.GetUserPreferredTitle()));
 
 	{
 		const QLocale& locale = session.config.locale.GetLocale();
-		_info->GetParagraph()->SetText(locale.toString(anime.GetAirDate().GetAsQDate(), "dd MMM yyyy") + "\n" +
-		                               QString::number(anime.GetEpisodes()) + "\n" +
-		                               Strings::ToQString(Strings::Implode(anime.GetGenres(), ", ")) + "\n" + "...\n" +
-		                               QString::number(anime.GetAudienceScore()) + "%\n" + "...");
+		_info.GetParagraph()->SetText(locale.toString(anime.GetAirDate().GetAsQDate(), "dd MMM yyyy") + "\n" +
+		                              QString::number(anime.GetEpisodes()) + "\n" +
+		                              Strings::ToQString(Strings::Implode(anime.GetGenres(), ", ")) + "\n" + "...\n" +
+		                              QString::number(anime.GetAudienceScore()) + "%\n" + "...");
 	}
 
-	{
-		QString synopsis = Strings::ToQString(anime.GetSynopsis());
-		QFontMetrics metrics(_synopsis->font());
-		_synopsis->SetText(Strings::ToQString(anime.GetSynopsis()));
-	}
-}
\ No newline at end of file
+	_synopsis.SetText(Strings::ToQString(anime.GetSynopsis()));
+}