summaryrefslogtreecommitdiffstats
path: root/src/app/state_type.rs
blob: 04f3fa469d8d474c21cefee7581f5f9dd5323eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/// one of the types of state that you could
/// find in a panel today
#[derive(Debug, Clone, Copy, PartialEq)]
pub enum PanelStateType {

    /// The standard browsing tree
    Tree,

    /// the filesystem
    Fs,

    /// The help "screen"
    Help,

    /// The preview panel, never alone on screen
    Preview,

    /// The stage panel, never alone on screen
    Stage,
}