view include/gui/widgets/poster.h @ 72:893ad99b174d

dep/anitomy: add CXX_STANDARD to CMakeLists.txt this fixes bugs when building on macOS, because Apple clang defaults to C++98(?) HG Enter commit message. Lines beginning with 'HG:' are removed.
author Paper <mrpapersonic@gmail.com>
date Tue, 03 Oct 2023 04:58:38 -0400
parents 442065432549
children d3e9310598b1
line wrap: on
line source

#ifndef __gui__widgets__poster_h
#define __gui__widgets__poster_h
#include <QFrame>
#include <QImage>

class QWidget;
class ClickableLabel;

class Poster : public QFrame {
		Q_OBJECT

	public:
		Poster(int id, QWidget* parent = nullptr);

	protected:
		void resizeEvent(QResizeEvent*) override;

	private:
		QImage img;
		ClickableLabel* label;
};

#endif // __gui__widgets__poster_h