view include/gui/widgets/anime_info.h @ 259:0362f3c4534c

widgets/graph: improve drawing code
author Paper <paper@paper.us.eu.org>
date Mon, 01 Apr 2024 18:11:15 -0400
parents 862d0d8619f6
children 3ec7804abf17
line wrap: on
line source

#ifndef __gui__widgets__anime_info_h
#define __gui__widgets__anime_info_h

#include <QWidget>

namespace TextWidgets {
class OneLineSection;
class LabelledSection;
class SelectableSection;
} // namespace TextWidgets

namespace Anime {
class Anime;
}

class AnimeInfoWidget final : public QWidget {
	Q_OBJECT

public:
	AnimeInfoWidget(QWidget* parent = nullptr);
	AnimeInfoWidget(const Anime::Anime& anime, QWidget* parent = nullptr);
	void SetAnime(const Anime::Anime& anime);

private:
	std::shared_ptr<TextWidgets::OneLineSection> _title = nullptr;
	std::shared_ptr<TextWidgets::LabelledSection> _details = nullptr;
	std::shared_ptr<TextWidgets::SelectableSection> _synopsis = nullptr;
};

#endif // __gui__widgets__anime_info_h