pub trait RequestDispatch<Ctx> {
    type Error;
    type DestroyFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetSizeFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetAnchorRectFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetAnchorFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetGravityFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetConstraintAdjustmentFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetOffsetFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetReactiveFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetParentSizeFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;
    type SetParentConfigureFut<'a>: Future<Output = Result<(), Self::Error>> + 'a
       where Ctx: 'a;

    // Required methods
    fn destroy<'a>(ctx: &'a mut Ctx, object_id: u32) -> Self::DestroyFut<'a>;
    fn set_size<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        width: i32,
        height: i32
    ) -> Self::SetSizeFut<'a>;
    fn set_anchor_rect<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        x: i32,
        y: i32,
        width: i32,
        height: i32
    ) -> Self::SetAnchorRectFut<'a>;
    fn set_anchor<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        anchor: Anchor
    ) -> Self::SetAnchorFut<'a>;
    fn set_gravity<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        gravity: Gravity
    ) -> Self::SetGravityFut<'a>;
    fn set_constraint_adjustment<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        constraint_adjustment: u32
    ) -> Self::SetConstraintAdjustmentFut<'a>;
    fn set_offset<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        x: i32,
        y: i32
    ) -> Self::SetOffsetFut<'a>;
    fn set_reactive<'a>(
        ctx: &'a mut Ctx,
        object_id: u32
    ) -> Self::SetReactiveFut<'a>;
    fn set_parent_size<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        parent_width: i32,
        parent_height: i32
    ) -> Self::SetParentSizeFut<'a>;
    fn set_parent_configure<'a>(
        ctx: &'a mut Ctx,
        object_id: u32,
        serial: u32
    ) -> Self::SetParentConfigureFut<'a>;
}

Required Associated Types§

source

type Error

source

type DestroyFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by destroy

source

type SetSizeFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_size

source

type SetAnchorRectFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_anchor_rect

source

type SetAnchorFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_anchor

source

type SetGravityFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_gravity

source

type SetConstraintAdjustmentFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_constraint_adjustment

source

type SetOffsetFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_offset

source

type SetReactiveFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_reactive

source

type SetParentSizeFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_parent_size

source

type SetParentConfigureFut<'a>: Future<Output = Result<(), Self::Error>> + 'a where Ctx: 'a

Type of future returned by set_parent_configure

Required Methods§

source

fn destroy<'a>(ctx: &'a mut Ctx, object_id: u32) -> Self::DestroyFut<'a>

destroy the xdg_positioner object

Notify the compositor that the xdg_positioner will no longer be used.

source

fn set_size<'a>( ctx: &'a mut Ctx, object_id: u32, width: i32, height: i32 ) -> Self::SetSizeFut<'a>

set the size of the to-be positioned rectangle

Set the size of the surface that is to be positioned with the positioner object. The size is in surface-local coordinates and corresponds to the window geometry. See xdg_surface.set_window_geometry.

If a zero or negative size is set the invalid_input error is raised.

source

fn set_anchor_rect<'a>( ctx: &'a mut Ctx, object_id: u32, x: i32, y: i32, width: i32, height: i32 ) -> Self::SetAnchorRectFut<'a>

set the anchor rectangle within the parent surface

Specify the anchor rectangle within the parent surface that the child surface will be placed relative to. The rectangle is relative to the window geometry as defined by xdg_surface.set_window_geometry of the parent surface.

When the xdg_positioner object is used to position a child surface, the anchor rectangle may not extend outside the window geometry of the positioned child’s parent surface.

If a negative size is set the invalid_input error is raised.

source

fn set_anchor<'a>( ctx: &'a mut Ctx, object_id: u32, anchor: Anchor ) -> Self::SetAnchorFut<'a>

set anchor rectangle anchor

Defines the anchor point for the anchor rectangle. The specified anchor is used derive an anchor point that the child surface will be positioned relative to. If a corner anchor is set (e.g. ‘top_left’ or ‘bottom_right’), the anchor point will be at the specified corner; otherwise, the derived anchor point will be centered on the specified edge, or in the center of the anchor rectangle if no edge is specified.

source

fn set_gravity<'a>( ctx: &'a mut Ctx, object_id: u32, gravity: Gravity ) -> Self::SetGravityFut<'a>

set child surface gravity

Defines in what direction a surface should be positioned, relative to the anchor point of the parent surface. If a corner gravity is specified (e.g. ‘bottom_right’ or ‘top_left’), then the child surface will be placed towards the specified gravity; otherwise, the child surface will be centered over the anchor point on any axis that had no gravity specified. If the gravity is not in the ‘gravity’ enum, an invalid_input error is raised.

source

fn set_constraint_adjustment<'a>( ctx: &'a mut Ctx, object_id: u32, constraint_adjustment: u32 ) -> Self::SetConstraintAdjustmentFut<'a>

set the adjustment to be done when constrained

Specify how the window should be positioned if the originally intended position caused the surface to be constrained, meaning at least partially outside positioning boundaries set by the compositor. The adjustment is set by constructing a bitmask describing the adjustment to be made when the surface is constrained on that axis.

If no bit for one axis is set, the compositor will assume that the child surface should not change its position on that axis when constrained.

If more than one bit for one axis is set, the order of how adjustments are applied is specified in the corresponding adjustment descriptions.

The default adjustment is none.

source

fn set_offset<'a>( ctx: &'a mut Ctx, object_id: u32, x: i32, y: i32 ) -> Self::SetOffsetFut<'a>

set surface position offset

Specify the surface position offset relative to the position of the anchor on the anchor rectangle and the anchor on the surface. For example if the anchor of the anchor rectangle is at (x, y), the surface has the gravity bottom|right, and the offset is (ox, oy), the calculated surface position will be (x + ox, y + oy). The offset position of the surface is the one used for constraint testing. See set_constraint_adjustment.

An example use case is placing a popup menu on top of a user interface element, while aligning the user interface element of the parent surface with some user interface element placed somewhere in the popup surface.

source

fn set_reactive<'a>( ctx: &'a mut Ctx, object_id: u32 ) -> Self::SetReactiveFut<'a>

continuously reconstrain the surface

When set reactive, the surface is reconstrained if the conditions used for constraining changed, e.g. the parent window moved.

If the conditions changed and the popup was reconstrained, an xdg_popup.configure event is sent with updated geometry, followed by an xdg_surface.configure event.

source

fn set_parent_size<'a>( ctx: &'a mut Ctx, object_id: u32, parent_width: i32, parent_height: i32 ) -> Self::SetParentSizeFut<'a>

Set the parent window geometry the compositor should use when positioning the popup. The compositor may use this information to determine the future state the popup should be constrained using. If this doesn’t match the dimension of the parent the popup is eventually positioned against, the behavior is undefined.

The arguments are given in the surface-local coordinate space.

source

fn set_parent_configure<'a>( ctx: &'a mut Ctx, object_id: u32, serial: u32 ) -> Self::SetParentConfigureFut<'a>

set parent configure this is a response to

Set the serial of an xdg_surface.configure event this positioner will be used in response to. The compositor may use this information together with set_parent_size to determine what future state the popup should be constrained using.

Implementors§