mirror of https://github.com/qt/qtdoc.git
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
// Copyright (C) 2023 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
|
|
#ifndef LIGHTNINGITEMMODEL_H
|
|
#define LIGHTNINGITEMMODEL_H
|
|
|
|
#include "lightningitemdata.h"
|
|
|
|
#include <QAbstractListModel>
|
|
|
|
class LastStrikeInfo;
|
|
|
|
class LightningItemModel : public QAbstractListModel
|
|
{
|
|
Q_OBJECT
|
|
Q_DISABLE_COPY_MOVE(LightningItemModel)
|
|
|
|
public:
|
|
explicit LightningItemModel(QObject *parent = nullptr);
|
|
|
|
void insertData(const LightningItemData &data);
|
|
void getNearestStrikeInfo(const QGeoCoordinate &coordinate,
|
|
LastStrikeInfo *nearestStrikeInfo) const;
|
|
void getLatestStrikeInfo(const QGeoCoordinate &searchCenter,
|
|
double searchRadius,
|
|
LastStrikeInfo *latestStrikeInfo) const;
|
|
|
|
private:
|
|
// QAbstractItemModel interface
|
|
int rowCount(const QModelIndex &parent) const override;
|
|
QVariant data(const QModelIndex &index, int role) const override;
|
|
QHash<int, QByteArray> roleNames() const override;
|
|
|
|
private:
|
|
QList<LightningItemData> m_data;
|
|
};
|
|
|
|
#endif // LIGHTNINGITEMMODEL_H
|