pub struct ActivationState {
xdg_activation: XdgActivationV1,
}Expand description
State for xdg-activation
Fields§
§xdg_activation: XdgActivationV1Implementations§
Source§impl ActivationState
impl ActivationState
Sourcepub fn bind<State>(
globals: &GlobalList,
qh: &QueueHandle<State>,
) -> Result<ActivationState, BindError>
pub fn bind<State>( globals: &GlobalList, qh: &QueueHandle<State>, ) -> Result<ActivationState, BindError>
Bind the xdg-activation global
Sourcepub fn activate<D>(&self, surface: &WlSurface, token: String)
pub fn activate<D>(&self, surface: &WlSurface, token: String)
Activate a surface with the provided token.
Sourcepub fn request_token<D>(&self, qh: &QueueHandle<D>, request_data: RequestData)where
D: ActivationHandler<RequestData = RequestData> + Dispatch<XdgActivationTokenV1, RequestData> + 'static,
pub fn request_token<D>(&self, qh: &QueueHandle<D>, request_data: RequestData)where
D: ActivationHandler<RequestData = RequestData> + Dispatch<XdgActivationTokenV1, RequestData> + 'static,
Request a token for surface activation.
To attach custom data to the request implement RequestDataExt on a custom type
and use Self::request_token_with_data instead.
Sourcepub fn request_token_with_data<D, R>(
&self,
qh: &QueueHandle<D>,
request_data: R,
)where
D: ActivationHandler<RequestData = R> + Dispatch<XdgActivationTokenV1, R> + 'static,
R: RequestDataExt + 'static,
pub fn request_token_with_data<D, R>(
&self,
qh: &QueueHandle<D>,
request_data: R,
)where
D: ActivationHandler<RequestData = R> + Dispatch<XdgActivationTokenV1, R> + 'static,
R: RequestDataExt + 'static,
Request a token for surface activation with user data.
To use this method you need to provide [delegate_activation] with your custom type.
E.g. delegate_activation!(SimpleWindow, MyRequestData);
Trait Implementations§
Source§impl Debug for ActivationState
impl Debug for ActivationState
Source§impl<D, R> Dispatch<XdgActivationTokenV1, R, D> for ActivationState
impl<D, R> Dispatch<XdgActivationTokenV1, R, D> for ActivationState
Source§fn event(
state: &mut D,
_proxy: &XdgActivationTokenV1,
event: <XdgActivationTokenV1 as Proxy>::Event,
data: &R,
_conn: &Connection,
_qhandle: &QueueHandle<D>,
)
fn event( state: &mut D, _proxy: &XdgActivationTokenV1, event: <XdgActivationTokenV1 as Proxy>::Event, data: &R, _conn: &Connection, _qhandle: &QueueHandle<D>, )
Called when an event from the server is processed Read more
Source§fn event_created_child(
opcode: u16,
_qhandle: &QueueHandle<State>,
) -> Arc<dyn ObjectData>
fn event_created_child( opcode: u16, _qhandle: &QueueHandle<State>, ) -> Arc<dyn ObjectData>
Method used to initialize the user-data of objects created by events Read more
Source§impl<D> Dispatch<XdgActivationV1, GlobalData, D> for ActivationState
impl<D> Dispatch<XdgActivationV1, GlobalData, D> for ActivationState
Source§fn event(
_: &mut D,
_: &XdgActivationV1,
_: <XdgActivationV1 as Proxy>::Event,
_: &GlobalData,
_: &Connection,
_: &QueueHandle<D>,
)
fn event( _: &mut D, _: &XdgActivationV1, _: <XdgActivationV1 as Proxy>::Event, _: &GlobalData, _: &Connection, _: &QueueHandle<D>, )
Called when an event from the server is processed Read more
Source§fn event_created_child(
opcode: u16,
_qhandle: &QueueHandle<State>,
) -> Arc<dyn ObjectData>
fn event_created_child( opcode: u16, _qhandle: &QueueHandle<State>, ) -> Arc<dyn ObjectData>
Method used to initialize the user-data of objects created by events Read more
Source§impl ProvidesBoundGlobal<XdgActivationV1, 1> for ActivationState
impl ProvidesBoundGlobal<XdgActivationV1, 1> for ActivationState
fn bound_global(&self) -> Result<XdgActivationV1, GlobalError>
fn with_min_version(&self, version: u32) -> Result<I, GlobalError>
Auto Trait Implementations§
impl Freeze for ActivationState
impl !RefUnwindSafe for ActivationState
impl Send for ActivationState
impl Sync for ActivationState
impl Unpin for ActivationState
impl UnsafeUnpin for ActivationState
impl !UnwindSafe for ActivationState
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.