QRotationSensor Class
QRotationSensor 클래스는 QSensor 를 편리하게 감싸는 래퍼입니다. 더 보기...
헤더: | #include <QRotationSensor> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Sensors) target_link_libraries(mytarget PRIVATE Qt6::Sensors) |
qmake: | QT += sensors |
상속합니다: | QSensor |
속성
- hasZ : const bool
공공 기능
QRotationSensor(QObject *parent = nullptr) | |
virtual | ~QRotationSensor() |
bool | hasZ() const |
QRotationReading * | reading() const |
void | setHasZ(bool hasZ) |
신호
void | hasZChanged(bool hasZ) |
상세 설명
유일한 동작상의 차이점은 이 클래스가 유형을 올바르게 설정한다는 것입니다.
이 클래스에는 QSensorReading 대신 QRotationReading 을 반환하는 reading() 함수도 있습니다.
센서 작동 방식에 대한 자세한 내용은 QRotationReading 을 참조하세요.
QRotationReading 를참조하세요 .
속성 문서
[read-only]
hasZ : const bool
이 속성은 z 각도를 사용할 수 있는지 여부를 나타내는 값을 보유합니다.
z를 사용할 수 있으면 참을 반환합니다. z를 사용할 수 없으면 false를 반환합니다.
함수에 액세스합니다:
bool | hasZ() const |
알림 신호:
void | hasZChanged(bool hasZ) |
멤버 함수 문서
[explicit]
QRotationSensor::QRotationSensor(QObject *parent = nullptr)
parent 의 자식으로 센서를 구성합니다.
[virtual noexcept]
QRotationSensor::~QRotationSensor()
센서를 파괴합니다. 센서가 아직 중지되지 않은 경우 센서를 중지합니다.
QRotationReading *QRotationSensor::reading() const
이 센서의 판독 클래스를 반환합니다.
QSensor::reading()도 참조하세요 .
void QRotationSensor::setHasZ(bool hasZ)
hasZ 에서 z 각도를 사용할 수 있는지 여부를 설정합니다. 이는 백엔드에서 호출됩니다. 기본적으로 hasZ 속성은 true이므로 백엔드에서는 회전 센서가 z 각도를 보고할 수 없는 경우에만 이 속성을 호출하면 됩니다.
hasZ()도 참조하세요 .
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.