Mercurial > minori
view include/gui/dialog/information.h @ 83:d02fdf1d6708
*: huuuge update
1. make the now playing page function correctly
2. de-constructorfy many of our custom widgets,
allowing them to be changed on-the-fly from
the Now Playing page
3. ... :)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Tue, 24 Oct 2023 22:01:02 -0400 |
parents | 3d2decf093bb |
children | c69230dc2b5d |
line wrap: on
line source
#ifndef __gui__dialog__information_h #define __gui__dialog__information_h #include "core/anime.h" #include "core/date.h" #include <QDialog> #include <functional> class InformationDialog : public QDialog { Q_OBJECT public: InformationDialog(Anime::Anime& anime, std::function<void()> accept, QWidget* parent = nullptr); private: void SaveData(Anime::Anime& anime); unsigned int _progress; unsigned int _score; bool _rewatching; Anime::ListStatus _status; std::string _notes; Date _started; Date _completed; }; #endif // __gui__dialog__information_h