flo_canvas_events 0.3.1

User input events for a flo_draw canvas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//!
//! # Events
//!
//! `flo_draw` is currently based on glutin, but uses its own event structure: this is to make it so that
//! it's possible for future versions to replace glutin easily if that ever proves to be necessary, and
//! to support easy porting of code using `flo_draw` to other windowing systems. This also isolates software
//! implemented using `flo_draw` from changes to glutin.
//!

mod key;
mod draw_event;
mod pointer_event;

pub use self::key::*;
pub use self::draw_event::*;
pub use self::pointer_event::*;