[][src]Struct cursive::views::Menubar

pub struct Menubar {
    pub autohide: bool,
    // some fields omitted
}

Shows a single-line list of items, with pop-up menus when one is selected.

The Cursive root already includes a menubar that you just need to configure.

Fields

autohide: bool

TODO: move this out of this view.

Methods

impl Menubar[src]

pub fn new() -> Self[src]

Creates a new, empty menubar.

pub fn receive_events(&self) -> bool[src]

True if we should be receiving events.

pub fn has_submenu(&self) -> bool[src]

True if some submenus are visible.

pub fn visible(&self) -> bool[src]

Returns true if we should be drawn.

pub fn add_subtree<S>(&mut self, title: S, menu: MenuTree) -> &mut Self where
    S: Into<String>, 
[src]

Adds a new item to the menubar.

The item will use the given title, and on selection, will open a popup-menu with the given menu tree.

pub fn add_delimiter(&mut self) -> &mut Self[src]

Adds a delimiter to the menubar.

pub fn add_leaf<S, F>(&mut self, title: S, cb: F) -> &mut Self where
    S: Into<String>,
    F: 'static + Fn(&mut Cursive), 
[src]

Adds a leaf node to the menubar.

pub fn insert_subtree<S>(
    &mut self,
    i: usize,
    title: S,
    menu: MenuTree
) -> &mut Self where
    S: Into<String>, 
[src]

Insert a new item at the given position.

pub fn insert_delimiter(&mut self, i: usize) -> &mut Self[src]

Inserts a new delimiter at the given position.

It will show up as |.

pub fn insert_leaf<S, F>(&mut self, i: usize, title: S, cb: F) -> &mut Self where
    S: Into<String>,
    F: 'static + Fn(&mut Cursive), 
[src]

Inserts a new leaf node at the given position.

It will be directly actionable.

pub fn clear(&mut self)[src]

Removes all menu items from this menubar.

pub fn len(&self) -> usize[src]

Returns the number of items in this menubar.

pub fn is_empty(&self) -> bool[src]

Returns true if this menubar is empty.

pub fn get_subtree(&mut self, i: usize) -> Option<&mut MenuTree>[src]

Returns the item at the given position.

Returns None if i > self.len()

pub fn find_subtree(&mut self, label: &str) -> Option<&mut MenuTree>[src]

Looks for an item with the given label.

pub fn find_position(&mut self, label: &str) -> Option<usize>[src]

Returns the position of the item with the given label.

Returns None if no such label was found.

pub fn remove(&mut self, i: usize)[src]

Remove the item at the given position.

Trait Implementations

impl View for Menubar[src]

fn layout(&mut self, _: Vec2)[src]

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

fn needs_relayout(&self) -> bool[src]

Should return true if the view content changed since the last call to layout(). Read more

fn call_on_any<'a>(&mut self, _: &Selector, _: AnyCb<'a>)[src]

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

fn focus_view(&mut self, _: &Selector) -> Result<(), ()>[src]

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

impl Default for Menubar[src]

Auto Trait Implementations

impl !Send for Menubar

impl !Sync for Menubar

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Erased for T[src]