qgeoserviceprovider.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2015 The Qt Company Ltd.
  4. ** Contact: http://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtLocation module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL3$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see http://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at http://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPLv3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or later as published by the Free
  28. ** Software Foundation and appearing in the file LICENSE.GPL included in
  29. ** the packaging of this file. Please review the following information to
  30. ** ensure the GNU General Public License version 2.0 requirements will be
  31. ** met: http://www.gnu.org/licenses/gpl-2.0.html.
  32. **
  33. ** $QT_END_LICENSE$
  34. **
  35. ****************************************************************************/
  36. #ifndef QGEOSERVICEPROVIDER_H
  37. #define QGEOSERVICEPROVIDER_H
  38. #include <QtCore/QVariant>
  39. #include <QtCore/QString>
  40. #include <QtCore/QObject>
  41. #include <QtLocation/qlocationglobal.h>
  42. QT_BEGIN_NAMESPACE
  43. class QLocale;
  44. class QStringList;
  45. class QGeoCodingManager;
  46. class QGeoMappingManager;
  47. class QGeoRoutingManager;
  48. class QPlaceManager;
  49. class QGeoCodingManagerEngine;
  50. class QGeoMappingManagerEngine;
  51. class QGeoRoutingManagerEngine;
  52. class QPlaceManagerEngine;
  53. class QGeoServiceProviderPrivate;
  54. class Q_LOCATION_EXPORT QGeoServiceProvider : public QObject
  55. {
  56. Q_OBJECT
  57. Q_ENUMS(Error)
  58. public:
  59. enum Error {
  60. NoError,
  61. NotSupportedError,
  62. UnknownParameterError,
  63. MissingRequiredParameterError,
  64. ConnectionError
  65. };
  66. enum RoutingFeature {
  67. NoRoutingFeatures = 0,
  68. OnlineRoutingFeature = (1<<0),
  69. OfflineRoutingFeature = (1<<1),
  70. LocalizedRoutingFeature = (1<<2),
  71. RouteUpdatesFeature = (1<<3),
  72. AlternativeRoutesFeature = (1<<4),
  73. ExcludeAreasRoutingFeature = (1<<5),
  74. AnyRoutingFeatures = ~(0)
  75. };
  76. enum GeocodingFeature {
  77. NoGeocodingFeatures = 0,
  78. OnlineGeocodingFeature = (1<<0),
  79. OfflineGeocodingFeature = (1<<1),
  80. ReverseGeocodingFeature = (1<<2),
  81. LocalizedGeocodingFeature = (1<<3),
  82. AnyGeocodingFeatures = ~(0)
  83. };
  84. enum MappingFeature {
  85. NoMappingFeatures = 0,
  86. OnlineMappingFeature = (1<<0),
  87. OfflineMappingFeature = (1<<1),
  88. LocalizedMappingFeature = (1<<2),
  89. AnyMappingFeatures = ~(0)
  90. };
  91. enum PlacesFeature {
  92. NoPlacesFeatures = 0,
  93. OnlinePlacesFeature = (1<<0),
  94. OfflinePlacesFeature = (1<<1),
  95. SavePlaceFeature = (1<<2),
  96. RemovePlaceFeature = (1<<3),
  97. SaveCategoryFeature = (1<<4),
  98. RemoveCategoryFeature = (1<<5),
  99. PlaceRecommendationsFeature = (1<<6),
  100. SearchSuggestionsFeature = (1<<7),
  101. LocalizedPlacesFeature = (1<<8),
  102. NotificationsFeature = (1<<9),
  103. PlaceMatchingFeature = (1<<10),
  104. AnyPlacesFeatures = ~(0)
  105. };
  106. Q_DECLARE_FLAGS(RoutingFeatures, RoutingFeature)
  107. Q_FLAGS(RoutingFeatures)
  108. Q_DECLARE_FLAGS(GeocodingFeatures, GeocodingFeature)
  109. Q_FLAGS(GeocodingFeatures)
  110. Q_DECLARE_FLAGS(MappingFeatures, MappingFeature)
  111. Q_FLAGS(MappingFeatures)
  112. Q_DECLARE_FLAGS(PlacesFeatures, PlacesFeature)
  113. Q_FLAGS(PlacesFeatures)
  114. static QStringList availableServiceProviders();
  115. QGeoServiceProvider(const QString &providerName,
  116. const QVariantMap &parameters = QVariantMap(),
  117. bool allowExperimental = false);
  118. ~QGeoServiceProvider();
  119. RoutingFeatures routingFeatures() const;
  120. GeocodingFeatures geocodingFeatures() const;
  121. MappingFeatures mappingFeatures() const;
  122. PlacesFeatures placesFeatures() const;
  123. QGeoCodingManager *geocodingManager() const;
  124. QGeoMappingManager *mappingManager() const;
  125. QGeoRoutingManager *routingManager() const;
  126. QPlaceManager *placeManager() const;
  127. Error error() const;
  128. QString errorString() const;
  129. void setParameters(const QVariantMap &parameters);
  130. void setLocale(const QLocale &locale);
  131. void setAllowExperimental(bool allow);
  132. private:
  133. QGeoServiceProviderPrivate *d_ptr;
  134. };
  135. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoServiceProvider::RoutingFeatures)
  136. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoServiceProvider::GeocodingFeatures)
  137. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoServiceProvider::MappingFeatures)
  138. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoServiceProvider::PlacesFeatures)
  139. QT_END_NAMESPACE
  140. #endif