diff include/gui/widgets/poster.h @ 291:9a88e1725fd2

*: refactor lots of stuff I forgot to put this into different commits, oops! anyway, it doesn't really matter *that* much since this is an unfinished hobby project anyway. once it starts getting stable commit history will be more important, but for now it's not that big of a deal
author Paper <paper@paper.us.eu.org>
date Sun, 12 May 2024 16:31:07 -0400
parents f31305b9f60a
children b82841e76e79
line wrap: on
line diff
--- a/include/gui/widgets/poster.h	Wed May 08 17:32:28 2024 -0400
+++ b/include/gui/widgets/poster.h	Sun May 12 16:31:07 2024 -0400
@@ -4,6 +4,7 @@
 #include <QImage>
 
 #include "gui/widgets/clickable_label.h"
+#include "core/http.h"
 
 class QWidget;
 namespace Anime {
@@ -25,6 +26,8 @@
 	void RenderToLabel();
 
 private:
+	HTTP::RequestThread get_thread_;
+
 	QImage img_;
 	QString service_url_;
 	ClickableLabel label_;