[][src]Struct qt_widgets::QTapGesture

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

The QTapGesture class describes a tap gesture made by the user.

C++ class: QTapGesture.

C++ documentation:

The QTapGesture class describes a tap gesture made by the user.

For an overview of gesture handling in Qt and information on using gestures in your applications, see the Gestures in Widgets and Graphics View document.

Methods

impl QTapGesture[src]

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

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

pub unsafe fn new_1a(
    parent: impl CastInto<MutPtr<QObject>>
) -> CppBox<QTapGesture>
[src]

Calls C++ function: [constructor] void QTapGesture::QTapGesture(QObject* parent = …).

pub unsafe fn new_0a() -> CppBox<QTapGesture>[src]

The QTapGesture class describes a tap gesture made by the user.

Calls C++ function: [constructor] void QTapGesture::QTapGesture().

C++ documentation:

The QTapGesture class describes a tap gesture made by the user.

For an overview of gesture handling in Qt and information on using gestures in your applications, see the Gestures in Widgets and Graphics View document.

pub unsafe fn position(&self) -> CppBox<QPointF>[src]

This property holds the position of the tap

Calls C++ function: QPointF QTapGesture::position() const.

C++ documentation:

This property holds the position of the tap

Access functions:

QPointF position() const
void setPosition(const QPointF &pos)

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 QTapGesture::qt_metacall(QMetaObject::Call arg1, int arg2, void** arg3).

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

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

pub unsafe fn set_position(&mut self, pos: impl CastInto<Ref<QPointF>>)[src]

This property holds the position of the tap

Calls C++ function: void QTapGesture::setPosition(const QPointF& pos).

C++ documentation:

This property holds the position of the tap

Access functions:

QPointF position() const
void setPosition(const QPointF &pos)

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

Returns a reference to the staticMetaObject field.

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 QTapGesture::tr(const char* s, const char* c, int n).

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 QTapGesture::trUtf8(const char* s, const char* c, int n).

Methods from Deref<Target = QGesture>

pub unsafe fn gesture_cancel_policy(&self) -> GestureCancelPolicy[src]

This property holds the policy for deciding what happens on accepting a gesture

Calls C++ function: QGesture::GestureCancelPolicy QGesture::gestureCancelPolicy() const.

C++ documentation:

This property holds the policy for deciding what happens on accepting a gesture

On accepting one gesture Qt can automatically cancel other gestures that belong to other targets. The policy is normally set to not cancel any other gestures and can be set to cancel all active gestures in the context. For example for all child widgets.

Access functions:

GestureCancelPolicy gestureCancelPolicy() const
void setGestureCancelPolicy(GestureCancelPolicy policy)

pub unsafe fn gesture_type(&self) -> GestureType[src]

This property holds the type of the gesture

Calls C++ function: Qt::GestureType QGesture::gestureType() const.

C++ documentation:

This property holds the type of the gesture

Access functions:

Qt::GestureType gestureType() const

pub unsafe fn has_hot_spot(&self) -> bool[src]

This property holds whether the gesture has a hot-spot

Calls C++ function: bool QGesture::hasHotSpot() const.

C++ documentation:

This property holds whether the gesture has a hot-spot

Access functions:

bool hasHotSpot() const

pub unsafe fn hot_spot(&self) -> CppBox<QPointF>[src]

This property holds the point that is used to find the receiver for the gesture event.

Calls C++ function: QPointF QGesture::hotSpot() const.

C++ documentation:

This property holds the point that is used to find the receiver for the gesture event.

The hot-spot is a point in the global coordinate system, use QWidget::mapFromGlobal() or QGestureEvent::mapToGraphicsScene() to get a local hot-spot.

The hot-spot should be set by the gesture recognizer to allow gesture event delivery to a QGraphicsObject.

Access functions:

QPointF hotSpot() const
void setHotSpot(const QPointF &value)
void unsetHotSpot()

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

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

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 QGesture::qt_metacall(QMetaObject::Call arg1, int arg2, void** arg3).

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

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

pub unsafe fn set_gesture_cancel_policy(&mut self, policy: GestureCancelPolicy)[src]

This property holds the policy for deciding what happens on accepting a gesture

Calls C++ function: void QGesture::setGestureCancelPolicy(QGesture::GestureCancelPolicy policy).

C++ documentation:

This property holds the policy for deciding what happens on accepting a gesture

On accepting one gesture Qt can automatically cancel other gestures that belong to other targets. The policy is normally set to not cancel any other gestures and can be set to cancel all active gestures in the context. For example for all child widgets.

Access functions:

GestureCancelPolicy gestureCancelPolicy() const
void setGestureCancelPolicy(GestureCancelPolicy policy)

pub unsafe fn set_hot_spot(&mut self, value: impl CastInto<Ref<QPointF>>)[src]

This property holds the point that is used to find the receiver for the gesture event.

Calls C++ function: void QGesture::setHotSpot(const QPointF& value).

C++ documentation:

This property holds the point that is used to find the receiver for the gesture event.

The hot-spot is a point in the global coordinate system, use QWidget::mapFromGlobal() or QGestureEvent::mapToGraphicsScene() to get a local hot-spot.

The hot-spot should be set by the gesture recognizer to allow gesture event delivery to a QGraphicsObject.

Access functions:

QPointF hotSpot() const
void setHotSpot(const QPointF &value)
void unsetHotSpot()

pub unsafe fn state(&self) -> GestureState[src]

This property holds the current state of the gesture

Calls C++ function: Qt::GestureState QGesture::state() const.

C++ documentation:

This property holds the current state of the gesture

Access functions:

Qt::GestureState state() const

pub unsafe fn unset_hot_spot(&mut self)[src]

This property holds the point that is used to find the receiver for the gesture event.

Calls C++ function: void QGesture::unsetHotSpot().

C++ documentation:

This property holds the point that is used to find the receiver for the gesture event.

The hot-spot is a point in the global coordinate system, use QWidget::mapFromGlobal() or QGestureEvent::mapToGraphicsScene() to get a local hot-spot.

The hot-spot should be set by the gesture recognizer to allow gesture event delivery to a QGraphicsObject.

Access functions:

QPointF hotSpot() const
void setHotSpot(const QPointF &value)
void unsetHotSpot()

Trait Implementations

impl Deref for QTapGesture[src]

type Target = QGesture

The resulting type after dereferencing.

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

Calls C++ function: QGesture* static_cast<QGesture*>(QTapGesture* ptr).

impl DerefMut for QTapGesture[src]

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

Calls C++ function: QGesture* static_cast<QGesture*>(QTapGesture* ptr).

impl StaticUpcast<QGesture> for QTapGesture[src]

unsafe fn static_upcast(ptr: Ptr<QTapGesture>) -> Ptr<QGesture>[src]

Calls C++ function: QGesture* static_cast<QGesture*>(QTapGesture* ptr).

unsafe fn static_upcast_mut(ptr: MutPtr<QTapGesture>) -> MutPtr<QGesture>[src]

Calls C++ function: QGesture* static_cast<QGesture*>(QTapGesture* ptr).

impl StaticUpcast<QObject> for QTapGesture[src]

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

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

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

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

impl StaticDowncast<QTapGesture> for QGesture[src]

unsafe fn static_downcast(ptr: Ptr<QGesture>) -> Ptr<QTapGesture>[src]

Calls C++ function: QTapGesture* static_cast<QTapGesture*>(QGesture* ptr).

unsafe fn static_downcast_mut(ptr: MutPtr<QGesture>) -> MutPtr<QTapGesture>[src]

Calls C++ function: QTapGesture* static_cast<QTapGesture*>(QGesture* ptr).

impl StaticDowncast<QTapGesture> for QObject[src]

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

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

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

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

impl DynamicCast<QTapGesture> for QGesture[src]

unsafe fn dynamic_cast(ptr: Ptr<QGesture>) -> Ptr<QTapGesture>[src]

Calls C++ function: QTapGesture* dynamic_cast<QTapGesture*>(QGesture* ptr).

unsafe fn dynamic_cast_mut(ptr: MutPtr<QGesture>) -> MutPtr<QTapGesture>[src]

Calls C++ function: QTapGesture* dynamic_cast<QTapGesture*>(QGesture* ptr).

impl DynamicCast<QTapGesture> for QObject[src]

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

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

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

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

impl CppDeletable for QTapGesture[src]

unsafe fn delete(&mut self)[src]

Destructor.

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

C++ documentation:

Destructor.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<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.

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

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

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

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

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