Mercurial > minori
annotate include/core/date.h @ 229:adc20fa321c1
theme: force Fusion style on platforms other than Win32 or OS X
I was reluctant to do this, but most of the other styles just
look like pure shite regardless of whether I force a stylesheet
on them or not. KDE's style is actually hilariously bad paired
with my stylesheet, so I've decided to also make the stylesheet
Windows-specific as well, because that's really the only platform
where it makes sense in the first place.
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Wed, 10 Jan 2024 21:23:57 -0500 |
parents | c4ca035c565d |
children | 862d0d8619f6 |
rev | line source |
---|---|
9 | 1 #ifndef __core__date_h |
2 #define __core__date_h | |
85 | 3 |
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
4 #include "json/json_fwd.hpp" |
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
5 |
196
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
6 #include <optional> |
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
7 |
187
9613d72b097e
*: multiple performance improvements
Paper <mrpapersonic@gmail.com>
parents:
174
diff
changeset
|
8 class QDate; |
85 | 9 |
9 | 10 class Date { |
11 public: | |
12 Date(); | |
51 | 13 Date(unsigned int y); |
14 Date(unsigned int y, unsigned int m, unsigned int d); | |
15 Date(const QDate& date); | |
174
f88eda79c60a
anime/db: add some more json functionality, still doesn't compile :/
Paper <mrpapersonic@gmail.com>
parents:
85
diff
changeset
|
16 Date(const nlohmann::json& json); |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
9
diff
changeset
|
17 bool IsValid() const; |
51 | 18 void SetYear(unsigned int y); |
19 void SetMonth(unsigned int m); | |
20 void SetDay(unsigned int d); | |
9 | 21 void VoidYear(); |
22 void VoidMonth(); | |
23 void VoidDay(); | |
197 | 24 std::optional<unsigned int> GetYear() const; |
25 std::optional<unsigned int> GetMonth() const; | |
26 std::optional<unsigned int> GetDay() const; | |
9 | 27 QDate GetAsQDate() const; |
28 nlohmann::json GetAsAniListJson() const; | |
29 | |
30 private: | |
196
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
31 std::optional<unsigned int> year; |
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
32 std::optional<unsigned int> month; |
f0ff06a45c42
date: use std::optional for values
Paper <mrpapersonic@gmail.com>
parents:
187
diff
changeset
|
33 std::optional<unsigned int> day; |
9 | 34 }; |
85 | 35 |
9 | 36 #endif // __core__date_h |