/** * SPDX-FileCopyrightText: 2021 Bart De Vries * * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL */ #pragma once #include #include #include class Error : public QObject { Q_OBJECT public: enum Type { Unknown, FeedUpdate, MediaDownload, MeteredNotAllowed, InvalidMedia, DiscoverError, StorageMoveError, SyncError, }; Q_ENUM(Type) static int typeToDb(Type type); // needed to translate Error::Type values to int for sqlite static Type dbToType(int value); // needed to translate from int to Error::Type values for sqlite Q_PROPERTY(QString url MEMBER url CONSTANT) Q_PROPERTY(QString id MEMBER id CONSTANT) Q_PROPERTY(int code MEMBER code CONSTANT) Q_PROPERTY(QString message MEMBER message CONSTANT) Q_PROPERTY(QDateTime date MEMBER date CONSTANT) Q_PROPERTY(QString title READ title CONSTANT) Q_PROPERTY(QString description READ description CONSTANT) Error(Type type, const QString url, const QString id, const int code, const QString message, const QDateTime date, const QString title = QStringLiteral("")); QString title() const; QString description() const; Type type; QString url; QString id; int code; QString message; QDateTime date; private: QString m_title; };