40 lines
858 B
C++
Executable file
40 lines
858 B
C++
Executable file
// For license of this file, see <object-root-folder>/LICENSE.md.
|
|
|
|
#ifndef MESSAGESMODELCACHE_H
|
|
#define MESSAGESMODELCACHE_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "core/message.h"
|
|
|
|
#include <QModelIndex>
|
|
#include <QVariant>
|
|
|
|
class MessagesModelCache : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MessagesModelCache(QObject* parent = nullptr);
|
|
virtual ~MessagesModelCache();
|
|
|
|
inline bool containsData(int row_idx) const {
|
|
return m_msgCache.contains(row_idx);
|
|
}
|
|
|
|
inline QSqlRecord record(int row_idx) const {
|
|
return m_msgCache.value(row_idx);
|
|
}
|
|
|
|
inline void clear() {
|
|
m_msgCache.clear();
|
|
}
|
|
|
|
void setData(const QModelIndex& index, const QVariant& value, const QSqlRecord& record);
|
|
|
|
QVariant data(const QModelIndex& idx);
|
|
|
|
private:
|
|
QHash<int, QSqlRecord> m_msgCache;
|
|
};
|
|
|
|
#endif // MESSAGESMODELCACHE_H
|