baseview 0.2.2

Low-level windowing system geared towards making audio plugin UIs.
Documentation
mod clipboard;
mod context;
mod event;
mod handler;
mod keyboard;
mod mouse_cursor;
mod window;
mod window_open_options;

pub(crate) mod platform;

#[cfg(feature = "opengl")]
pub mod gl;

pub use clipboard::*;
pub use context::{PlatformHandle, WindowContext};
pub use dpi;
pub use event::*;
pub use handler::WindowHandler;
pub use mouse_cursor::MouseCursor;
pub use window::*;
pub use window_open_options::*;

pub(crate) mod wrappers;