pub struct ActiveEventLoop {
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>,
}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>Implementations§
Source§impl ActiveEventLoop
impl ActiveEventLoop
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(crate) fn create_custom_cursor( &self, cursor: CustomCursorSource, ) -> RootCustomCursor
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 !Freeze for ActiveEventLoop
impl !RefUnwindSafe for ActiveEventLoop
impl !Send for ActiveEventLoop
impl !Sync for ActiveEventLoop
impl Unpin for ActiveEventLoop
impl UnsafeUnpin for ActiveEventLoop
impl !UnwindSafe for ActiveEventLoop
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.