kasts/src/entry.h

100 lines
2.8 KiB
C
Raw Normal View History

2020-05-26 16:32:07 +02:00
/**
2020-08-14 20:56:04 +02:00
* SPDX-FileCopyrightText: 2020 Tobias Fella <fella@posteo.de>
2021-04-08 13:16:36 +02:00
* SPDX-FileCopyrightText: 2021 Bart De Vries <bart@mogwai.be>
2020-05-26 16:32:07 +02:00
*
2020-08-14 20:56:04 +02:00
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
2020-05-26 16:32:07 +02:00
*/
#ifndef ENTRY_H
#define ENTRY_H
#include <QDateTime>
#include <QDebug>
#include <QObject>
#include <QString>
#include <QStringList>
#include "author.h"
2021-02-21 19:54:10 +01:00
#include "enclosure.h"
class Feed;
2020-05-26 16:32:07 +02:00
class Entry : public QObject
{
Q_OBJECT
2021-02-21 19:54:10 +01:00
Q_PROPERTY(Feed *feed READ feed CONSTANT)
2020-06-06 00:05:32 +02:00
Q_PROPERTY(QString id READ id CONSTANT)
2020-05-26 16:32:07 +02:00
Q_PROPERTY(QString title READ title CONSTANT)
Q_PROPERTY(QString content READ content CONSTANT)
Q_PROPERTY(QVector<Author *> authors READ authors CONSTANT)
Q_PROPERTY(QDateTime created READ created CONSTANT)
Q_PROPERTY(QDateTime updated READ updated CONSTANT)
Q_PROPERTY(QString link READ link CONSTANT)
Q_PROPERTY(QString baseUrl READ baseUrl CONSTANT)
2021-10-03 20:49:17 +02:00
Q_PROPERTY(bool read READ read WRITE setRead NOTIFY readChanged)
Q_PROPERTY(bool new READ getNew WRITE setNew NOTIFY newChanged)
Q_PROPERTY(Enclosure *enclosure READ enclosure CONSTANT)
Q_PROPERTY(bool hasEnclosure READ hasEnclosure CONSTANT)
Q_PROPERTY(QString image READ image WRITE setImage NOTIFY imageChanged)
Q_PROPERTY(QString cachedImage READ cachedImage NOTIFY cachedImageChanged)
Q_PROPERTY(bool queueStatus READ queueStatus WRITE setQueueStatus NOTIFY queueStatusChanged)
2020-05-26 16:32:07 +02:00
public:
2021-05-01 21:00:12 +02:00
Entry(Feed *feed, const QString &id);
2020-05-26 16:32:07 +02:00
~Entry();
2020-06-06 00:05:32 +02:00
QString id() const;
2020-05-26 16:32:07 +02:00
QString title() const;
QString content() const;
QVector<Author *> authors() const;
QDateTime created() const;
QDateTime updated() const;
QString link() const;
2020-06-06 00:05:32 +02:00
bool read() const;
bool getNew() const;
2021-02-21 19:54:10 +01:00
Enclosure *enclosure() const;
bool hasEnclosure() const;
QString image() const;
QString cachedImage() const;
bool queueStatus() const;
2021-02-21 19:54:10 +01:00
Feed *feed() const;
2020-06-06 00:05:32 +02:00
2020-05-26 16:32:07 +02:00
QString baseUrl() const;
2021-05-01 21:00:12 +02:00
void setRead(bool read);
void setNew(bool state);
void setImage(const QString &url);
2021-05-01 21:00:12 +02:00
void setQueueStatus(bool status);
2020-06-06 00:05:32 +02:00
Q_INVOKABLE QString adjustedContent(int width, int fontSize);
void setNewInternal(bool state);
void setReadInternal(bool read);
void setQueueStatusInternal(bool state);
2020-06-06 00:05:32 +02:00
Q_SIGNALS:
void readChanged(bool read);
void newChanged(bool state);
void imageChanged(const QString &url);
void cachedImageChanged(const QString &imagePath);
void queueStatusChanged(bool queueStatus);
2020-06-06 00:05:32 +02:00
2020-05-26 16:32:07 +02:00
private:
Feed *m_feed;
2020-06-06 00:05:32 +02:00
QString m_id;
2020-05-26 16:32:07 +02:00
QString m_title;
QString m_content;
QVector<Author *> m_authors;
QDateTime m_created;
QDateTime m_updated;
QString m_link;
2020-06-06 00:05:32 +02:00
bool m_read;
bool m_new;
2021-02-21 19:54:10 +01:00
Enclosure *m_enclosure = nullptr;
QString m_image;
bool m_hasenclosure = false;
2020-05-26 16:32:07 +02:00
};
#endif // ENTRY_H