Mercurial > minori
annotate include/gui/dialog/information.h @ 337:a7d4e5107531
dep/animone: REFACTOR ALL THE THINGS
1: animone now has its own syntax divergent from anisthesia,
making different platforms actually have their own sections
2: process names in animone are now called `comm' (this will
probably break things). this is what its called in bsd/linux
so I'm just going to use it everywhere
3: the X11 code now checks for the existence of a UTF-8 window title
and passes it if available
4: ANYTHING THATS NOT LINUX IS 100% UNTESTED AND CAN AND WILL BREAK!
I still actually need to test the bsd code. to be honest I'm probably
going to move all of the bsds into separate files because they're
all essentially different operating systems at this point
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 19 Jun 2024 12:51:15 -0400 |
parents | 91ac90a34003 |
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" | |
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 { |
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 |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
18 InformationDialog(Anime::Anime* anime, std::function<void(Anime::Anime*)> accept = {}, enum Pages page = Pages::PAGE_MAIN_INFO, |
258 | 19 QWidget* parent = nullptr); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
20 |
258 | 21 protected: |
22 void showEvent(QShowEvent* event) override; | |
108 | 23 |
258 | 24 private: |
305
91ac90a34003
core/time: remove Duration class, use regular functions instead
Paper <paper@paper.us.eu.org>
parents:
261
diff
changeset
|
25 void SaveData(Anime::Anime* anime); |
258 | 26 unsigned int _progress; |
27 unsigned int _score; | |
28 bool _rewatching; | |
29 Anime::ListStatus _status; | |
30 std::string _notes; | |
31 Date _started; | |
32 Date _completed; | |
9 | 33 }; |
85 | 34 |
261
3ec7804abf17
include: make header guards more sane
Paper <paper@paper.us.eu.org>
parents:
258
diff
changeset
|
35 #endif // MINORI_GUI_DIALOG_INFORMATION_H_ |