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

    /// The standard browsing tree
    Tree,

    /// The help "screen"
    Help,

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