pyside6_qtlocation_python.h 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. // Copyright (C) 2022 The Qt Company Ltd.
  2. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
  3. #ifndef SBK_QTLOCATION_PYTHON_H
  4. #define SBK_QTLOCATION_PYTHON_H
  5. #include <sbkpython.h>
  6. #include <sbkmodule.h>
  7. #include <sbkconverter.h>
  8. // Module Includes
  9. #include <pyside6_qtcore_python.h>
  10. #include <pyside6_qtpositioning_python.h>
  11. // Bound library includes
  12. #include <QtLocation/qgeocodereply.h>
  13. #include <QtLocation/qgeomaneuver.h>
  14. #include <QtLocation/qgeoroutereply.h>
  15. #include <QtLocation/qgeorouterequest.h>
  16. #include <QtLocation/qgeoserviceprovider.h>
  17. #include <QtLocation/qlocation.h>
  18. #include <QtLocation/qplacecontent.h>
  19. #include <QtLocation/qplaceidreply.h>
  20. #include <QtLocation/qplacereply.h>
  21. #include <QtLocation/qplacesearchrequest.h>
  22. #include <QtLocation/qplacesearchresult.h>
  23. QT_BEGIN_NAMESPACE
  24. class QGeoCodingManager;
  25. class QGeoCodingManagerEngine;
  26. class QGeoRoute;
  27. class QGeoRouteSegment;
  28. class QGeoRoutingManager;
  29. class QGeoRoutingManagerEngine;
  30. class QGeoServiceProviderFactory;
  31. class QPlace;
  32. class QPlaceAttribute;
  33. class QPlaceCategory;
  34. class QPlaceContactDetail;
  35. class QPlaceContentReply;
  36. class QPlaceContentRequest;
  37. class QPlaceDetailsReply;
  38. class QPlaceIcon;
  39. class QPlaceManager;
  40. class QPlaceManagerEngine;
  41. class QPlaceMatchReply;
  42. class QPlaceMatchRequest;
  43. class QPlaceProposedSearchResult;
  44. class QPlaceRatings;
  45. class QPlaceResult;
  46. class QPlaceSearchReply;
  47. class QPlaceSearchSuggestionReply;
  48. class QPlaceSupplier;
  49. class QPlaceUser;
  50. QT_END_NAMESPACE
  51. // Type indices
  52. enum [[deprecated]] : int {
  53. SBK_QGEOCODEREPLY_ERROR_IDX = 26,
  54. SBK_QGEOCODEREPLY_IDX = 24,
  55. SBK_QGEOCODINGMANAGER_IDX = 28,
  56. SBK_QGEOCODINGMANAGERENGINE_IDX = 30,
  57. SBK_QGEOMANEUVER_INSTRUCTIONDIRECTION_IDX = 34,
  58. SBK_QGEOMANEUVER_IDX = 32,
  59. SBK_QGEOROUTE_IDX = 36,
  60. SBK_QGEOROUTEREPLY_ERROR_IDX = 40,
  61. SBK_QGEOROUTEREPLY_IDX = 38,
  62. SBK_QGEOROUTEREQUEST_TRAVELMODE_IDX = 54,
  63. SBK_QFLAGS_QGEOROUTEREQUEST_TRAVELMODE_IDX = 10,
  64. SBK_QGEOROUTEREQUEST_FEATURETYPE_IDX = 44,
  65. SBK_QFLAGS_QGEOROUTEREQUEST_FEATURETYPE_IDX = 0,
  66. SBK_QGEOROUTEREQUEST_FEATUREWEIGHT_IDX = 46,
  67. SBK_QFLAGS_QGEOROUTEREQUEST_FEATUREWEIGHT_IDX = 2,
  68. SBK_QGEOROUTEREQUEST_ROUTEOPTIMIZATION_IDX = 50,
  69. SBK_QFLAGS_QGEOROUTEREQUEST_ROUTEOPTIMIZATION_IDX = 6,
  70. SBK_QGEOROUTEREQUEST_SEGMENTDETAIL_IDX = 52,
  71. SBK_QFLAGS_QGEOROUTEREQUEST_SEGMENTDETAIL_IDX = 8,
  72. SBK_QGEOROUTEREQUEST_MANEUVERDETAIL_IDX = 48,
  73. SBK_QFLAGS_QGEOROUTEREQUEST_MANEUVERDETAIL_IDX = 4,
  74. SBK_QGEOROUTEREQUEST_IDX = 42,
  75. SBK_QGEOROUTESEGMENT_IDX = 56,
  76. SBK_QGEOROUTINGMANAGER_IDX = 58,
  77. SBK_QGEOROUTINGMANAGERENGINE_IDX = 60,
  78. SBK_QGEOSERVICEPROVIDER_ERROR_IDX = 64,
  79. SBK_QGEOSERVICEPROVIDER_ROUTINGFEATURE_IDX = 74,
  80. SBK_QFLAGS_QGEOSERVICEPROVIDER_ROUTINGFEATURE_IDX = 20,
  81. SBK_QGEOSERVICEPROVIDER_GEOCODINGFEATURE_IDX = 66,
  82. SBK_QFLAGS_QGEOSERVICEPROVIDER_GEOCODINGFEATURE_IDX = 12,
  83. SBK_QGEOSERVICEPROVIDER_MAPPINGFEATURE_IDX = 68,
  84. SBK_QFLAGS_QGEOSERVICEPROVIDER_MAPPINGFEATURE_IDX = 14,
  85. SBK_QGEOSERVICEPROVIDER_PLACESFEATURE_IDX = 72,
  86. SBK_QFLAGS_QGEOSERVICEPROVIDER_PLACESFEATURE_IDX = 18,
  87. SBK_QGEOSERVICEPROVIDER_NAVIGATIONFEATURE_IDX = 70,
  88. SBK_QFLAGS_QGEOSERVICEPROVIDER_NAVIGATIONFEATURE_IDX = 16,
  89. SBK_QGEOSERVICEPROVIDER_IDX = 62,
  90. SBK_QGEOSERVICEPROVIDERFACTORY_IDX = 76,
  91. SBK_QLOCATION_VISIBILITY_IDX = 80,
  92. SBK_QFLAGS_QLOCATION_VISIBILITY_IDX = 22,
  93. SBK_QTLOCATIONQLOCATION_IDX = 78,
  94. SBK_QPLACE_IDX = 82,
  95. SBK_QPLACEATTRIBUTE_IDX = 84,
  96. SBK_QPLACECATEGORY_IDX = 86,
  97. SBK_QPLACECONTACTDETAIL_IDX = 88,
  98. SBK_QPLACECONTENT_TYPE_IDX = 94,
  99. SBK_QPLACECONTENT_DATATAG_IDX = 92,
  100. SBK_QPLACECONTENT_IDX = 90,
  101. SBK_QPLACECONTENTREPLY_IDX = 96,
  102. SBK_QPLACECONTENTREQUEST_IDX = 98,
  103. SBK_QPLACEDETAILSREPLY_IDX = 100,
  104. SBK_QPLACEICON_IDX = 102,
  105. SBK_QPLACEIDREPLY_OPERATIONTYPE_IDX = 106,
  106. SBK_QPLACEIDREPLY_IDX = 104,
  107. SBK_QPLACEMANAGER_IDX = 108,
  108. SBK_QPLACEMANAGERENGINE_IDX = 110,
  109. SBK_QPLACEMATCHREPLY_IDX = 112,
  110. SBK_QPLACEMATCHREQUEST_IDX = 114,
  111. SBK_QPLACEPROPOSEDSEARCHRESULT_IDX = 116,
  112. SBK_QPLACERATINGS_IDX = 118,
  113. SBK_QPLACEREPLY_ERROR_IDX = 122,
  114. SBK_QPLACEREPLY_TYPE_IDX = 124,
  115. SBK_QPLACEREPLY_IDX = 120,
  116. SBK_QPLACERESULT_IDX = 126,
  117. SBK_QPLACESEARCHREPLY_IDX = 128,
  118. SBK_QPLACESEARCHREQUEST_RELEVANCEHINT_IDX = 132,
  119. SBK_QPLACESEARCHREQUEST_IDX = 130,
  120. SBK_QPLACESEARCHRESULT_SEARCHRESULTTYPE_IDX = 136,
  121. SBK_QPLACESEARCHRESULT_IDX = 134,
  122. SBK_QPLACESEARCHSUGGESTIONREPLY_IDX = 138,
  123. SBK_QPLACESUPPLIER_IDX = 140,
  124. SBK_QPLACEUSER_IDX = 142,
  125. SBK_QTLOCATION_IDX_COUNT = 144,
  126. };
  127. // Type indices
  128. enum : int {
  129. SBK_QGeoCodeReply_Error_IDX = 13,
  130. SBK_QGeoCodeReply_IDX = 12,
  131. SBK_QGeoCodingManager_IDX = 14,
  132. SBK_QGeoCodingManagerEngine_IDX = 15,
  133. SBK_QGeoManeuver_InstructionDirection_IDX = 17,
  134. SBK_QGeoManeuver_IDX = 16,
  135. SBK_QGeoRoute_IDX = 18,
  136. SBK_QGeoRouteReply_Error_IDX = 20,
  137. SBK_QGeoRouteReply_IDX = 19,
  138. SBK_QGeoRouteRequest_TravelMode_IDX = 27,
  139. SBK_QFlags_QGeoRouteRequest_TravelMode_IDX = 5,
  140. SBK_QGeoRouteRequest_FeatureType_IDX = 22,
  141. SBK_QFlags_QGeoRouteRequest_FeatureType_IDX = 0,
  142. SBK_QGeoRouteRequest_FeatureWeight_IDX = 23,
  143. SBK_QFlags_QGeoRouteRequest_FeatureWeight_IDX = 1,
  144. SBK_QGeoRouteRequest_RouteOptimization_IDX = 25,
  145. SBK_QFlags_QGeoRouteRequest_RouteOptimization_IDX = 3,
  146. SBK_QGeoRouteRequest_SegmentDetail_IDX = 26,
  147. SBK_QFlags_QGeoRouteRequest_SegmentDetail_IDX = 4,
  148. SBK_QGeoRouteRequest_ManeuverDetail_IDX = 24,
  149. SBK_QFlags_QGeoRouteRequest_ManeuverDetail_IDX = 2,
  150. SBK_QGeoRouteRequest_IDX = 21,
  151. SBK_QGeoRouteSegment_IDX = 28,
  152. SBK_QGeoRoutingManager_IDX = 29,
  153. SBK_QGeoRoutingManagerEngine_IDX = 30,
  154. SBK_QGeoServiceProvider_Error_IDX = 32,
  155. SBK_QGeoServiceProvider_RoutingFeature_IDX = 37,
  156. SBK_QFlags_QGeoServiceProvider_RoutingFeature_IDX = 10,
  157. SBK_QGeoServiceProvider_GeocodingFeature_IDX = 33,
  158. SBK_QFlags_QGeoServiceProvider_GeocodingFeature_IDX = 6,
  159. SBK_QGeoServiceProvider_MappingFeature_IDX = 34,
  160. SBK_QFlags_QGeoServiceProvider_MappingFeature_IDX = 7,
  161. SBK_QGeoServiceProvider_PlacesFeature_IDX = 36,
  162. SBK_QFlags_QGeoServiceProvider_PlacesFeature_IDX = 9,
  163. SBK_QGeoServiceProvider_NavigationFeature_IDX = 35,
  164. SBK_QFlags_QGeoServiceProvider_NavigationFeature_IDX = 8,
  165. SBK_QGeoServiceProvider_IDX = 31,
  166. SBK_QGeoServiceProviderFactory_IDX = 38,
  167. SBK_QLocation_Visibility_IDX = 40,
  168. SBK_QFlags_QLocation_Visibility_IDX = 11,
  169. SBK_QtLocationQLocation_IDX = 39,
  170. SBK_QPlace_IDX = 41,
  171. SBK_QPlaceAttribute_IDX = 42,
  172. SBK_QPlaceCategory_IDX = 43,
  173. SBK_QPlaceContactDetail_IDX = 44,
  174. SBK_QPlaceContent_Type_IDX = 47,
  175. SBK_QPlaceContent_DataTag_IDX = 46,
  176. SBK_QPlaceContent_IDX = 45,
  177. SBK_QPlaceContentReply_IDX = 48,
  178. SBK_QPlaceContentRequest_IDX = 49,
  179. SBK_QPlaceDetailsReply_IDX = 50,
  180. SBK_QPlaceIcon_IDX = 51,
  181. SBK_QPlaceIdReply_OperationType_IDX = 53,
  182. SBK_QPlaceIdReply_IDX = 52,
  183. SBK_QPlaceManager_IDX = 54,
  184. SBK_QPlaceManagerEngine_IDX = 55,
  185. SBK_QPlaceMatchReply_IDX = 56,
  186. SBK_QPlaceMatchRequest_IDX = 57,
  187. SBK_QPlaceProposedSearchResult_IDX = 58,
  188. SBK_QPlaceRatings_IDX = 59,
  189. SBK_QPlaceReply_Error_IDX = 61,
  190. SBK_QPlaceReply_Type_IDX = 62,
  191. SBK_QPlaceReply_IDX = 60,
  192. SBK_QPlaceResult_IDX = 63,
  193. SBK_QPlaceSearchReply_IDX = 64,
  194. SBK_QPlaceSearchRequest_RelevanceHint_IDX = 66,
  195. SBK_QPlaceSearchRequest_IDX = 65,
  196. SBK_QPlaceSearchResult_SearchResultType_IDX = 68,
  197. SBK_QPlaceSearchResult_IDX = 67,
  198. SBK_QPlaceSearchSuggestionReply_IDX = 69,
  199. SBK_QPlaceSupplier_IDX = 70,
  200. SBK_QPlaceUser_IDX = 71,
  201. SBK_QtLocation_IDX_COUNT = 72,
  202. };
  203. // This variable stores all Python types exported by this module.
  204. extern Shiboken::Module::TypeInitStruct *SbkPySide6_QtLocationTypeStructs;
  205. // This variable stores all Python types exported by this module in a backwards compatible way with identical indexing.
  206. [[deprecated]] extern PyTypeObject **SbkPySide6_QtLocationTypes;
  207. // This variable stores the Python module object exported by this module.
  208. extern PyObject *SbkPySide6_QtLocationModuleObject;
  209. // This variable stores all type converters exported by this module.
  210. extern SbkConverter **SbkPySide6_QtLocationTypeConverters;
  211. // Converter indices
  212. enum [[deprecated]] : int {
  213. SBK_QTLOCATION_QLIST_INT_IDX = 0, // QList<int>
  214. SBK_QTLOCATION_QLIST_QPLACECATEGORY_IDX = 1, // QList<QPlaceCategory>
  215. SBK_QTLOCATION_QMAP_QSTRING_QVARIANT_IDX = 2, // QMap<QString,QVariant>
  216. SBK_QTLOCATION_QLIST_QPLACE_IDX = 3, // QList<QPlace>
  217. SBK_QTLOCATION_QLIST_QPLACESEARCHRESULT_IDX = 4, // QList<QPlaceSearchResult>
  218. SBK_QTLOCATION_QLIST_QPLACECONTENT_DATATAG_IDX = 5, // QList<QPlaceContent::DataTag>
  219. SBK_QTLOCATION_QLIST_QPLACECONTACTDETAIL_IDX = 6, // QList<QPlaceContactDetail>
  220. SBK_QTLOCATION_QMAP_INT_QPLACECONTENT_IDX = 7, // QMap<int,QPlaceContent>
  221. SBK_QTLOCATION_QLIST_QGEOCOORDINATE_IDX = 8, // QList<QGeoCoordinate>
  222. SBK_QTLOCATION_QLIST_QGEORECTANGLE_IDX = 9, // QList<QGeoRectangle>
  223. SBK_QTLOCATION_QLIST_QGEOROUTEREQUEST_FEATURETYPE_IDX = 10, // QList<QGeoRouteRequest::FeatureType>
  224. SBK_QTLOCATION_QLIST_QGEOROUTE_IDX = 11, // QList<QGeoRoute>
  225. SBK_QTLOCATION_QLIST_QGEOROUTESEGMENT_IDX = 12, // QList<QGeoRouteSegment>
  226. SBK_QTLOCATION_QLIST_QLOCALE_IDX = 13, // QList<QLocale>
  227. SBK_QTLOCATION_QLIST_QGEOLOCATION_IDX = 14, // QList<QGeoLocation>
  228. SBK_QTLOCATION_QLIST_QVARIANT_IDX = 15, // QList<QVariant>
  229. SBK_QTLOCATION_QLIST_QSTRING_IDX = 16, // QList<QString>
  230. SBK_QTLOCATION_CONVERTERS_IDX_COUNT = 17,
  231. };
  232. // Converter indices
  233. enum : int {
  234. SBK_QtLocation_QList_int_IDX = 0, // QList<int>
  235. SBK_QtLocation_QList_QPlaceCategory_IDX = 1, // QList<QPlaceCategory>
  236. SBK_QtLocation_QMap_QString_QVariant_IDX = 2, // QMap<QString,QVariant>
  237. SBK_QtLocation_QList_QPlace_IDX = 3, // QList<QPlace>
  238. SBK_QtLocation_QList_QPlaceSearchResult_IDX = 4, // QList<QPlaceSearchResult>
  239. SBK_QtLocation_QList_QPlaceContent_DataTag_IDX = 5, // QList<QPlaceContent::DataTag>
  240. SBK_QtLocation_QList_QPlaceContactDetail_IDX = 6, // QList<QPlaceContactDetail>
  241. SBK_QtLocation_QMap_int_QPlaceContent_IDX = 7, // QMap<int,QPlaceContent>
  242. SBK_QtLocation_QList_QGeoCoordinate_IDX = 8, // QList<QGeoCoordinate>
  243. SBK_QtLocation_QList_QGeoRectangle_IDX = 9, // QList<QGeoRectangle>
  244. SBK_QtLocation_QList_QGeoRouteRequest_FeatureType_IDX = 10, // QList<QGeoRouteRequest::FeatureType>
  245. SBK_QtLocation_QList_QGeoRoute_IDX = 11, // QList<QGeoRoute>
  246. SBK_QtLocation_QList_QGeoRouteSegment_IDX = 12, // QList<QGeoRouteSegment>
  247. SBK_QtLocation_QList_QLocale_IDX = 13, // QList<QLocale>
  248. SBK_QtLocation_QList_QGeoLocation_IDX = 14, // QList<QGeoLocation>
  249. SBK_QtLocation_QList_QVariant_IDX = 15, // QList<QVariant>
  250. SBK_QtLocation_QList_QString_IDX = 16, // QList<QString>
  251. SBK_QtLocation_CONVERTERS_IDX_COUNT = 17,
  252. };
  253. // Macros for type check
  254. QT_WARNING_PUSH
  255. QT_WARNING_DISABLE_DEPRECATED
  256. namespace Shiboken
  257. {
  258. // PyType functions, to get the PyObjectType for a type T
  259. template<> inline PyTypeObject *SbkType< ::QGeoCodeReply::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodeReply_Error_IDX]); }
  260. template<> inline PyTypeObject *SbkType< ::QGeoCodeReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodeReply_IDX]); }
  261. template<> inline PyTypeObject *SbkType< ::QGeoCodingManager >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodingManager_IDX]); }
  262. template<> inline PyTypeObject *SbkType< ::QGeoCodingManagerEngine >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoCodingManagerEngine_IDX]); }
  263. template<> inline PyTypeObject *SbkType< ::QGeoManeuver::InstructionDirection >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoManeuver_InstructionDirection_IDX]); }
  264. template<> inline PyTypeObject *SbkType< ::QGeoManeuver >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoManeuver_IDX]); }
  265. template<> inline PyTypeObject *SbkType< ::QGeoRoute >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRoute_IDX]); }
  266. template<> inline PyTypeObject *SbkType< ::QGeoRouteReply::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteReply_Error_IDX]); }
  267. template<> inline PyTypeObject *SbkType< ::QGeoRouteReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteReply_IDX]); }
  268. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::TravelMode >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_TravelMode_IDX]); }
  269. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::TravelMode> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_TravelMode_IDX]); }
  270. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::FeatureType >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_FeatureType_IDX]); }
  271. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::FeatureType> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_FeatureType_IDX]); }
  272. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::FeatureWeight >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_FeatureWeight_IDX]); }
  273. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::FeatureWeight> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_FeatureWeight_IDX]); }
  274. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::RouteOptimization >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_RouteOptimization_IDX]); }
  275. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::RouteOptimization> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_RouteOptimization_IDX]); }
  276. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::SegmentDetail >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_SegmentDetail_IDX]); }
  277. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::SegmentDetail> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_SegmentDetail_IDX]); }
  278. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest::ManeuverDetail >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_ManeuverDetail_IDX]); }
  279. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoRouteRequest::ManeuverDetail> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoRouteRequest_ManeuverDetail_IDX]); }
  280. template<> inline PyTypeObject *SbkType< ::QGeoRouteRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteRequest_IDX]); }
  281. template<> inline PyTypeObject *SbkType< ::QGeoRouteSegment >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRouteSegment_IDX]); }
  282. template<> inline PyTypeObject *SbkType< ::QGeoRoutingManager >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRoutingManager_IDX]); }
  283. template<> inline PyTypeObject *SbkType< ::QGeoRoutingManagerEngine >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoRoutingManagerEngine_IDX]); }
  284. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_Error_IDX]); }
  285. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::RoutingFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_RoutingFeature_IDX]); }
  286. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::RoutingFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_RoutingFeature_IDX]); }
  287. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::GeocodingFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_GeocodingFeature_IDX]); }
  288. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::GeocodingFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_GeocodingFeature_IDX]); }
  289. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::MappingFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_MappingFeature_IDX]); }
  290. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::MappingFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_MappingFeature_IDX]); }
  291. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::PlacesFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_PlacesFeature_IDX]); }
  292. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::PlacesFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_PlacesFeature_IDX]); }
  293. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider::NavigationFeature >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_NavigationFeature_IDX]); }
  294. template<> inline PyTypeObject *SbkType< ::QFlags<QGeoServiceProvider::NavigationFeature> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QGeoServiceProvider_NavigationFeature_IDX]); }
  295. template<> inline PyTypeObject *SbkType< ::QGeoServiceProvider >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProvider_IDX]); }
  296. template<> inline PyTypeObject *SbkType< ::QGeoServiceProviderFactory >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QGeoServiceProviderFactory_IDX]); }
  297. template<> inline PyTypeObject *SbkType< ::QLocation::Visibility >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QLocation_Visibility_IDX]); }
  298. template<> inline PyTypeObject *SbkType< ::QFlags<QLocation::Visibility> >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QFlags_QLocation_Visibility_IDX]); }
  299. template<> inline PyTypeObject *SbkType< ::QPlace >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlace_IDX]); }
  300. template<> inline PyTypeObject *SbkType< ::QPlaceAttribute >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceAttribute_IDX]); }
  301. template<> inline PyTypeObject *SbkType< ::QPlaceCategory >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceCategory_IDX]); }
  302. template<> inline PyTypeObject *SbkType< ::QPlaceContactDetail >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContactDetail_IDX]); }
  303. template<> inline PyTypeObject *SbkType< ::QPlaceContent::Type >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContent_Type_IDX]); }
  304. template<> inline PyTypeObject *SbkType< ::QPlaceContent::DataTag >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContent_DataTag_IDX]); }
  305. template<> inline PyTypeObject *SbkType< ::QPlaceContent >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContent_IDX]); }
  306. template<> inline PyTypeObject *SbkType< ::QPlaceContentReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContentReply_IDX]); }
  307. template<> inline PyTypeObject *SbkType< ::QPlaceContentRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceContentRequest_IDX]); }
  308. template<> inline PyTypeObject *SbkType< ::QPlaceDetailsReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceDetailsReply_IDX]); }
  309. template<> inline PyTypeObject *SbkType< ::QPlaceIcon >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceIcon_IDX]); }
  310. template<> inline PyTypeObject *SbkType< ::QPlaceIdReply::OperationType >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceIdReply_OperationType_IDX]); }
  311. template<> inline PyTypeObject *SbkType< ::QPlaceIdReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceIdReply_IDX]); }
  312. template<> inline PyTypeObject *SbkType< ::QPlaceManager >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceManager_IDX]); }
  313. template<> inline PyTypeObject *SbkType< ::QPlaceManagerEngine >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceManagerEngine_IDX]); }
  314. template<> inline PyTypeObject *SbkType< ::QPlaceMatchReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceMatchReply_IDX]); }
  315. template<> inline PyTypeObject *SbkType< ::QPlaceMatchRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceMatchRequest_IDX]); }
  316. template<> inline PyTypeObject *SbkType< ::QPlaceProposedSearchResult >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceProposedSearchResult_IDX]); }
  317. template<> inline PyTypeObject *SbkType< ::QPlaceRatings >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceRatings_IDX]); }
  318. template<> inline PyTypeObject *SbkType< ::QPlaceReply::Error >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceReply_Error_IDX]); }
  319. template<> inline PyTypeObject *SbkType< ::QPlaceReply::Type >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceReply_Type_IDX]); }
  320. template<> inline PyTypeObject *SbkType< ::QPlaceReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceReply_IDX]); }
  321. template<> inline PyTypeObject *SbkType< ::QPlaceResult >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceResult_IDX]); }
  322. template<> inline PyTypeObject *SbkType< ::QPlaceSearchReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchReply_IDX]); }
  323. template<> inline PyTypeObject *SbkType< ::QPlaceSearchRequest::RelevanceHint >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchRequest_RelevanceHint_IDX]); }
  324. template<> inline PyTypeObject *SbkType< ::QPlaceSearchRequest >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchRequest_IDX]); }
  325. template<> inline PyTypeObject *SbkType< ::QPlaceSearchResult::SearchResultType >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchResult_SearchResultType_IDX]); }
  326. template<> inline PyTypeObject *SbkType< ::QPlaceSearchResult >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchResult_IDX]); }
  327. template<> inline PyTypeObject *SbkType< ::QPlaceSearchSuggestionReply >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSearchSuggestionReply_IDX]); }
  328. template<> inline PyTypeObject *SbkType< ::QPlaceSupplier >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceSupplier_IDX]); }
  329. template<> inline PyTypeObject *SbkType< ::QPlaceUser >() { return Shiboken::Module::get(SbkPySide6_QtLocationTypeStructs[SBK_QPlaceUser_IDX]); }
  330. } // namespace Shiboken
  331. QT_WARNING_POP
  332. #endif // SBK_QTLOCATION_PYTHON_H