summaryrefslogblamecommitdiffstats
path: root/winit/src/lib.rs
blob: c9f324dd46d91ce9c13384561588f410dc8d98e9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

                                                    
                                                                                                                                                         











                                                                                
                                     
                      

                                       

                            
 
                 
                       
              
 
                    
                   
                 
 
              
          
         
          
 
                                 
                             
                     
                   
                     
                           

                                
//! A windowing shell for Iced, on top of [`winit`].
//!
//! ![The native path of the Iced ecosystem](https://github.com/hecrj/iced/blob/0525d76ff94e828b7b21634fa94a747022001c83/docs/graphs/native.png?raw=true)
//!
//! `iced_winit` offers some convenient abstractions on top of [`iced_native`]
//! to quickstart development when using [`winit`].
//!
//! It exposes a renderer-agnostic [`Application`] trait that can be implemented
//! and then run with a simple call. The use of this trait is optional.
//!
//! Additionally, a [`conversion`] module is available for users that decide to
//! implement a custom event loop.
//!
//! [`iced_native`]: https://github.com/hecrj/iced/tree/master/native
//! [`winit`]: https://github.com/rust-windowing/winit
//! [`conversion`]: crate::conversion
#![deny(missing_docs)]
#![deny(missing_debug_implementations)]
#![deny(unused_results)]
#![forbid(unsafe_code)]
#![forbid(rust_2018_idioms)]

#[doc(no_inline)]
pub use iced_native::*;
pub use winit;

pub mod application;
pub mod conversion;
pub mod settings;

mod clipboard;
mod error;
mod mode;
mod proxy;

pub use application::Application;
pub use clipboard::Clipboard;
pub use error::Error;
pub use mode::Mode;
pub use proxy::Proxy;
pub use settings::Settings;

pub use iced_graphics::Viewport;