Struct cursive_table_view::TableView [] [src]

pub struct TableView<T: TableViewItem<H>, H: Eq + Hash + Copy + Clone + 'static> { /* fields omitted */ }

View to select an item among a list, supporting multiple columns for sorting.

Examples

// Provide a type for the table's columns
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
enum BasicColumn {
    Name,
    Count,
    Rate
}

// Define the item type
#[derive(Clone, Debug)]
struct Foo {
    name: String,
    count: usize,
    rate: usize
}

impl TableViewItem<BasicColumn> for Foo {

    fn to_column(&self, column: BasicColumn) -> String {
        match column {
            BasicColumn::Name => self.name.to_string(),
            BasicColumn::Count => format!("{}", self.count),
            BasicColumn::Rate => format!("{}", self.rate)
        }
    }

    fn cmp(&self, other: &Self, column: BasicColumn) -> Ordering where Self: Sized {
        match column {
            BasicColumn::Name => self.name.cmp(&other.name),
            BasicColumn::Count => self.count.cmp(&other.count),
            BasicColumn::Rate => self.rate.cmp(&other.rate)
        }
    }

}

// Configure the actual table
let table = TableView::<Foo, BasicColumn>::new()
                     .column(BasicColumn::Name, "Name", |c| c.width(20))
                     .column(BasicColumn::Count, "Count", |c| c.align(HAlign::Center))
                     .column(BasicColumn::Rate, "Rate", |c| {
                         c.ordering(Ordering::Greater).align(HAlign::Right).width(20)
                     })
                     .default_column(BasicColumn::Name);

Methods

impl<T: TableViewItem<H>, H: Eq + Hash + Copy + Clone + 'static> TableView<T, H>
[src]

[src]

Creates a new empty TableView without any columns.

A TableView should be accompanied by a enum of type H representing the table columns.

[src]

Adds a column for the specified table colum from type H along with a title for its visual display.

The provided callback can be used to further configure the created TableColumn.

[src]

Sets the initially active column of the table.

[src]

Sorts the table using the specified table column and the passed order.

[src]

Sorts the table using the currently active column and its ordering.

[src]

Returns the currently active column that is used for sorting along with its ordering.

Might return None if there are currently no items in the table and it has not been sorted yet.

[src]

Disables this view.

A disabled view cannot be selected.

[src]

Re-enables this view.

[src]

Enable or disable this view.

[src]

Returns true if this view is enabled.

[src]

Sets a callback to be used when a selected column is sorted by pressing <Enter>.

Example

table.set_on_sort(|siv: &mut Cursive, column: BasicColumn, order: Ordering| {

});

[src]

Sets a callback to be used when a selected column is sorted by pressing <Enter>.

Chainable variant.

Example

table.on_sort(|siv: &mut Cursive, column: BasicColumn, order: Ordering| {

});

[src]

Sets a callback to be used when <Enter> is pressed while an item is selected.

Both the currently selected row and the index of the corresponding item within the underlying storage vector will be given to the callback.

Example

table.set_on_submit(|siv: &mut Cursive, row: usize, index: usize| {

});

[src]

Sets a callback to be used when <Enter> is pressed while an item is selected.

Both the currently selected row and the index of the corresponding item within the underlying storage vector will be given to the callback.

Chainable variant.

Example

table.on_submit(|siv: &mut Cursive, row: usize, index: usize| {

});

[src]

Sets a callback to be used when an item is selected.

Both the currently selected row and the index of the corresponding item within the underlying storage vector will be given to the callback.

Example

table.set_on_select(|siv: &mut Cursive, row: usize, index: usize| {

});

[src]

Sets a callback to be used when an item is selected.

Both the currently selected row and the index of the corresponding item within the underlying storage vector will be given to the callback.

Chainable variant.

Example

table.on_select(|siv: &mut Cursive, row: usize, index: usize| {

});

[src]

Removes all items from this view.

[src]

Returns the number of items in this table.

[src]

Returns true if this table has no items.

[src]

Returns the index of the currently selected table row.

[src]

Selects the row at the specified index.

[src]

Selects the row at the specified index.

Chainable variant.

[src]

Sets the contained items of the table.

The currently active sort order is preserved and will be applied to all items.

[src]

Sets the contained items of the table.

The order of the items will be preserved even when the table is sorted.

Chainable variant.

[src]

Returns a immmutable reference to the item at the specified index within the underlying storage vector.

[src]

Returns a mutable reference to the item at the specified index within the underlying storage vector.

[src]

Returns a immmutable reference to the items contained within the table.

[src]

Returns a mutable reference to the items contained within the table.

Can be used to modify the items in place.

[src]

Returns the index of the currently selected item within the underlying storage vector.

[src]

Selects the item at the specified index within the underlying storage vector.

[src]

Selects the item at the specified index within the underlying storage vector.

Chainable variant.

[src]

Inserts a new item into the table.

The currently active sort order is preserved and will be applied to the newly inserted item.

[src]

Removes the item at the specified index within the underlying storage vector and returns it.

[src]

Removes all items from the underlying storage and returns them.

Trait Implementations

impl<T: TableViewItem<H> + 'static, H: Eq + Hash + Copy + Clone + 'static> View for TableView<T, H>
[src]

[src]

Draws the view with the given printer (includes bounds) and focus.

[src]

Called once the size for this view has been decided, Read more

[src]

This view is offered focus. Will it take it? Read more

[src]

Called when a key was pressed. Read more

[src]

Returns the minimum size the view requires with the given restrictions. Read more

[src]

Returns true if the view content changed since last layout phase. Read more

[src]

Runs a closure on the view identified by the given selector. Read more

[src]

Moves the focus to the view identified by the given selector. Read more

Auto Trait Implementations

impl<T, H> !Send for TableView<T, H>

impl<T, H> !Sync for TableView<T, H>