#[repr(C)]
pub struct QScrollPrepareEvent { /* private fields */ }
Expand description

The QScrollPrepareEvent class is sent in preparation of scrolling.

C++ class: QScrollPrepareEvent.

C++ documentation:

The QScrollPrepareEvent class is sent in preparation of scrolling.

The scroll prepare event is sent before scrolling (usually by QScroller) is started. The object receiving this event should set viewportSize, maxContentPos and contentPos. It also should accept this event to indicate that scrolling should be started.

It is not guaranteed that a QScrollEvent will be sent after an acceepted QScrollPrepareEvent, e.g. in a case where the maximum content position is (0,0).

Implementations§

source§

impl QScrollPrepareEvent

source

pub unsafe fn content_pos(&self) -> CppBox<QPointF>

Returns the current position of the content as set by setContentPos.

Calls C++ function: QPointF QScrollPrepareEvent::contentPos() const.

C++ documentation:

Returns the current position of the content as set by setContentPos.

See also setContentPos().

source

pub unsafe fn content_pos_range(&self) -> CppBox<QRectF>

Returns the range of coordinates for the content as set by setContentPosRange().

Calls C++ function: QRectF QScrollPrepareEvent::contentPosRange() const.

C++ documentation:

Returns the range of coordinates for the content as set by setContentPosRange().

See also setContentPosRange().

source

pub unsafe fn copy_from( &self, other: impl CastInto<Ref<QScrollPrepareEvent>> ) -> Ref<QScrollPrepareEvent>

The QScrollPrepareEvent class is sent in preparation of scrolling.

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

C++ documentation:

The QScrollPrepareEvent class is sent in preparation of scrolling.

The scroll prepare event is sent before scrolling (usually by QScroller) is started. The object receiving this event should set viewportSize, maxContentPos and contentPos. It also should accept this event to indicate that scrolling should be started.

It is not guaranteed that a QScrollEvent will be sent after an acceepted QScrollPrepareEvent, e.g. in a case where the maximum content position is (0,0).

source

pub unsafe fn new( start_pos: impl CastInto<Ref<QPointF>> ) -> CppBox<QScrollPrepareEvent>

Creates new QScrollPrepareEvent The startPos is the position of a touch or mouse event that started the scrolling.

Calls C++ function: [constructor] void QScrollPrepareEvent::QScrollPrepareEvent(const QPointF& startPos).

C++ documentation:

Creates new QScrollPrepareEvent The startPos is the position of a touch or mouse event that started the scrolling.

source

pub unsafe fn new_copy( other: impl CastInto<Ref<QScrollPrepareEvent>> ) -> CppBox<QScrollPrepareEvent>

The QScrollPrepareEvent class is sent in preparation of scrolling.

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

C++ documentation:

The QScrollPrepareEvent class is sent in preparation of scrolling.

The scroll prepare event is sent before scrolling (usually by QScroller) is started. The object receiving this event should set viewportSize, maxContentPos and contentPos. It also should accept this event to indicate that scrolling should be started.

It is not guaranteed that a QScrollEvent will be sent after an acceepted QScrollPrepareEvent, e.g. in a case where the maximum content position is (0,0).

source

pub unsafe fn set_content_pos(&self, pos: impl CastInto<Ref<QPointF>>)

Sets the current content position to pos.

Calls C++ function: void QScrollPrepareEvent::setContentPos(const QPointF& pos).

C++ documentation:

Sets the current content position to pos.

See also contentPos().

source

pub unsafe fn set_content_pos_range(&self, rect: impl CastInto<Ref<QRectF>>)

Sets the range of content coordinates to rect.

Calls C++ function: void QScrollPrepareEvent::setContentPosRange(const QRectF& rect).

C++ documentation:

Sets the range of content coordinates to rect.

See also contentPosRange().

source

pub unsafe fn set_viewport_size(&self, size: impl CastInto<Ref<QSizeF>>)

Sets the size of the area that is to be scrolled to size.

Calls C++ function: void QScrollPrepareEvent::setViewportSize(const QSizeF& size).

C++ documentation:

Sets the size of the area that is to be scrolled to size.

See also viewportSize().

source

pub unsafe fn start_pos(&self) -> CppBox<QPointF>

Returns the position of the touch or mouse event that started the scrolling.

Calls C++ function: QPointF QScrollPrepareEvent::startPos() const.

C++ documentation:

Returns the position of the touch or mouse event that started the scrolling.

source

pub unsafe fn viewport_size(&self) -> CppBox<QSizeF>

Returns size of the area that is to be scrolled as set by setViewportSize

Calls C++ function: QSizeF QScrollPrepareEvent::viewportSize() const.

C++ documentation:

Returns size of the area that is to be scrolled as set by setViewportSize

See also setViewportSize().

Methods from Deref<Target = QEvent>§

source

pub unsafe fn accept(&self)

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().

source

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

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

source

pub unsafe fn ignore(&self)

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().

source

pub unsafe fn is_accepted(&self) -> bool

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)
source

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

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)
source

pub unsafe fn spontaneous(&self) -> bool

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.

source

pub unsafe fn type_(&self) -> Type

Returns the event type.

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

C++ documentation:

Returns the event type.

Trait Implementations§

source§

impl CppDeletable for QScrollPrepareEvent

source§

unsafe fn delete(&self)

Destroys QScrollEvent.

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

C++ documentation:

Destroys QScrollEvent.

source§

impl Deref for QScrollPrepareEvent

source§

fn deref(&self) -> &QEvent

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

§

type Target = QEvent

The resulting type after dereferencing.
source§

impl DynamicCast<QScrollPrepareEvent> for QEvent

source§

unsafe fn dynamic_cast(ptr: Ptr<QEvent>) -> Ptr<QScrollPrepareEvent>

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

source§

impl StaticDowncast<QScrollPrepareEvent> for QEvent

source§

unsafe fn static_downcast(ptr: Ptr<QEvent>) -> Ptr<QScrollPrepareEvent>

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

source§

impl StaticUpcast<QEvent> for QScrollPrepareEvent

source§

unsafe fn static_upcast(ptr: Ptr<QScrollPrepareEvent>) -> Ptr<QEvent>

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

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T, U> CastInto<U> for T
where U: CastFrom<T>,

source§

unsafe fn cast_into(self) -> U

Performs the conversion. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> StaticUpcast<T> for T

source§

unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>

Convert type of a const pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.