qgeorouterequest.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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 QGEOROUTEREQUEST_H
  37. #define QGEOROUTEREQUEST_H
  38. #include <QtCore/QList>
  39. #include <QtCore/QExplicitlySharedDataPointer>
  40. #include <QtCore/QDateTime>
  41. #include <QtLocation/qlocationglobal.h>
  42. #include <QtPositioning/qgeocoordinate.h>
  43. QT_BEGIN_NAMESPACE
  44. class QGeoRectangle;
  45. class QGeoRouteRequestPrivate;
  46. class Q_LOCATION_EXPORT QGeoRouteRequest
  47. {
  48. public:
  49. enum TravelMode {
  50. CarTravel = 0x0001,
  51. PedestrianTravel = 0x0002,
  52. BicycleTravel = 0x0004,
  53. PublicTransitTravel = 0x0008,
  54. TruckTravel = 0x0010
  55. };
  56. Q_DECLARE_FLAGS(TravelModes, TravelMode)
  57. enum FeatureType {
  58. NoFeature = 0x00000000,
  59. TollFeature = 0x00000001,
  60. HighwayFeature = 0x00000002,
  61. PublicTransitFeature = 0x00000004,
  62. FerryFeature = 0x00000008,
  63. TunnelFeature = 0x00000010,
  64. DirtRoadFeature = 0x00000020,
  65. ParksFeature = 0x00000040,
  66. MotorPoolLaneFeature = 0x00000080
  67. };
  68. Q_DECLARE_FLAGS(FeatureTypes, FeatureType)
  69. enum FeatureWeight {
  70. NeutralFeatureWeight = 0x00000000,
  71. PreferFeatureWeight = 0x00000001,
  72. RequireFeatureWeight = 0x00000002,
  73. AvoidFeatureWeight = 0x00000004,
  74. DisallowFeatureWeight = 0x00000008
  75. };
  76. Q_DECLARE_FLAGS(FeatureWeights, FeatureWeight)
  77. enum RouteOptimization {
  78. ShortestRoute = 0x0001,
  79. FastestRoute = 0x0002,
  80. MostEconomicRoute = 0x0004,
  81. MostScenicRoute = 0x0008
  82. };
  83. Q_DECLARE_FLAGS(RouteOptimizations, RouteOptimization)
  84. enum SegmentDetail {
  85. NoSegmentData = 0x0000,
  86. BasicSegmentData = 0x0001
  87. };
  88. Q_DECLARE_FLAGS(SegmentDetails, SegmentDetail)
  89. enum ManeuverDetail {
  90. NoManeuvers = 0x0000,
  91. BasicManeuvers = 0x0001
  92. };
  93. Q_DECLARE_FLAGS(ManeuverDetails, ManeuverDetail)
  94. explicit QGeoRouteRequest(const QList<QGeoCoordinate> &waypoints = QList<QGeoCoordinate>());
  95. QGeoRouteRequest(const QGeoCoordinate &origin,
  96. const QGeoCoordinate &destination);
  97. QGeoRouteRequest(const QGeoRouteRequest &other);
  98. ~QGeoRouteRequest();
  99. QGeoRouteRequest &operator= (const QGeoRouteRequest &other);
  100. bool operator == (const QGeoRouteRequest &other) const;
  101. bool operator != (const QGeoRouteRequest &other) const;
  102. void setWaypoints(const QList<QGeoCoordinate> &waypoints);
  103. QList<QGeoCoordinate> waypoints() const;
  104. void setExcludeAreas(const QList<QGeoRectangle> &areas);
  105. QList<QGeoRectangle> excludeAreas() const;
  106. // defaults to 0
  107. void setNumberAlternativeRoutes(int alternatives);
  108. int numberAlternativeRoutes() const;
  109. // defaults to TravelByCar
  110. void setTravelModes(TravelModes travelModes);
  111. TravelModes travelModes() const;
  112. void setFeatureWeight(FeatureType featureType, FeatureWeight featureWeight);
  113. FeatureWeight featureWeight(FeatureType featureType) const;
  114. QList<FeatureType> featureTypes() const;
  115. // defaults to OptimizeFastest
  116. void setRouteOptimization(RouteOptimizations optimization);
  117. RouteOptimizations routeOptimization() const;
  118. // defaults to BasicSegmentData
  119. void setSegmentDetail(SegmentDetail segmentDetail);
  120. SegmentDetail segmentDetail() const;
  121. // defaults to BasicManeuvers
  122. void setManeuverDetail(ManeuverDetail maneuverDetail);
  123. ManeuverDetail maneuverDetail() const;
  124. private:
  125. QExplicitlySharedDataPointer<QGeoRouteRequestPrivate> d_ptr;
  126. };
  127. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoRouteRequest::TravelModes)
  128. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoRouteRequest::FeatureTypes)
  129. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoRouteRequest::FeatureWeights)
  130. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoRouteRequest::RouteOptimizations)
  131. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoRouteRequest::SegmentDetails)
  132. Q_DECLARE_OPERATORS_FOR_FLAGS(QGeoRouteRequest::ManeuverDetails)
  133. QT_END_NAMESPACE
  134. #endif