cranpose-foundation 0.1.120

Modifiers, nodes, and foundation elements for Cranpose
Documentation
pub mod dispatcher;
pub mod gestures;
pub mod rotary;
pub mod types;

pub use rotary::{
    DEFAULT_ROTARY_SCROLL_FACTOR_DP, RotaryScrollEvent, RotaryStepAccumulator,
    rotary_scroll_pixels_from_detents,
};
pub use types::{
    Modifiers, PointerButton, PointerButtons, PointerEvent, PointerEventKind, PointerId,
    PointerPhase, PointerSource,
};

pub mod prelude {
    pub use super::{
        gestures::{
            DragGesture, DragGestureEvent, FlingGesture, FlingGestureEvent, ScrollGesture,
            ScrollGestureEvent, TapGesture, TapGestureEvent, TransformGesture,
            TransformGestureEvent,
        },
        rotary::{RotaryScrollEvent, RotaryStepAccumulator},
        types::{
            Modifiers, PointerButton, PointerButtons, PointerEvent, PointerEventKind, PointerId,
            PointerPhase, PointerSource,
        },
    };
}