Mercurial > minori
view include/gui/pages/seasons.h @ 268:382b50754fe4
dep/animone: make osx code a bit less hacky
it would be nice if macos actually provided a real API for getting
window titles (outside of the accessibility api). the accessibility
API is a real mess to work with; the user has to give permission to
access it under newer versions.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Fri, 12 Apr 2024 05:21:45 -0400 |
parents | 96416310ea14 |
children | b82841e76e79 |
line wrap: on
line source
#ifndef MINORI_GUI_PAGES_SEASONS_H_ #define MINORI_GUI_PAGES_SEASONS_H_ #include <QWidget> #include "core/anime.h" #include "core/date.h" class QListWidget; class QToolButton; class SeasonsPage final : public QWidget { 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_