pub struct DockWidgetFeature(/* private fields */);
Expand description
Implementations§
Source§impl DockWidgetFeature
impl DockWidgetFeature
Sourcepub const DockWidgetClosable: DockWidgetFeature
pub const DockWidgetClosable: DockWidgetFeature
The dock widget can be closed. On some systems the dock widget always has a close button when it’s floating (for example on MacOS 10.5). (C++ enum variant: DockWidgetClosable = 1
)
Sourcepub const DockWidgetMovable: DockWidgetFeature
pub const DockWidgetMovable: DockWidgetFeature
The dock widget can be moved between docks by the user. (C++ enum variant: DockWidgetMovable = 2
)
Sourcepub const DockWidgetFloatable: DockWidgetFeature
pub const DockWidgetFloatable: DockWidgetFeature
The dock widget can be detached from the main window, and floated as an independent window. (C++ enum variant: DockWidgetFloatable = 4
)
Sourcepub const DockWidgetVerticalTitleBar: DockWidgetFeature
pub const DockWidgetVerticalTitleBar: DockWidgetFeature
The dock widget displays a vertical title bar on its left side. This can be used to increase the amount of vertical space in a QMainWindow. (C++ enum variant: DockWidgetVerticalTitleBar = 8
)
Sourcepub const DockWidgetFeatureMask: DockWidgetFeature
pub const DockWidgetFeatureMask: DockWidgetFeature
C++ enum variant: DockWidgetFeatureMask = 15
Sourcepub const AllDockWidgetFeatures: DockWidgetFeature
pub const AllDockWidgetFeatures: DockWidgetFeature
(Deprecated) The dock widget can be closed, moved, and floated. Since new features might be added in future releases, the look and behavior of dock widgets might change if you use this flag. Please specify individual flags instead. (C++ enum variant: AllDockWidgetFeatures = 7
)
Sourcepub const NoDockWidgetFeatures: DockWidgetFeature
pub const NoDockWidgetFeatures: DockWidgetFeature
The dock widget cannot be closed, moved, or floated. (C++ enum variant: NoDockWidgetFeatures = 0
)
Sourcepub const Reserved: DockWidgetFeature
pub const Reserved: DockWidgetFeature
C++ enum variant: Reserved = 255
Trait Implementations§
Source§impl<T: Into<QFlags<DockWidgetFeature>>> BitOr<T> for DockWidgetFeature
impl<T: Into<QFlags<DockWidgetFeature>>> BitOr<T> for DockWidgetFeature
Source§impl Clone for DockWidgetFeature
impl Clone for DockWidgetFeature
Source§fn clone(&self) -> DockWidgetFeature
fn clone(&self) -> DockWidgetFeature
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more