You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
core/notificationd/historymodel.h

63 lines
1.7 KiB
C++

/*
* Copyright (C) 2021 CutefishOS Team.
*
* Author: Reion Wong <reion@cutefishos.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef HISTORYMODEL_H
#define HISTORYMODEL_H
#include <QAbstractListModel>
#include "notification.h"
class HistoryModel : public QAbstractListModel
{
Q_OBJECT
public:
enum Roles {
IdRole = Qt::UserRole + 1,
SummaryRole = Qt::DisplayRole,
ImageRole = Qt::DecorationRole,
CreatedRole,
UpdatedRole,
BodyRole,
IconNameRole,
HasDefaultActionRole
};
Q_ENUM(Roles)
static HistoryModel* self();
explicit HistoryModel(QObject *parent = nullptr);
QVariant data(const QModelIndex &index, int role) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
QHash<int, QByteArray> roleNames() const override;
Q_INVOKABLE void add(const Notification &notification);
Q_INVOKABLE void remove(int index);
Q_INVOKABLE void clearAll();
Q_INVOKABLE void save();
void initDatas();
void updateTime();
private:
QVector<Notification> m_notifications;
};
#endif // HISTORYMODEL_H