mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
36 lines
712 B
C++
36 lines
712 B
C++
#ifndef MAPLIST_H
|
|
#define MAPLIST_H
|
|
|
|
#include <QObject>
|
|
#include <QString>
|
|
|
|
class Map;
|
|
|
|
class MapList : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
MapList(QObject *parent = 0) : QObject(parent) {}
|
|
|
|
bool loadFile(const QString &path);
|
|
bool loadDir(const QString &path);
|
|
|
|
const QList<Map*> &maps() const {return _maps;}
|
|
const QString &errorString() const {return _errorString;}
|
|
|
|
static QString formats();
|
|
static QStringList filter();
|
|
|
|
private:
|
|
bool loadFile(const QString &path, bool *atlas, bool dir);
|
|
bool loadDirR(const QString &path);
|
|
Map *loadSource(const QString &path, bool dir);
|
|
bool loadMap(Map *map, const QString &path, bool dir);
|
|
|
|
QList<Map*> _maps;
|
|
QString _errorString;
|
|
};
|
|
|
|
#endif // MAPLIST_H
|