diff include/gui/pages/seasons.h @ 327:b5d6c27c308f

anime: refactor Anime::SeriesSeason to Season class ToLocalString has also been altered to take in both season and year because lots of locales actually treat formatting seasons differently! most notably is Russian which adds a suffix at the end to notate seasons(??)
author Paper <paper@paper.us.eu.org>
date Thu, 13 Jun 2024 01:49:18 -0400
parents 78929794e7d8
children 6b0768158dcd
line wrap: on
line diff
--- a/include/gui/pages/seasons.h	Thu Jun 13 00:42:00 2024 -0400
+++ b/include/gui/pages/seasons.h	Thu Jun 13 01:49:18 2024 -0400
@@ -13,30 +13,24 @@
 class QListWidget;
 class QToolButton;
 
-Q_DECLARE_METATYPE(Anime::SeriesSeason);
-Q_DECLARE_METATYPE(Date::Year);
+Q_DECLARE_METATYPE(Anime::Season);
 
 class SeasonsPageSearchThread : public QThread {
 	Q_OBJECT
 
 public:
 	SeasonsPageSearchThread(QObject* parent = nullptr);
-	void AddToQueue(Anime::SeriesSeason season, Date::Year year);
+	void AddToQueue(Anime::Season season);
 
 protected:
 	void run() override;
 
 private:
-	struct Season {
-		Anime::SeriesSeason season;
-		Date::Year year;
-	};
-
-	std::queue<Season> queue_;
+	std::queue<Anime::Season> queue_;
 	std::mutex queue_mutex_;
 
 signals:
-	void ReceivedSeason(Anime::SeriesSeason season, Date::Year year);
+	void ReceivedSeason(Anime::Season season);
 };
 
 class SeasonsPage final : public QFrame {
@@ -44,15 +38,14 @@
 
 public:
 	SeasonsPage(QWidget* parent = nullptr);
-	void SetSeason(Anime::SeriesSeason season, Date::Year year);
+	void SetSeason(Anime::Season season);
 	void Refresh();
 
 protected:
 	QListWidget* buttons = nullptr;
 	QToolButton* season_button = nullptr;
 
-	Anime::SeriesSeason season_;
-	Date::Year year_;
+	Anime::Season season_;
 };
 
 #endif // MINORI_GUI_PAGES_SEASONS_H_