Mercurial > minori
view include/gui/pages/seasons.h @ 301:b1f625b0227c
*: convert all files CRLF -> LF
some files were in DOS format, others were in unix. now everything
(that at least is under our control) should all be the same format
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Mon, 13 May 2024 15:04:51 -0400 |
parents | b82841e76e79 |
children | 78929794e7d8 |
line wrap: on
line source
#ifndef MINORI_GUI_PAGES_SEASONS_H_ #define MINORI_GUI_PAGES_SEASONS_H_ #include <QFrame> #include "core/anime.h" #include "core/date.h" class QListWidget; class QToolButton; class SeasonsPage final : public QFrame { Q_OBJECT public: SeasonsPage(QWidget* parent = nullptr); void SetSeason(Anime::SeriesSeason season, Date::Year year); protected: QListWidget* buttons = nullptr; QToolButton* season_button = nullptr; }; #endif // MINORI_GUI_PAGES_SEASONS_H_