Mercurial > minori
annotate include/gui/dialog/information.h @ 377:1b0b8e746d83 default tip
CI/windows: stupid msys2
author | Paper <paper@tflc.us> |
---|---|
date | Fri, 25 Jul 2025 12:40:25 -0400 |
parents | 6d37a998cf91 |
children |
rev | line source |
---|---|
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
1 #ifndef MINORI_GUI_DIALOG_INFORMATION_H_ |
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
2 #define MINORI_GUI_DIALOG_INFORMATION_H_ |
85 | 3 |
63 | 4 #include "core/anime.h" |
5 #include "core/date.h" | |
368
6d37a998cf91
gui/dialog: consolidate win32 dark theme cruft into a single class
Paper <paper@tflc.us>
parents:
305
diff
changeset
|
6 #include "gui/dialog/dialog.h" |
9 | 7 #include <functional> |
8 | |
368
6d37a998cf91
gui/dialog: consolidate win32 dark theme cruft into a single class
Paper <paper@tflc.us>
parents:
305
diff
changeset
|
9 class InformationDialog final : public Dialog { |
258 | 10 Q_OBJECT |
9 | 11 |
258 | 12 public: |
13 enum Pages { | |
14 PAGE_MAIN_INFO, | |
15 PAGE_MY_LIST | |
16 }; | |
118
39521c47c7a3
*: another huge megacommit, SORRY
Paper <mrpapersonic@gmail.com>
parents:
108
diff
changeset
|
17 |
368
6d37a998cf91
gui/dialog: consolidate win32 dark theme cruft into a single class
Paper <paper@tflc.us>
parents:
305
diff
changeset
|
18 /* weird, the page should be first |
6d37a998cf91
gui/dialog: consolidate win32 dark theme cruft into a single class
Paper <paper@tflc.us>
parents:
305
diff
changeset
|
19 * also this should take an anime ID, rather than a pointer --paper */ |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
20 InformationDialog(Anime::Anime* anime, std::function<void(Anime::Anime*)> accept = {}, enum Pages page = Pages::PAGE_MAIN_INFO, |
258 | 21 QWidget* parent = nullptr); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
22 |
258 | 23 private: |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
24 void SaveData(Anime::Anime* anime); |
258 | 25 unsigned int _progress; |
26 unsigned int _score; | |
27 bool _rewatching; | |
28 Anime::ListStatus _status; | |
29 std::string _notes; | |
30 Date _started; | |
31 Date _completed; | |
9 | 32 }; |
85 | 33 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
34 #endif // MINORI_GUI_DIALOG_INFORMATION_H_ |