Stellarium  0.16.1
ObjectService.hpp
1 /*
2  * Stellarium Remote Control plugin
3  * Copyright (C) 2015 Florian Schaukowitsch
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
18  */
19 
20 #ifndef OBJECTSERVICE_HPP_
21 #define OBJECTSERVICE_HPP_
22 
23 #include "AbstractAPIService.hpp"
24 #include "StelObjectType.hpp"
25 
26 #include <QStringList>
27 
28 class StelCore;
29 class StelObjectMgr;
30 
36 {
37  Q_OBJECT
38 public:
39  ObjectService(QObject* parent = Q_NULLPTR);
40 
41  virtual QLatin1String getPath() const Q_DECL_OVERRIDE { return QLatin1String("objects"); }
44  virtual void get(const QByteArray& operation,const APIParameters& parameters, APIServiceResponse& response) Q_DECL_OVERRIDE;
45 
46 private slots:
48  QStringList performSearch(const QString& text);
50  QString substituteGreek(const QString& text);
51 
53  StelObjectP findObject(const QString& name);
54 
56  QString getInfoString(const StelObjectP obj);
57 private:
58  StelCore* core;
59  StelObjectMgr* objMgr;
60  bool useStartOfWords;
61 };
62 
63 
64 
65 #endif
Main class for Stellarium core processing.
Definition: StelCore.hpp:48
Thread-safe version of HttpResponse that can be passed around through QMetaObject::invokeMethod.
Provides operations to look up objects in the Stellarium catalogs.
Abstract base class for all RemoteControlServiceInterface implementations which are provided by the R...
QMultiMap< QByteArray, QByteArray > APIParameters
Defines the HTTP request parameters for the service.
Define the StelObjectP type.
Manage the selection and queries on one or more StelObjects.
virtual QLatin1String getPath() const Q_DECL_OVERRIDE
Returns the desired path mapping If there is a conflict, only the first object is mapped...