//! Status Enum of an mouse Event.
//!/// The Status of a widget event.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]pubenumStatus{/// can be pressed.
Active,/// can be pressed and it is being hovered.
Hovered,/// is being pressed.
Pressed,/// cannot be pressed.
Disabled,/// is focused.
Focused,/// is Selected.
Selected,}/// The style function of widgets.
pubtypeStyleFn<'a, Theme, Style>=Box<dyn Fn(&Theme, Status)-> Style +'a>;