[][src]Struct qt_widgets::q_frame::Shadow

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

This enum type defines the types of shadow that are used to give a 3D effect to frames.

C++ enum: QFrame::Shadow.

C++ documentation:

This enum type defines the types of shadow that are used to give a 3D effect to frames.

Shadow interacts with QFrame::Shape, the lineWidth() and the midLineWidth(). See the picture of the frames in the main class documentation.

See also QFrame::Shape, lineWidth(), and midLineWidth().

Methods

impl Shadow[src]

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

impl Shadow[src]

pub const Plain: Shadow[src]

the frame and contents appear level with the surroundings; draws using the palette QPalette::WindowText color (without any 3D effect) (C++ enum variant: Plain = 16)

pub const Raised: Shadow[src]

the frame and contents appear raised; draws a 3D raised line using the light and dark colors of the current color group (C++ enum variant: Raised = 32)

pub const Sunken: Shadow[src]

the frame and contents appear sunken; draws a 3D sunken line using the light and dark colors of the current color group (C++ enum variant: Sunken = 48)

Trait Implementations

impl Eq for Shadow[src]

impl Clone for Shadow[src]

impl PartialEq<Shadow> for Shadow[src]

impl From<i32> for Shadow[src]

impl From<Shadow> for c_int[src]

impl Copy for Shadow[src]

impl Debug for Shadow[src]

Auto Trait Implementations

impl Send for Shadow

impl Unpin for Shadow

impl Sync for Shadow

impl UnwindSafe for Shadow

impl RefUnwindSafe for Shadow

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]