[][src]Struct qt_widgets::QTapAndHoldGesture

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

The QTapAndHoldGesture class describes a tap-and-hold (aka LongTap) gesture made by the user.

C++ class: QTapAndHoldGesture.

C++ documentation:

The QTapAndHoldGesture class describes a tap-and-hold (aka LongTap) 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 QTapAndHoldGesture[src]

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

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

pub unsafe fn new_1a(
    parent: impl CastInto<Ptr<QObject>>
) -> QBox<QTapAndHoldGesture>
[src]

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

pub unsafe fn new_0a() -> QBox<QTapAndHoldGesture>[src]

The QTapAndHoldGesture class describes a tap-and-hold (aka LongTap) gesture made by the user.

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

C++ documentation:

The QTapAndHoldGesture class describes a tap-and-hold (aka LongTap) 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 QTapAndHoldGesture::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(
    &self,
    arg1: Call,
    arg2: c_int,
    arg3: *mut *mut c_void
) -> c_int
[src]

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

pub unsafe fn qt_metacast(&self, arg1: *const c_char) -> *mut c_void[src]

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

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

This property holds the position of the tap

Calls C++ function: void QTapAndHoldGesture::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 set_timeout(msecs: c_int)[src]

Set the timeout, in milliseconds, before the gesture triggers.

Calls C++ function: static void QTapAndHoldGesture::setTimeout(int msecs).

C++ documentation:

Set the timeout, in milliseconds, before the gesture triggers.

The recognizer will detect a touch down and if msecs later the touch is still down, it will trigger the QTapAndHoldGesture. The default value is 700 milliseconds.

See also timeout().

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

Returns a reference to the staticMetaObject field.

pub unsafe fn timeout() -> c_int[src]

Gets the timeout, in milliseconds, before the gesture triggers.

Calls C++ function: static int QTapAndHoldGesture::timeout().

C++ documentation:

Gets the timeout, in milliseconds, before the gesture triggers.

The recognizer will detect a touch down and if timeout() later the touch is still down, it will trigger the QTapAndHoldGesture. The default value is 700 milliseconds.

See also setTimeout().

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

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

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

Calls C++ function: static QString QTapAndHoldGesture::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(
    &self,
    arg1: Call,
    arg2: c_int,
    arg3: *mut *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(&self, arg1: *const c_char) -> *mut c_void[src]

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

pub unsafe fn set_gesture_cancel_policy(&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(&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(&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 CppDeletable for QTapAndHoldGesture[src]

unsafe fn delete(&self)[src]

Destructor.

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

C++ documentation:

Destructor.

impl Deref for QTapAndHoldGesture[src]

type Target = QGesture

The resulting type after dereferencing.

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

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

impl DynamicCast<QTapAndHoldGesture> for QGesture[src]

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

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

impl DynamicCast<QTapAndHoldGesture> for QObject[src]

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

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

impl StaticDowncast<QTapAndHoldGesture> for QGesture[src]

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

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

impl StaticDowncast<QTapAndHoldGesture> for QObject[src]

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

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

impl StaticUpcast<QGesture> for QTapAndHoldGesture[src]

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

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

impl StaticUpcast<QObject> for QTapAndHoldGesture[src]

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

Calls C++ function: QObject* static_cast<QObject*>(QTapAndHoldGesture* 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.