cursor: refactor `CustomCursor` to be `dyn` Same as for `MonitorHandle`, the source was changed to support all kinds of sources.
24 lines
570 B
Rust
24 lines
570 B
Rust
#[macro_use]
|
|
mod util;
|
|
|
|
mod app;
|
|
mod app_state;
|
|
mod cursor;
|
|
mod event;
|
|
mod event_loop;
|
|
mod ffi;
|
|
mod menu;
|
|
mod monitor;
|
|
mod observer;
|
|
mod view;
|
|
mod window;
|
|
mod window_delegate;
|
|
|
|
pub(crate) use self::event::{physicalkey_to_scancode, scancode_to_physicalkey};
|
|
pub(crate) use self::event_loop::{
|
|
ActiveEventLoop, EventLoop, PlatformSpecificEventLoopAttributes,
|
|
};
|
|
pub(crate) use self::monitor::MonitorHandle;
|
|
pub(crate) use self::window::Window;
|
|
pub(crate) use self::window_delegate::PlatformSpecificWindowAttributes;
|
|
pub(crate) use crate::icon::NoIcon as PlatformIcon;
|