Enum conrod::FileNavigatorEvent [] [src]

pub enum FileNavigatorEvent {
    ChangeDirectory(PathBuf),
    ChangeSelection(Vec<PathBuf>),
    DoubleClick(Vec<PathBuf>),
    KeyPress(Vec<PathBuf>, KeyPress),
}

The kinds of events that the FileNavigator may react to.

Variants

ChangeDirectory(PathBuf)

The directory at the top of the stack has changed.

ChangeSelection(Vec<PathBuf>)

The selection of files in the top of the stack has changed.

DoubleClick(Vec<PathBuf>)

A file was double clicked.

KeyPress(Vec<PathBuf>, KeyPress)

A key was pressed over a selection of entries.

Trait Implementations

impl Debug for Event
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Event
[src]

fn clone(&self) -> Event

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more