Mercurial > minori
annotate include/gui/dialog/information.h @ 108:2004b41d4a59
*: huge commit
1. WORKING LOCALIZATION + translation for Spanish and British English
2. idk like 2 changes for the dark theme :)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sun, 05 Nov 2023 23:31:49 -0500 |
parents | 8043152ef9d4 |
children | 39521c47c7a3 |
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 | |
95
8043152ef9d4
include: set classes as final where appropriate
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
9 class InformationDialog final : public QDialog { |
9 | 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 |
108 | 15 protected: |
16 void showEvent(QShowEvent* event) override; | |
17 | |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
18 private: |
83 | 19 void SaveData(Anime::Anime& anime); |
20 unsigned int _progress; | |
21 unsigned int _score; | |
22 bool _rewatching; | |
23 Anime::ListStatus _status; | |
24 std::string _notes; | |
25 Date _started; | |
26 Date _completed; | |
9 | 27 }; |
85 | 28 |
46 | 29 #endif // __gui__dialog__information_h |