[][src]Struct qt_core::QTimerEvent

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

The QTimerEvent class contains parameters that describe a timer event.

C++ class: QTimerEvent.

C++ documentation:

The QTimerEvent class contains parameters that describe a timer event.

Timer events are sent at regular intervals to objects that have started one or more timers. Each timer has a unique identifier. A timer is started with QObject::startTimer().

The QTimer class provides a high-level programming interface that uses signals instead of events. It also provides single-shot timers.

The event handler QObject::timerEvent() receives timer events.

Methods

impl QTimerEvent[src]

pub unsafe fn copy_from(
    &self,
    other: impl CastInto<Ref<QTimerEvent>>
) -> Ref<QTimerEvent>
[src]

The QTimerEvent class contains parameters that describe a timer event.

Calls C++ function: QTimerEvent& QTimerEvent::operator=(const QTimerEvent& other).

C++ documentation:

The QTimerEvent class contains parameters that describe a timer event.

Timer events are sent at regular intervals to objects that have started one or more timers. Each timer has a unique identifier. A timer is started with QObject::startTimer().

The QTimer class provides a high-level programming interface that uses signals instead of events. It also provides single-shot timers.

The event handler QObject::timerEvent() receives timer events.

pub unsafe fn new(timer_id: c_int) -> CppBox<QTimerEvent>[src]

Constructs a timer event object with the timer identifier set to timerId.

Calls C++ function: [constructor] void QTimerEvent::QTimerEvent(int timerId).

C++ documentation:

Constructs a timer event object with the timer identifier set to timerId.

pub unsafe fn new_copy(
    other: impl CastInto<Ref<QTimerEvent>>
) -> CppBox<QTimerEvent>
[src]

The QTimerEvent class contains parameters that describe a timer event.

Calls C++ function: [constructor] void QTimerEvent::QTimerEvent(const QTimerEvent& other).

C++ documentation:

The QTimerEvent class contains parameters that describe a timer event.

Timer events are sent at regular intervals to objects that have started one or more timers. Each timer has a unique identifier. A timer is started with QObject::startTimer().

The QTimer class provides a high-level programming interface that uses signals instead of events. It also provides single-shot timers.

The event handler QObject::timerEvent() receives timer events.

pub unsafe fn timer_id(&self) -> c_int[src]

Returns the unique timer identifier, which is the same identifier as returned from QObject::startTimer().

Calls C++ function: int QTimerEvent::timerId() const.

C++ documentation:

Returns the unique timer identifier, which is the same identifier as returned from QObject::startTimer().

Methods from Deref<Target = QEvent>

pub unsafe fn accept(&self)[src]

Sets the accept flag of the event object, the equivalent of calling setAccepted(true).

Calls C++ function: void QEvent::accept().

C++ documentation:

Sets the accept flag of the event object, the equivalent of calling setAccepted(true).

Setting the accept parameter indicates that the event receiver wants the event. Unwanted events might be propagated to the parent widget.

See also ignore().

pub unsafe fn copy_from(&self, other: impl CastInto<Ref<QEvent>>) -> Ref<QEvent>[src]

Calls C++ function: QEvent& QEvent::operator=(const QEvent& other).

pub unsafe fn ignore(&self)[src]

Clears the accept flag parameter of the event object, the equivalent of calling setAccepted(false).

Calls C++ function: void QEvent::ignore().

C++ documentation:

Clears the accept flag parameter of the event object, the equivalent of calling setAccepted(false).

Clearing the accept parameter indicates that the event receiver does not want the event. Unwanted events might be propagated to the parent widget.

See also accept().

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

the accept flag of the event object

Calls C++ function: bool QEvent::isAccepted() const.

C++ documentation:

the accept flag of the event object

Setting the accept parameter indicates that the event receiver wants the event. Unwanted events might be propagated to the parent widget. By default, isAccepted() is set to true, but don't rely on this as subclasses may choose to clear it in their constructor.

For convenience, the accept flag can also be set with accept(), and cleared with ignore().

Access functions:

bool isAccepted() const
void setAccepted(bool accepted)

pub unsafe fn set_accepted(&self, accepted: bool)[src]

the accept flag of the event object

Calls C++ function: void QEvent::setAccepted(bool accepted).

C++ documentation:

the accept flag of the event object

Setting the accept parameter indicates that the event receiver wants the event. Unwanted events might be propagated to the parent widget. By default, isAccepted() is set to true, but don't rely on this as subclasses may choose to clear it in their constructor.

For convenience, the accept flag can also be set with accept(), and cleared with ignore().

Access functions:

bool isAccepted() const
void setAccepted(bool accepted)

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

Returns true if the event originated outside the application (a system event); otherwise returns false.

Calls C++ function: bool QEvent::spontaneous() const.

C++ documentation:

Returns true if the event originated outside the application (a system event); otherwise returns false.

The return value of this function is not defined for paint events.

pub unsafe fn type_(&self) -> Type[src]

Returns the event type.

Calls C++ function: QEvent::Type QEvent::type() const.

C++ documentation:

Returns the event type.

Trait Implementations

impl CppDeletable for QTimerEvent[src]

unsafe fn delete(&self)[src]

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

impl Deref for QTimerEvent[src]

type Target = QEvent

The resulting type after dereferencing.

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

Calls C++ function: QEvent* static_cast<QEvent*>(QTimerEvent* ptr).

impl DynamicCast<QTimerEvent> for QEvent[src]

unsafe fn dynamic_cast(ptr: Ptr<QEvent>) -> Ptr<QTimerEvent>[src]

Calls C++ function: QTimerEvent* dynamic_cast<QTimerEvent*>(QEvent* ptr).

impl StaticDowncast<QTimerEvent> for QEvent[src]

unsafe fn static_downcast(ptr: Ptr<QEvent>) -> Ptr<QTimerEvent>[src]

Calls C++ function: QTimerEvent* static_cast<QTimerEvent*>(QEvent* ptr).

impl StaticUpcast<QEvent> for QTimerEvent[src]

unsafe fn static_upcast(ptr: Ptr<QTimerEvent>) -> Ptr<QEvent>[src]

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