Struct winit::platform_impl::platform::x11::EventLoopWindowTarget
source · pub struct EventLoopWindowTarget<T> {Show 13 fields
xconn: Arc<XConnection>,
wm_delete_window: Atom,
net_wm_ping: Atom,
ime_sender: Sender<ImeRequest>,
control_flow: Cell<ControlFlow>,
exit: Cell<Option<i32>>,
root: Window,
ime: Option<RefCell<Ime>>,
windows: RefCell<HashMap<WindowId, Weak<UnownedWindow>>>,
redraw_sender: WakeSender<WindowId>,
activation_sender: WakeSender<(WindowId, AsyncRequestSerial)>,
device_events: Cell<DeviceEvents>,
_marker: PhantomData<T>,
}
Fields§
§xconn: Arc<XConnection>
§wm_delete_window: Atom
§net_wm_ping: Atom
§ime_sender: Sender<ImeRequest>
§control_flow: Cell<ControlFlow>
§exit: Cell<Option<i32>>
§root: Window
§ime: Option<RefCell<Ime>>
§windows: RefCell<HashMap<WindowId, Weak<UnownedWindow>>>
§redraw_sender: WakeSender<WindowId>
§activation_sender: WakeSender<(WindowId, AsyncRequestSerial)>
§device_events: Cell<DeviceEvents>
§_marker: PhantomData<T>
Implementations§
source§impl<T> EventLoopWindowTarget<T>
impl<T> EventLoopWindowTarget<T>
sourcepub(crate) fn x_connection(&self) -> &Arc<XConnection>
pub(crate) fn x_connection(&self) -> &Arc<XConnection>
Returns the XConnection
of this events loop.
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle>
pub fn primary_monitor(&self) -> Option<MonitorHandle>
pub fn listen_device_events(&self, allowed: DeviceEvents)
sourcepub fn update_listen_device_events(&self, focus: bool)
pub fn update_listen_device_events(&self, focus: bool)
Update the device event based on window focus.
pub fn raw_display_handle_rwh_06(&self) -> Result<RawDisplayHandle, HandleError>
pub(crate) fn set_control_flow(&self, control_flow: ControlFlow)
pub(crate) fn control_flow(&self) -> ControlFlow
pub(crate) fn exit(&self)
pub(crate) fn clear_exit(&self)
pub(crate) fn exiting(&self) -> bool
pub(crate) fn set_exit_code(&self, code: i32)
pub(crate) fn exit_code(&self) -> Option<i32>
Auto Trait Implementations§
impl<T> !Freeze for EventLoopWindowTarget<T>
impl<T> !RefUnwindSafe for EventLoopWindowTarget<T>
impl<T> !Send for EventLoopWindowTarget<T>
impl<T> !Sync for EventLoopWindowTarget<T>
impl<T> Unpin for EventLoopWindowTarget<T>where
T: Unpin,
impl<T> !UnwindSafe for EventLoopWindowTarget<T>
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
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.