pub struct Shadow(/* private fields */);Expand description
This enum type defines the types of shadow that are used to give a 3D effect to frames.
C++ enum: QFrame::Shadow.
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().
Implementations§
Source§impl Shadow
impl Shadow
Sourcepub const Plain: Shadow
pub const Plain: Shadow
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)
Trait Implementations§
impl Copy for Shadow
impl Eq for Shadow
impl StructuralPartialEq for Shadow
Auto Trait Implementations§
impl Freeze for Shadow
impl RefUnwindSafe for Shadow
impl Send for Shadow
impl Sync for Shadow
impl Unpin for Shadow
impl UnwindSafe for Shadow
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more