[][src]Struct qt_widgets::q_abstract_item_view::CursorAction

#[repr(transparent)]
pub struct CursorAction(_);

This enum describes the different ways to navigate between items,

C++ enum: QAbstractItemView::CursorAction.

C++ documentation:

This enum describes the different ways to navigate between items,

See also moveCursor().

Methods

impl CursorAction[src]

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

impl CursorAction[src]

pub const MoveUp: CursorAction[src]

Move to the item above the current item. (C++ enum variant: MoveUp = 0)

pub const MoveDown: CursorAction[src]

Move to the item below the current item. (C++ enum variant: MoveDown = 1)

pub const MoveLeft: CursorAction[src]

Move to the item left of the current item. (C++ enum variant: MoveLeft = 2)

pub const MoveRight: CursorAction[src]

Move to the item right of the current item. (C++ enum variant: MoveRight = 3)

pub const MoveHome: CursorAction[src]

Move to the top-left corner item. (C++ enum variant: MoveHome = 4)

pub const MoveEnd: CursorAction[src]

Move to the bottom-right corner item. (C++ enum variant: MoveEnd = 5)

pub const MovePageUp: CursorAction[src]

Move one page up above the current item. (C++ enum variant: MovePageUp = 6)

pub const MovePageDown: CursorAction[src]

Move one page down below the current item. (C++ enum variant: MovePageDown = 7)

pub const MoveNext: CursorAction[src]

Move to the item after the current item. (C++ enum variant: MoveNext = 8)

pub const MovePrevious: CursorAction[src]

Move to the item before the current item. (C++ enum variant: MovePrevious = 9)

Trait Implementations

impl Eq for CursorAction[src]

impl Clone for CursorAction[src]

impl PartialEq<CursorAction> for CursorAction[src]

impl From<i32> for CursorAction[src]

impl From<CursorAction> for c_int[src]

impl Copy for CursorAction[src]

impl Debug for CursorAction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<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]