40 lines
802 B
C++
40 lines
802 B
C++
#ifndef RECENTLOCATIONSMODEL_HXX
|
|
#define RECENTLOCATIONSMODEL_HXX
|
|
|
|
#include <QAbstractListModel>
|
|
#include <QVariantList>
|
|
|
|
|
|
class RecentLocationsModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(bool isEmpty READ isEmpty NOTIFY isEmptyChanged)
|
|
|
|
public:
|
|
RecentLocationsModel(QObject* pr = nullptr);
|
|
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
QVariantMap mostRecent() const;
|
|
|
|
void insert(QVariant location);
|
|
|
|
void saveToSettings();
|
|
|
|
Q_INVOKABLE QVariantMap locationAt(int index) const;
|
|
|
|
bool isEmpty() const;
|
|
|
|
signals:
|
|
void isEmptyChanged();
|
|
|
|
private:
|
|
QVariantList m_data;
|
|
};
|
|
|
|
#endif // RECENTLOCATIONSMODEL_HXX
|