[][src]Struct qt_widgets::q_mdi_area::WindowOrder

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

Specifies the criteria to use for ordering the list of child windows returned by subWindowList(). The functions cascadeSubWindows() and tileSubWindows() follow this order when arranging the windows.

C++ enum: QMdiArea::WindowOrder.

C++ documentation:

Specifies the criteria to use for ordering the list of child windows returned by subWindowList(). The functions cascadeSubWindows() and tileSubWindows() follow this order when arranging the windows.

See also subWindowList().

Methods

impl WindowOrder[src]

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

impl WindowOrder[src]

pub const CreationOrder: WindowOrder[src]

The windows are returned in the order of their creation. (C++ enum variant: CreationOrder = 0)

pub const StackingOrder: WindowOrder[src]

The windows are returned in the order in which they are stacked, with the top-most window being last in the list. (C++ enum variant: StackingOrder = 1)

pub const ActivationHistoryOrder: WindowOrder[src]

The windows are returned in the order in which they were activated. (C++ enum variant: ActivationHistoryOrder = 2)

Trait Implementations

impl Eq for WindowOrder[src]

impl Clone for WindowOrder[src]

impl PartialEq<WindowOrder> for WindowOrder[src]

impl From<i32> for WindowOrder[src]

impl From<WindowOrder> for c_int[src]

impl Copy for WindowOrder[src]

impl Debug for WindowOrder[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]