From 3a0d34c0240f4421737a6a08761f99d6f8140d02 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sat, 4 Mar 2023 05:37:11 +0100 Subject: Create `iced_widget` subcrate and re-organize the whole codebase --- src/window.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/window.rs') diff --git a/src/window.rs b/src/window.rs index 2018053f..26239065 100644 --- a/src/window.rs +++ b/src/window.rs @@ -8,5 +8,6 @@ pub use icon::Icon; pub use position::Position; pub use settings::Settings; -#[cfg(not(target_arch = "wasm32"))] -pub use crate::runtime::window::*; +pub use crate::core::window::*; +pub use crate::native::window::*; +pub use crate::shell::window::*; -- cgit From 99e0a71504456976ba88040f5d1d3bbc347694ea Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Sun, 5 Mar 2023 06:35:20 +0100 Subject: Rename `iced_native` to `iced_runtime` --- src/window.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/window.rs') diff --git a/src/window.rs b/src/window.rs index 26239065..824915b2 100644 --- a/src/window.rs +++ b/src/window.rs @@ -9,5 +9,4 @@ pub use position::Position; pub use settings::Settings; pub use crate::core::window::*; -pub use crate::native::window::*; -pub use crate::shell::window::*; +pub use crate::runtime::window::*; -- cgit From ed7b61380473c7c88c25b5d4d17112b844a9364d Mon Sep 17 00:00:00 2001 From: Casper Storm Date: Thu, 23 Feb 2023 14:33:53 +0100 Subject: Added macOS platform specific options --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/window.rs') diff --git a/src/window.rs b/src/window.rs index 5a199580..aba4bce8 100644 --- a/src/window.rs +++ b/src/window.rs @@ -6,6 +6,6 @@ pub mod icon; pub use icon::Icon; pub use position::Position; -pub use settings::Settings; +pub use settings::{PlatformSpecific, Settings}; pub use crate::runtime::window::*; -- cgit