Stellarium 0.13.3
StelLocationMgr.hpp
1 /*
2  * Copyright (C) 2008 Fabien Chereau
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
17  */
18 
19 #ifndef _STELLOCATIONMGR_HPP_
20 #define _STELLOCATIONMGR_HPP_
21 
22 #include "StelLocation.hpp"
23 #include <QString>
24 #include <QObject>
25 #include <QMetaType>
26 #include <QMap>
27 
28 class QStringListModel;
29 
32 class StelLocationMgr : public QObject
33 {
34  Q_OBJECT
35 
36 public:
41 
43  QStringListModel* getModelAll() {return modelAllLocation;}
45  QStringListModel* getModelPicked() {return modelPickedLocation;}
46 
48  QList<StelLocation> getAll() const {return locations.values();}
49 
52  const StelLocation locationForString(const QString& s) const;
53 
55  const StelLocation locationFromCLI() const;
56 
58  const StelLocation& getLastResortLocation() const {return lastResortLocation;}
59 
62  bool canSaveUserLocation(const StelLocation& loc) const;
63 
66  bool saveUserLocation(const StelLocation& loc);
67 
71  bool canDeleteUserLocation(const QString& id) const;
72 
76  bool deleteUserLocation(const QString& id);
77 
79  void locationFromIP();
80 
83  void pickLocationsNearby(const QString planetName, const float longitude, const float latitude, const float radiusDegrees);
86  void pickLocationsInCountry(const QString country);
87 
88 public slots:
91 
92 private:
93  void generateBinaryLocationFile(const QString& txtFile, bool isUserLocation, const QString& binFile) const;
94 
96  QMap<QString, StelLocation> loadCities(const QString& fileName, bool isUserLocation) const;
97  QMap<QString, StelLocation> loadCitiesBin(const QString& fileName) const;
98 
100  QStringListModel* modelAllLocation;
102  QStringListModel* modelPickedLocation;
103 
105  QMap<QString, StelLocation> locations;
107  QMap<QString, StelLocation> pickedLocations;
108 
109  StelLocation lastResortLocation;
110 };
111 
112 #endif // _STELLOCATIONMGR_HPP_
const StelLocation locationForString(const QString &s) const
Return the StelLocation for a given string Can match location name, or coordinates.
Store the informations for a location on a planet.
~StelLocationMgr()
Destructor.
QList< StelLocation > getAll() const
Return the list of all loaded locations.
QStringListModel * getModelAll()
Return the model containing all the city.
StelLocationMgr()
Default constructor.
Manage the list of available location.
const StelLocation locationFromCLI() const
Return the StelLocation from a CLI.
bool saveUserLocation(const StelLocation &loc)
Add permanently a location to the list of user locations It is later identified by its small string...
QStringListModel * getModelPicked()
Return the model containing picked (nearby) cities or cities from a single country, or other preselection.
void changeLocationFromNetworkLookup()
Process answer from online lookup of IP address.
const StelLocation & getLastResortLocation() const
Return a valid location when no valid one was found.
bool deleteUserLocation(const QString &id)
Delete permanently the given location from the list of user locations If the location comes from the ...
bool canDeleteUserLocation(const QString &id) const
Get whether a location can be deleted from the list of user locations If the location comes from the ...
void locationFromIP()
Find location via online lookup of IP address.
bool canSaveUserLocation(const StelLocation &loc) const
Get whether a location can be permanently added to the list of user locations The main constraint is ...