Struct gabelstaplerwm::wm::layout::TilingArea [] [src]

pub struct TilingArea {
    pub offset_x: u32,
    pub offset_y: u32,
    pub width: u32,
    pub height: u32,
}

A screen area size to be accounted for when arranging windows.

Describes the area used for tiling windows. This allows to leave an open spot for desktop windows, bars and whatever else you might want.

Fields

x offset of tiling area

y offset of tiling area

width of tiling area

height of tiling area

Methods

impl TilingArea
[src]

Create a new TilingArea object.

Uses a TilingArea that represents the user's wishes to get something that is actually possible. Offsets, however are honored.

Trait Implementations

impl Clone for TilingArea
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TilingArea
[src]

Formats the value using the given formatter.

impl Default for TilingArea
[src]

Returns the "default value" for a type. Read more