Home
last modified time | relevance | path

Searched refs:maximumFieldOfView (Results 1 – 13 of 13) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocameracapabilities/
H A Dtst_qgeocameracapabilities.cpp94 QFETCH(double, maximumFieldOfView); in constructorTest()
100 maximumFieldOfView = qBound(1.0, maximumFieldOfView, 179.0); in constructorTest()
113 QCOMPARE(cameraCapabilities.maximumFieldOfView(), cameraCapabilities2.maximumFieldOfView()); in constructorTest()
121 cameraCapabilities.setMaximumFieldOfView(maximumFieldOfView); in constructorTest()
133 QCOMPARE(cameraCapabilities3.maximumFieldOfView(), maximumFieldOfView); in constructorTest()
146 QCOMPARE(cameraCapabilities.maximumFieldOfView(), cameraCapabilities3.maximumFieldOfView()); in constructorTest()
253 QCOMPARE(cameraCapabilities.maximumFieldOfView(), 45.0); // min/max default to 45 in maximumFieldOfViewTest()
255 QCOMPARE(cameraCapabilities.maximumFieldOfView(), 1.5); in maximumFieldOfViewTest()
257 QCOMPARE(cameraCapabilities.maximumFieldOfView(), 1.0); in maximumFieldOfViewTest()
259 QCOMPARE(cameraCapabilities.maximumFieldOfView(), 179.0); in maximumFieldOfViewTest()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/declarative_ui/
H A Dtst_map_maptype.qml123 compare(map.maximumFieldOfView, 45)
130 compare(map.activeMapType.cameraCapabilities.maximumFieldOfView, 45)
147 compare(map.maximumFieldOfView, 45)
154 compare(map.activeMapType.cameraCapabilities.maximumFieldOfView, 45)
171 compare(map.maximumFieldOfView, 179)
178 compare(map.activeMapType.cameraCapabilities.maximumFieldOfView, 179)
195 compare(map.maximumFieldOfView, 45)
202 compare(map.activeMapType.cameraCapabilities.maximumFieldOfView, 45)
H A Dtst_map.qml407 compare(map.maximumFieldOfView, 45)
409 compare(map.activeMapType.cameraCapabilities.maximumFieldOfView, 45)
412 map.maximumFieldOfView = 18
416 compare(map.maximumFieldOfView, 45)
421 compare(map.maximumFieldOfView, 18)
423 compare(map.activeMapType.cameraCapabilities.maximumFieldOfView, 179)
432 compare(map.maximumFieldOfView, 18)
435 map.maximumFieldOfView = 179.5
437 compare(map.maximumFieldOfView, 179)
441 map.maximumFieldOfView = -2
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativemaps/
H A Dqdeclarativegeomaptype_p.h67 Q_PROPERTY(qreal maximumFieldOfView READ maximumFieldOfView CONSTANT)
78 qreal maximumFieldOfView() const;
H A Dqdeclarativegeomap_p.h91 …Q_PROPERTY(qreal maximumFieldOfView READ maximumFieldOfView WRITE setMaximumFieldOfView NOTIFY min…
143 void setMaximumFieldOfView(qreal maximumFieldOfView, bool userSet = true);
144 qreal maximumFieldOfView() const;
230 void maximumFieldOfViewChanged(qreal maximumFieldOfView);
H A Dqdeclarativegeomaptype.cpp242 qreal QDeclarativeGeoCameraCapabilities::maximumFieldOfView() const in maximumFieldOfView() function in QDeclarativeGeoCameraCapabilities
244 return cameraCaps_.maximumFieldOfView(); in maximumFieldOfView()
H A Dqdeclarativegeomap.cpp226 m_maximumFieldOfView = m_cameraCapabilities.maximumFieldOfView(); in QDeclarativeGeoMap()
366 m_cameraCapabilities.maximumFieldOfView())); in initialize()
600 if (m_cameraCapabilities.maximumFieldOfView() < m_maximumFieldOfView) { in onCameraCapabilitiesChanged()
601 setMaximumFieldOfView(m_cameraCapabilities.maximumFieldOfView(), false); in onCameraCapabilitiesChanged()
602 } else if (m_cameraCapabilities.maximumFieldOfView() > m_maximumFieldOfView) { in onCameraCapabilitiesChanged()
604 setMaximumFieldOfView(m_cameraCapabilities.maximumFieldOfView(), false); in onCameraCapabilitiesChanged()
606 …setMaximumFieldOfView(qMin<qreal>(m_cameraCapabilities.maximumFieldOfView(), m_userMaximumFieldOfV… in onCameraCapabilitiesChanged()
1107 fieldOfView = qBound(minimumFieldOfView(), fieldOfView, maximumFieldOfView()); in setFieldOfView()
1140 m_cameraCapabilities.maximumFieldOfView()); in setMinimumFieldOfView()
1168 void QDeclarativeGeoMap::setMaximumFieldOfView(qreal maximumFieldOfView, bool userSet) in setMaximumFieldOfView() argument
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeocameracapabilities_p.h100 void setMaximumFieldOfView(double maximumFieldOfView);
101 double maximumFieldOfView() const;
H A Dqgeocameracapabilities.cpp421 void QGeoCameraCapabilities::setMaximumFieldOfView(double maximumFieldOfView) in setMaximumFieldOfView() argument
423 d->maximumFieldOfView_ = qBound(1.0, maximumFieldOfView, 179.0); in setMaximumFieldOfView()
433 double QGeoCameraCapabilities::maximumFieldOfView() const in maximumFieldOfView() function in QGeoCameraCapabilities
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/src/plugins/
H A Ditemsoverlay.qdoc75 maximumFieldOfView: mapBase.maximumFieldOfView
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/map/
H A DMapSliders.qml261 to: containerRow.mapSource.maximumFieldOfView
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/imports/location/
H A Dplugins.qmltypes378 Property { name: "maximumFieldOfView"; type: "double"; isReadonly: true }
445 Property { name: "maximumFieldOfView"; type: "double" }
513 Parameter { name: "maximumFieldOfView"; type: "double" }
/OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/location/mapviewer/
H A Dmapviewer.qml115 … map.fieldOfView = Math.min(Math.max(45.0, map.minimumFieldOfView), map.maximumFieldOfView)