Mercurial > minori
view 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 |
line wrap: on
line source
#ifndef __core__date_h #define __core__date_h #include "json/json_fwd.hpp" #include <optional> class QDate; class Date { public: Date(); Date(unsigned int y); Date(unsigned int y, unsigned int m, unsigned int d); Date(const QDate& date); Date(const nlohmann::json& json); bool IsValid() const; void SetYear(unsigned int y); void SetMonth(unsigned int m); void SetDay(unsigned int d); void VoidYear(); void VoidMonth(); void VoidDay(); std::optional<unsigned int> GetYear() const; std::optional<unsigned int> GetMonth() const; std::optional<unsigned int> GetDay() const; QDate GetAsQDate() const; nlohmann::json GetAsAniListJson() const; private: std::optional<unsigned int> year; std::optional<unsigned int> month; std::optional<unsigned int> day; }; #endif // __core__date_h