Struct livesplit_core::layout::editor::Editor [] [src]

pub struct Editor { /* fields omitted */ }

The Layout Editor allows modifying Layouts while ensuring all the different invariants of the Layout objects are upheld no matter what kind of operations are being applied. It provides the current state of the editor as state objects that can be visualized by any kind of User Interface.

Methods

impl Editor
[src]

[src]

Calculates the Layout Editor's state in order to visualize it.

impl Editor
[src]

[src]

Creates a new Layout Editor that modifies the Layout provided. Creation of the Layout Editor fails when a Layout with no components is provided.

[src]

Closes the Layout Editor and gives back access to the modified Layout. In case you want to implement a Cancel Button, just drop the Layout object you get here.

[src]

Calculates the layout's state based on the timer provided. You can use this to visualize all of the components of a layout, while it is still being edited by the Layout Editor.

[src]

Selects the component with the given index in order to modify its settings. Only a single component is selected at any given time. You may not provide an invalid index.

[src]

Adds the component provided to the end of the layout. The newly added component becomes the selected component.

[src]

Checks if the currently selected component can be removed. If there's only one component in the layout, it can't be removed.

[src]

Removes the currently selected component, unless there's only one component in the layout. The next component becomes the selected component. If there's none, the previous component becomes the selected component instead.

[src]

Checks if the currently selected component can be moved up. If the first component is selected, it can't be moved up.

[src]

Moves the selected component up, unless the first component is selected.

[src]

Checks if the currently selected component can be moved down. If the last component is selected, it can't be moved down.

[src]

Moves the selected component down, unless the last component is selected.

[src]

Moves the selected component to the index provided. You may not provide an invalid index.

[src]

Duplicates the currently selected component. The copy gets placed right after the selected component and becomes the newly selected component.

[src]

Sets a setting's value of the selected component by its setting index to the given value.

Panics

This panics if the type of the value to be set is not compatible with the type of the setting's value. A panic can also occur if the index of the setting provided is out of bounds.

[src]

Sets a setting's value of the general settings by its setting index to the given value.

Panics

This panics if the type of the value to be set is not compatible with the type of the setting's value. A panic can also occur if the index of the setting provided is out of bounds.