mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 04:02:09 +01:00
61 lines
1.1 KiB
C++
61 lines
1.1 KiB
C++
#ifndef POI_H
|
|
#define POI_H
|
|
|
|
#include <QList>
|
|
#include <QPointF>
|
|
#include <QString>
|
|
#include <QStringList>
|
|
#include "common/rtree.h"
|
|
#include "waypoint.h"
|
|
#include "path.h"
|
|
|
|
class WaypointItem;
|
|
|
|
class POI : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
POI(QObject *parent = 0);
|
|
|
|
bool loadFile(const QString &path);
|
|
bool loadDir(const QString &path);
|
|
const QString &errorString() const {return _errorString;}
|
|
int errorLine() const {return _errorLine;}
|
|
|
|
unsigned radius() const {return _radius;}
|
|
void setRadius(unsigned radius);
|
|
|
|
QList<Waypoint> points(const Path &path) const;
|
|
QList<Waypoint> points(const Waypoint &point) const;
|
|
|
|
const QStringList &files() const {return _files;}
|
|
void enableFile(const QString &fileName, bool enable);
|
|
void clear();
|
|
|
|
signals:
|
|
void pointsChanged();
|
|
|
|
private:
|
|
typedef RTree<size_t, qreal, 2> POITree;
|
|
struct FileIndex {
|
|
int start;
|
|
int end;
|
|
bool enabled;
|
|
};
|
|
|
|
bool loadFile(const QString &path, bool dir);
|
|
|
|
POITree _tree;
|
|
QVector<Waypoint> _data;
|
|
QStringList _files;
|
|
QList<FileIndex> _indexes;
|
|
|
|
unsigned _radius;
|
|
|
|
QString _errorString;
|
|
int _errorLine;
|
|
};
|
|
|
|
#endif // POI_H
|