[][src]Struct qt_3d_extras::QAbstractCameraController

#[repr(C)]
pub struct QAbstractCameraController { /* fields omitted */ }

The QAbstractCameraController class provides basic functionality for camera controllers.

C++ class: Qt3DExtras::QAbstractCameraController.

C++ documentation:

The QAbstractCameraController class provides basic functionality for camera controllers.

QAbstractCameraController sets up and handles input from keyboard, mouse, and other devices. QAbstractCameraController is an abstract class and cannot itself be instantiated. It provides a standard interface for camera controllers.

Derived classes need only implement the frameActionTriggered() method to move the camera.

Methods

impl QAbstractCameraController[src]

pub fn camera_changed(&self) -> Signal<()>[src]

Holds the currently controlled camera.

Returns a built-in Qt signal Qt3DExtras::QAbstractCameraController::cameraChanged that can be passed to qt_core::Signal::connect.

C++ documentation:

Holds the currently controlled camera.

Access functions:

Qt3DRender::QCamera *camera() const
void setCamera(Qt3DRender::QCamera *camera)

Notifier signal:

void cameraChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub fn linear_speed_changed(&self) -> Signal<()>[src]

Holds the current linear speed of the camera controller. Linear speed determines the movement speed of the camera.

Returns a built-in Qt signal Qt3DExtras::QAbstractCameraController::linearSpeedChanged that can be passed to qt_core::Signal::connect.

C++ documentation:

Holds the current linear speed of the camera controller. Linear speed determines the movement speed of the camera.

The default is 10.0.

Access functions:

float linearSpeed() const
void setLinearSpeed(float linearSpeed)

Notifier signal:

void linearSpeedChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub fn look_speed_changed(&self) -> Signal<()>[src]

Holds the current look speed of the camera controller. The look speed determines the turn rate of the camera pan and tilt.

Returns a built-in Qt signal Qt3DExtras::QAbstractCameraController::lookSpeedChanged that can be passed to qt_core::Signal::connect.

C++ documentation:

Holds the current look speed of the camera controller. The look speed determines the turn rate of the camera pan and tilt.

The default is 180.0.

Access functions:

float lookSpeed() const
void setLookSpeed(float lookSpeed)

Notifier signal:

void lookSpeedChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub fn acceleration_changed(&self) -> Signal<(c_float,)>[src]

Holds the current acceleration of the camera controller.

Returns a built-in Qt signal Qt3DExtras::QAbstractCameraController::accelerationChanged that can be passed to qt_core::Signal::connect.

C++ documentation:

Holds the current acceleration of the camera controller.

Access functions:

float acceleration() const
void setAcceleration(float acceleration)

Notifier signal:

void accelerationChanged(float acceleration)

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub fn deceleration_changed(&self) -> Signal<(c_float,)>[src]

Holds the current deceleration of the camera controller.

Returns a built-in Qt signal Qt3DExtras::QAbstractCameraController::decelerationChanged that can be passed to qt_core::Signal::connect.

C++ documentation:

Holds the current deceleration of the camera controller.

Access functions:

float deceleration() const
void setDeceleration(float deceleration)

Notifier signal:

void decelerationChanged(float deceleration)

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn acceleration(&self) -> c_float[src]

Holds the current acceleration of the camera controller.

Calls C++ function: float Qt3DExtras::QAbstractCameraController::acceleration() const.

C++ documentation:

Holds the current acceleration of the camera controller.

Access functions:

float acceleration() const
void setAcceleration(float acceleration)

Notifier signal:

void accelerationChanged(float acceleration)

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn camera(&self) -> QMutPtr<QCamera>[src]

Holds the currently controlled camera.

Calls C++ function: Qt3DRender::QCamera* Qt3DExtras::QAbstractCameraController::camera() const.

C++ documentation:

Holds the currently controlled camera.

Access functions:

Qt3DRender::QCamera *camera() const
void setCamera(Qt3DRender::QCamera *camera)

Notifier signal:

void cameraChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn deceleration(&self) -> c_float[src]

Holds the current deceleration of the camera controller.

Calls C++ function: float Qt3DExtras::QAbstractCameraController::deceleration() const.

C++ documentation:

Holds the current deceleration of the camera controller.

Access functions:

float deceleration() const
void setDeceleration(float deceleration)

Notifier signal:

void decelerationChanged(float deceleration)

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn linear_speed(&self) -> c_float[src]

Holds the current linear speed of the camera controller. Linear speed determines the movement speed of the camera.

Calls C++ function: float Qt3DExtras::QAbstractCameraController::linearSpeed() const.

C++ documentation:

Holds the current linear speed of the camera controller. Linear speed determines the movement speed of the camera.

The default is 10.0.

Access functions:

float linearSpeed() const
void setLinearSpeed(float linearSpeed)

Notifier signal:

void linearSpeedChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn look_speed(&self) -> c_float[src]

Holds the current look speed of the camera controller. The look speed determines the turn rate of the camera pan and tilt.

Calls C++ function: float Qt3DExtras::QAbstractCameraController::lookSpeed() const.

C++ documentation:

Holds the current look speed of the camera controller. The look speed determines the turn rate of the camera pan and tilt.

The default is 180.0.

Access functions:

float lookSpeed() const
void setLookSpeed(float lookSpeed)

Notifier signal:

void lookSpeedChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn meta_object(&self) -> Ptr<QMetaObject>[src]

Calls C++ function: virtual const QMetaObject* Qt3DExtras::QAbstractCameraController::metaObject() const.

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn qt_metacall(
    &mut self,
    arg1: Call,
    arg2: c_int,
    arg3: impl CastInto<MutPtr<*mut c_void>>
) -> c_int
[src]

Calls C++ function: virtual int Qt3DExtras::QAbstractCameraController::qt_metacall(QMetaObject::Call arg1, int arg2, void** arg3).

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn qt_metacast(
    &mut self,
    arg1: impl CastInto<Ptr<c_char>>
) -> MutPtr<c_void>
[src]

Calls C++ function: virtual void* Qt3DExtras::QAbstractCameraController::qt_metacast(const char* arg1).

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn set_acceleration(&mut self, acceleration: c_float)[src]

Holds the current acceleration of the camera controller.

Calls C++ function: void Qt3DExtras::QAbstractCameraController::setAcceleration(float acceleration).

C++ documentation:

Holds the current acceleration of the camera controller.

Access functions:

float acceleration() const
void setAcceleration(float acceleration)

Notifier signal:

void accelerationChanged(float acceleration)

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn set_camera(&mut self, camera: impl CastInto<MutPtr<QCamera>>)[src]

Holds the currently controlled camera.

Calls C++ function: void Qt3DExtras::QAbstractCameraController::setCamera(Qt3DRender::QCamera* camera).

C++ documentation:

Holds the currently controlled camera.

Access functions:

Qt3DRender::QCamera *camera() const
void setCamera(Qt3DRender::QCamera *camera)

Notifier signal:

void cameraChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn set_deceleration(&mut self, deceleration: c_float)[src]

Holds the current deceleration of the camera controller.

Calls C++ function: void Qt3DExtras::QAbstractCameraController::setDeceleration(float deceleration).

C++ documentation:

Holds the current deceleration of the camera controller.

Access functions:

float deceleration() const
void setDeceleration(float deceleration)

Notifier signal:

void decelerationChanged(float deceleration)

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn set_linear_speed(&mut self, linear_speed: c_float)[src]

Holds the current linear speed of the camera controller. Linear speed determines the movement speed of the camera.

Calls C++ function: void Qt3DExtras::QAbstractCameraController::setLinearSpeed(float linearSpeed).

C++ documentation:

Holds the current linear speed of the camera controller. Linear speed determines the movement speed of the camera.

The default is 10.0.

Access functions:

float linearSpeed() const
void setLinearSpeed(float linearSpeed)

Notifier signal:

void linearSpeedChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn set_look_speed(&mut self, look_speed: c_float)[src]

Holds the current look speed of the camera controller. The look speed determines the turn rate of the camera pan and tilt.

Calls C++ function: void Qt3DExtras::QAbstractCameraController::setLookSpeed(float lookSpeed).

C++ documentation:

Holds the current look speed of the camera controller. The look speed determines the turn rate of the camera pan and tilt.

The default is 180.0.

Access functions:

float lookSpeed() const
void setLookSpeed(float lookSpeed)

Notifier signal:

void lookSpeedChanged()

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn static_meta_object() -> Ref<QMetaObject>[src]

Returns a reference to the staticMetaObject field.

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn tr(
    s: impl CastInto<Ptr<c_char>>,
    c: impl CastInto<Ptr<c_char>>,
    n: c_int
) -> CppBox<QString>
[src]

Calls C++ function: static QString Qt3DExtras::QAbstractCameraController::tr(const char* s, const char* c, int n).

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

pub unsafe fn tr_utf8(
    s: impl CastInto<Ptr<c_char>>,
    c: impl CastInto<Ptr<c_char>>,
    n: c_int
) -> CppBox<QString>
[src]

Calls C++ function: static QString Qt3DExtras::QAbstractCameraController::trUtf8(const char* s, const char* c, int n).

This item is available if any(cpp_lib_version="5.11.3", cpp_lib_version="5.12.2", cpp_lib_version="5.13.0", cpp_lib_version="5.14.0").

Trait Implementations

impl CppDeletable for QAbstractCameraController[src]

unsafe fn delete(&mut self)[src]

Destroys the instance of QAbstractCameraController. The destructor is virtual.

Calls C++ function: virtual [destructor] void Qt3DExtras::QAbstractCameraController::~QAbstractCameraController().

C++ documentation:

Destroys the instance of QAbstractCameraController. The destructor is virtual.

impl Deref for QAbstractCameraController[src]

type Target = QEntity

The resulting type after dereferencing.

fn deref(&self) -> &QEntity[src]

Calls C++ function: Qt3DCore::QEntity* static_cast<Qt3DCore::QEntity*>(Qt3DExtras::QAbstractCameraController* ptr).

impl DerefMut for QAbstractCameraController[src]

fn deref_mut(&mut self) -> &mut QEntity[src]

Calls C++ function: Qt3DCore::QEntity* static_cast<Qt3DCore::QEntity*>(Qt3DExtras::QAbstractCameraController* ptr).

impl DynamicCast<QAbstractCameraController> for QEntity[src]

unsafe fn dynamic_cast(ptr: Ptr<QEntity>) -> Ptr<QAbstractCameraController>[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* dynamic_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QEntity* ptr).

unsafe fn dynamic_cast_mut(
    ptr: MutPtr<QEntity>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* dynamic_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QEntity* ptr).

impl DynamicCast<QAbstractCameraController> for QNode[src]

unsafe fn dynamic_cast(ptr: Ptr<QNode>) -> Ptr<QAbstractCameraController>[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* dynamic_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QNode* ptr).

unsafe fn dynamic_cast_mut(
    ptr: MutPtr<QNode>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* dynamic_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QNode* ptr).

impl DynamicCast<QAbstractCameraController> for QObject[src]

unsafe fn dynamic_cast(ptr: Ptr<QObject>) -> Ptr<QAbstractCameraController>[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* dynamic_cast<Qt3DExtras::QAbstractCameraController*>(QObject* ptr).

unsafe fn dynamic_cast_mut(
    ptr: MutPtr<QObject>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* dynamic_cast<Qt3DExtras::QAbstractCameraController*>(QObject* ptr).

impl DynamicCast<QFirstPersonCameraController> for QAbstractCameraController[src]

unsafe fn dynamic_cast(
    ptr: Ptr<QAbstractCameraController>
) -> Ptr<QFirstPersonCameraController>
[src]

Calls C++ function: Qt3DExtras::QFirstPersonCameraController* dynamic_cast<Qt3DExtras::QFirstPersonCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn dynamic_cast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QFirstPersonCameraController>
[src]

Calls C++ function: Qt3DExtras::QFirstPersonCameraController* dynamic_cast<Qt3DExtras::QFirstPersonCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

impl DynamicCast<QOrbitCameraController> for QAbstractCameraController[src]

unsafe fn dynamic_cast(
    ptr: Ptr<QAbstractCameraController>
) -> Ptr<QOrbitCameraController>
[src]

Calls C++ function: Qt3DExtras::QOrbitCameraController* dynamic_cast<Qt3DExtras::QOrbitCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn dynamic_cast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QOrbitCameraController>
[src]

Calls C++ function: Qt3DExtras::QOrbitCameraController* dynamic_cast<Qt3DExtras::QOrbitCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

impl StaticDowncast<QAbstractCameraController> for QEntity[src]

unsafe fn static_downcast(ptr: Ptr<QEntity>) -> Ptr<QAbstractCameraController>[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QEntity* ptr).

unsafe fn static_downcast_mut(
    ptr: MutPtr<QEntity>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QEntity* ptr).

impl StaticDowncast<QAbstractCameraController> for QNode[src]

unsafe fn static_downcast(ptr: Ptr<QNode>) -> Ptr<QAbstractCameraController>[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QNode* ptr).

unsafe fn static_downcast_mut(
    ptr: MutPtr<QNode>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DCore::QNode* ptr).

impl StaticDowncast<QAbstractCameraController> for QObject[src]

unsafe fn static_downcast(ptr: Ptr<QObject>) -> Ptr<QAbstractCameraController>[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(QObject* ptr).

unsafe fn static_downcast_mut(
    ptr: MutPtr<QObject>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(QObject* ptr).

impl StaticDowncast<QFirstPersonCameraController> for QAbstractCameraController[src]

unsafe fn static_downcast(
    ptr: Ptr<QAbstractCameraController>
) -> Ptr<QFirstPersonCameraController>
[src]

Calls C++ function: Qt3DExtras::QFirstPersonCameraController* static_cast<Qt3DExtras::QFirstPersonCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn static_downcast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QFirstPersonCameraController>
[src]

Calls C++ function: Qt3DExtras::QFirstPersonCameraController* static_cast<Qt3DExtras::QFirstPersonCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

impl StaticDowncast<QOrbitCameraController> for QAbstractCameraController[src]

unsafe fn static_downcast(
    ptr: Ptr<QAbstractCameraController>
) -> Ptr<QOrbitCameraController>
[src]

Calls C++ function: Qt3DExtras::QOrbitCameraController* static_cast<Qt3DExtras::QOrbitCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn static_downcast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QOrbitCameraController>
[src]

Calls C++ function: Qt3DExtras::QOrbitCameraController* static_cast<Qt3DExtras::QOrbitCameraController*>(Qt3DExtras::QAbstractCameraController* ptr).

impl StaticUpcast<QAbstractCameraController> for QFirstPersonCameraController[src]

unsafe fn static_upcast(
    ptr: Ptr<QFirstPersonCameraController>
) -> Ptr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DExtras::QFirstPersonCameraController* ptr).

unsafe fn static_upcast_mut(
    ptr: MutPtr<QFirstPersonCameraController>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DExtras::QFirstPersonCameraController* ptr).

impl StaticUpcast<QAbstractCameraController> for QOrbitCameraController[src]

unsafe fn static_upcast(
    ptr: Ptr<QOrbitCameraController>
) -> Ptr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DExtras::QOrbitCameraController* ptr).

unsafe fn static_upcast_mut(
    ptr: MutPtr<QOrbitCameraController>
) -> MutPtr<QAbstractCameraController>
[src]

Calls C++ function: Qt3DExtras::QAbstractCameraController* static_cast<Qt3DExtras::QAbstractCameraController*>(Qt3DExtras::QOrbitCameraController* ptr).

impl StaticUpcast<QEntity> for QAbstractCameraController[src]

unsafe fn static_upcast(ptr: Ptr<QAbstractCameraController>) -> Ptr<QEntity>[src]

Calls C++ function: Qt3DCore::QEntity* static_cast<Qt3DCore::QEntity*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn static_upcast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QEntity>
[src]

Calls C++ function: Qt3DCore::QEntity* static_cast<Qt3DCore::QEntity*>(Qt3DExtras::QAbstractCameraController* ptr).

impl StaticUpcast<QNode> for QAbstractCameraController[src]

unsafe fn static_upcast(ptr: Ptr<QAbstractCameraController>) -> Ptr<QNode>[src]

Calls C++ function: Qt3DCore::QNode* static_cast<Qt3DCore::QNode*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn static_upcast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QNode>
[src]

Calls C++ function: Qt3DCore::QNode* static_cast<Qt3DCore::QNode*>(Qt3DExtras::QAbstractCameraController* ptr).

impl StaticUpcast<QObject> for QAbstractCameraController[src]

unsafe fn static_upcast(ptr: Ptr<QAbstractCameraController>) -> Ptr<QObject>[src]

Calls C++ function: QObject* static_cast<QObject*>(Qt3DExtras::QAbstractCameraController* ptr).

unsafe fn static_upcast_mut(
    ptr: MutPtr<QAbstractCameraController>
) -> MutPtr<QObject>
[src]

Calls C++ function: QObject* static_cast<QObject*>(Qt3DExtras::QAbstractCameraController* ptr).

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.