logo
pub struct PaneGrid<'a, Message, Renderer> { /* private fields */ }
Expand description

A collection of panes distributed using either vertical or horizontal splits to completely fill the space available.

Pane grid - Iced

This distribution of space is common in tiling window managers (like awesome, i3, or even tmux).

A PaneGrid supports:

  • Vertical and horizontal splits
  • Tracking of the last active pane
  • Mouse-based resizing
  • Drag and drop to reorganize panes
  • Hotkey support
  • Configurable modifier keys
  • State API to perform actions programmatically (split, swap, resize, etc.)

Example

enum PaneState {
    SomePane,
    AnotherKindOfPane,
}

enum Message {
    PaneDragged(pane_grid::DragEvent),
    PaneResized(pane_grid::ResizeEvent),
}

let (mut state, _) = pane_grid::State::new(PaneState::SomePane);

let pane_grid =
    PaneGrid::new(&mut state, |pane, state| {
        pane_grid::Content::new(match state {
            PaneState::SomePane => Text::new("This is some pane"),
            PaneState::AnotherKindOfPane => Text::new("This is another kind of pane"),
        })
    })
    .on_drag(Message::PaneDragged)
    .on_resize(10, Message::PaneResized);

Implementations

Creates a PaneGrid with the given State and view function.

The view function will be called to display each Pane present in the State.

Sets the width of the PaneGrid.

Sets the height of the PaneGrid.

Sets the spacing between the panes of the PaneGrid.

Sets the message that will be produced when a Pane of the PaneGrid is clicked.

Enables the drag and drop interactions of the PaneGrid, which will use the provided function to produce messages.

Enables the resize interactions of the PaneGrid, which will use the provided function to produce messages.

The leeway describes the amount of space around a split that can be used to grab it.

The grabbable area of a split will have a length of spacing + leeway, properly centered. In other words, a length of (spacing + leeway) / 2.0 on either side of the split line.

Sets the style of the PaneGrid.

Trait Implementations

Converts to this type from the input type.

Returns the width of the Widget.

Returns the height of the Widget.

Returns the Node of the Widget. Read more

Processes a runtime Event. Read more

Returns the current mouse::Interaction of the Widget. Read more

Draws the Widget using the associated Renderer.

Returns the overlay of the Widget, if there is any.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.