Struct xcb::x::ConfigureNotifyEvent
source · pub struct ConfigureNotifyEvent { /* private fields */ }
Expand description
NOT YET DOCUMENTED
Implementations§
source§impl ConfigureNotifyEvent
impl ConfigureNotifyEvent
pub fn new( event: Window, window: Window, above_sibling: Window, x: i16, y: i16, width: u16, height: u16, border_width: u16, override_redirect: bool, ) -> ConfigureNotifyEvent
pub fn response_type(&self) -> u8
pub fn sequence(&self) -> u16
sourcepub fn event(&self) -> Window
pub fn event(&self) -> Window
The reconfigured window or its parent, depending on whether StructureNotify
or SubstructureNotify
was selected.
sourcepub fn window(&self) -> Window
pub fn window(&self) -> Window
The window whose size, position, border, and/or stacking order was changed.
sourcepub fn above_sibling(&self) -> Window
pub fn above_sibling(&self) -> Window
If XCB_NONE
, the window
is on the bottom of the stack with respect to
sibling windows. However, if set to a sibling window, the window
is placed on
top of this sibling window.
sourcepub fn x(&self) -> i16
pub fn x(&self) -> i16
The X coordinate of the upper-left outside corner of window
, relative to the
parent window’s origin.
sourcepub fn y(&self) -> i16
pub fn y(&self) -> i16
The Y coordinate of the upper-left outside corner of window
, relative to the
parent window’s origin.
sourcepub fn border_width(&self) -> u16
pub fn border_width(&self) -> u16
The border width of window
.
sourcepub fn override_redirect(&self) -> bool
pub fn override_redirect(&self) -> bool
Window managers should ignore this window if override_redirect
is 1.
Trait Implementations§
source§impl BaseEvent for ConfigureNotifyEvent
impl BaseEvent for ConfigureNotifyEvent
source§impl Debug for ConfigureNotifyEvent
impl Debug for ConfigureNotifyEvent
source§impl Drop for ConfigureNotifyEvent
impl Drop for ConfigureNotifyEvent
impl Send for ConfigureNotifyEvent
impl Sync for ConfigureNotifyEvent
Auto Trait Implementations§
impl Freeze for ConfigureNotifyEvent
impl RefUnwindSafe for ConfigureNotifyEvent
impl Unpin for ConfigureNotifyEvent
impl UnwindSafe for ConfigureNotifyEvent
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