Mercurial > minori
annotate include/gui/dialog/information.h @ 93:d5efb81540b3
statistics: add graph!
also now we have a VERY VERY simple graph widget that probably
sucks and doesn't work half the time :)
| author | Paper <mrpapersonic@gmail.com> |
|---|---|
| date | Wed, 01 Nov 2023 13:52:34 -0400 |
| parents | c69230dc2b5d |
| children | 8043152ef9d4 |
| rev | line source |
|---|---|
| 9 | 1 #ifndef __gui__dialog__information_h |
| 2 #define __gui__dialog__information_h | |
| 85 | 3 |
| 63 | 4 #include "core/anime.h" |
| 5 #include "core/date.h" | |
| 9 | 6 #include <QDialog> |
| 7 #include <functional> | |
| 8 | |
| 9 class InformationDialog : public QDialog { | |
| 10 Q_OBJECT | |
| 11 | |
| 12 public: | |
| 83 | 13 InformationDialog(Anime::Anime& anime, std::function<void()> accept, QWidget* parent = nullptr); |
|
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
14 |
|
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
15 private: |
| 83 | 16 void SaveData(Anime::Anime& anime); |
| 17 unsigned int _progress; | |
| 18 unsigned int _score; | |
| 19 bool _rewatching; | |
| 20 Anime::ListStatus _status; | |
| 21 std::string _notes; | |
| 22 Date _started; | |
| 23 Date _completed; | |
| 9 | 24 }; |
| 85 | 25 |
| 46 | 26 #endif // __gui__dialog__information_h |
