[][src]Struct minifb::Menu

pub struct Menu(_);

Menu holds info for menus

Implementations

impl Menu[src]

pub fn new(name: &str) -> Result<Menu>[src]

Create a new menu. Returns error if failed

pub fn destroy_menu(&mut self)[src]

Destroys a menu. Currently not implemented

pub fn add_sub_menu(&mut self, name: &str, menu: &Menu)[src]

Adds a sub menu to the current menu

pub fn add_separator(&mut self)[src]

Adds a menu separator

pub fn add_menu_item(&mut self, item: &MenuItem<'_>) -> MenuItemHandle[src]

Adds an item to the menu

pub fn add_item(&mut self, name: &str, id: usize) -> MenuItem<'_>[src]

Adds an item to the menu. Notice that you need to call "build" to finish the add

Examples

menu.add_item("test", 1).shortcut(Key::A, 0).build()

pub fn remove_item(&mut self, item: &MenuItemHandle)[src]

Removes an item from the menu

Trait Implementations

impl Debug for Menu[src]

Auto Trait Implementations

impl RefUnwindSafe for Menu

impl !Send for Menu

impl !Sync for Menu

impl Unpin for Menu

impl UnwindSafe for Menu

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.