Merge remote-tracking branch 'iced-main/master' into feat/multi-window-support

# Conflicts:
#	glutin/src/application.rs
#	winit/src/icon.rs
This commit is contained in:
bungoboingo 2023-02-28 13:08:30 -08:00
commit 51296572c0
16 changed files with 79 additions and 103 deletions

View file

@ -1,6 +1,6 @@
[package] [package]
name = "iced_core" name = "iced_core"
version = "0.8.0" version = "0.8.1"
authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"] authors = ["Héctor Ramón Jiménez <hector0193@gmail.com>"]
edition = "2021" edition = "2021"
description = "The essential concepts of Iced" description = "The essential concepts of Iced"

View file

@ -11,9 +11,6 @@ pub enum Alignment {
/// Align at the end of the axis. /// Align at the end of the axis.
End, End,
/// Fill the entire axis.
Fill,
} }
impl From<Horizontal> for Alignment { impl From<Horizontal> for Alignment {

View file

@ -77,12 +77,14 @@ impl Padding {
/// Fits the [`Padding`] between the provided `inner` and `outer` [`Size`]. /// Fits the [`Padding`] between the provided `inner` and `outer` [`Size`].
pub fn fit(self, inner: Size, outer: Size) -> Self { pub fn fit(self, inner: Size, outer: Size) -> Self {
let available = (outer - inner).max(Size::ZERO); let available = (outer - inner).max(Size::ZERO);
let new_top = self.top.min(available.height);
let new_left = self.left.min(available.width);
Padding { Padding {
top: self.top.min(available.height / 2.0), top: new_top,
right: self.right.min(available.width / 2.0), bottom: self.bottom.min(available.height - new_top),
bottom: self.bottom.min(available.height / 2.0), left: new_left,
left: self.left.min(available.width / 2.0), right: self.right.min(available.width - new_left),
} }
} }
} }

View file

@ -127,7 +127,8 @@ mod numeric_input {
.horizontal_alignment(alignment::Horizontal::Center) .horizontal_alignment(alignment::Horizontal::Center)
.vertical_alignment(alignment::Vertical::Center), .vertical_alignment(alignment::Vertical::Center),
) )
.width(50) .width(40)
.height(40)
.on_press(on_press) .on_press(on_press)
}; };
@ -145,7 +146,7 @@ mod numeric_input {
.padding(10), .padding(10),
button("+", Event::IncrementPressed), button("+", Event::IncrementPressed),
] ]
.align_items(Alignment::Fill) .align_items(Alignment::Center)
.spacing(10) .spacing(10)
.into() .into()
} }

View file

@ -254,7 +254,6 @@ impl Application for ScrollableDemo {
scroll_to_beginning_button(), scroll_to_beginning_button(),
vertical_space(40), vertical_space(40),
] ]
.align_items(Alignment::Fill)
.spacing(40), .spacing(40),
horizontal_space(1200), horizontal_space(1200),
text("Horizontal - End!"), text("Horizontal - End!"),

View file

@ -146,7 +146,9 @@ impl Application for WebSocket {
} }
} }
row![input, button].spacing(10).align_items(Alignment::Fill) row![input, button]
.spacing(10)
.align_items(Alignment::Center)
}; };
column![message_log, new_message_input] column![message_log, new_message_input]

View file

@ -43,7 +43,7 @@ impl std::fmt::Debug for Settings {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("Settings") f.debug_struct("Settings")
// Instead of printing the font bytes, we simply show a `bool` indicating if using a default font or not. // Instead of printing the font bytes, we simply show a `bool` indicating if using a default font or not.
.field("default_font", &self.default_font.is_none()) .field("default_font", &self.default_font.is_some())
.field("default_text_size", &self.default_text_size) .field("default_text_size", &self.default_text_size)
.field("text_multithreading", &self.text_multithreading) .field("text_multithreading", &self.text_multithreading)
.field("antialiasing", &self.antialiasing) .field("antialiasing", &self.antialiasing)

View file

@ -88,7 +88,7 @@ where
settings.id, settings.id,
); );
log::info!("Window builder: {:#?}", builder); log::debug!("Window builder: {:#?}", builder);
#[allow(unsafe_code)] #[allow(unsafe_code)]
let (display, window, surface, context) = unsafe { let (display, window, surface, context) = unsafe {

View file

@ -11,7 +11,7 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
categories = ["gui"] categories = ["gui"]
[features] [features]
svg = ["resvg", "usvg", "tiny-skia"] svg = ["resvg"]
image = ["png", "jpeg", "jpeg_rayon", "gif", "webp", "bmp"] image = ["png", "jpeg", "jpeg_rayon", "gif", "webp", "bmp"]
png = ["image_rs/png"] png = ["image_rs/png"]
jpeg = ["image_rs/jpeg"] jpeg = ["image_rs/jpeg"]
@ -71,15 +71,7 @@ default-features = false
optional = true optional = true
[dependencies.resvg] [dependencies.resvg]
version = "0.18" version = "0.29"
optional = true
[dependencies.usvg]
version = "0.18"
optional = true
[dependencies.tiny-skia]
version = "0.6"
optional = true optional = true
[dependencies.kamadak-exif] [dependencies.kamadak-exif]

View file

@ -5,6 +5,8 @@ use crate::Color;
use iced_native::svg; use iced_native::svg;
use iced_native::Size; use iced_native::Size;
use resvg::tiny_skia;
use resvg::usvg;
use std::collections::{HashMap, HashSet}; use std::collections::{HashMap, HashSet};
use std::fs; use std::fs;
@ -21,7 +23,7 @@ impl Svg {
pub fn viewport_dimensions(&self) -> Size<u32> { pub fn viewport_dimensions(&self) -> Size<u32> {
match self { match self {
Svg::Loaded(tree) => { Svg::Loaded(tree) => {
let size = tree.svg_node().size; let size = tree.size;
Size::new(size.width() as u32, size.height() as u32) Size::new(size.width() as u32, size.height() as u32)
} }
@ -51,20 +53,14 @@ impl<T: Storage> Cache<T> {
let svg = match handle.data() { let svg = match handle.data() {
svg::Data::Path(path) => { svg::Data::Path(path) => {
let tree = fs::read_to_string(path).ok().and_then(|contents| { let tree = fs::read_to_string(path).ok().and_then(|contents| {
usvg::Tree::from_str( usvg::Tree::from_str(&contents, &usvg::Options::default())
&contents, .ok()
&usvg::Options::default().to_ref(),
)
.ok()
}); });
tree.map(Svg::Loaded).unwrap_or(Svg::NotFound) tree.map(Svg::Loaded).unwrap_or(Svg::NotFound)
} }
svg::Data::Bytes(bytes) => { svg::Data::Bytes(bytes) => {
match usvg::Tree::from_data( match usvg::Tree::from_data(bytes, &usvg::Options::default()) {
bytes,
&usvg::Options::default().to_ref(),
) {
Ok(tree) => Svg::Loaded(tree), Ok(tree) => Svg::Loaded(tree),
Err(_) => Svg::NotFound, Err(_) => Svg::NotFound,
} }
@ -125,6 +121,7 @@ impl<T: Storage> Cache<T> {
} else { } else {
usvg::FitTo::Height(height) usvg::FitTo::Height(height)
}, },
tiny_skia::Transform::default(),
img.as_mut(), img.as_mut(),
)?; )?;

View file

@ -81,32 +81,6 @@ where
let mut nodes: Vec<Node> = Vec::with_capacity(items.len()); let mut nodes: Vec<Node> = Vec::with_capacity(items.len());
nodes.resize(items.len(), Node::default()); nodes.resize(items.len(), Node::default());
if align_items == Alignment::Fill {
let mut fill_cross = axis.cross(limits.min());
items.iter().for_each(|child| {
let cross_fill_factor = match axis {
Axis::Horizontal => child.as_widget().height(),
Axis::Vertical => child.as_widget().width(),
}
.fill_factor();
if cross_fill_factor == 0 {
let (max_width, max_height) = axis.pack(available, max_cross);
let child_limits =
Limits::new(Size::ZERO, Size::new(max_width, max_height));
let layout = child.as_widget().layout(renderer, &child_limits);
let size = layout.size();
fill_cross = fill_cross.max(axis.cross(size));
}
});
cross = fill_cross;
}
for (i, child) in items.iter().enumerate() { for (i, child) in items.iter().enumerate() {
let fill_factor = match axis { let fill_factor = match axis {
Axis::Horizontal => child.as_widget().width(), Axis::Horizontal => child.as_widget().width(),
@ -115,31 +89,16 @@ where
.fill_factor(); .fill_factor();
if fill_factor == 0 { if fill_factor == 0 {
let (min_width, min_height) = if align_items == Alignment::Fill { let (max_width, max_height) = axis.pack(available, max_cross);
axis.pack(0.0, cross)
} else {
axis.pack(0.0, 0.0)
};
let (max_width, max_height) = if align_items == Alignment::Fill { let child_limits =
axis.pack(available, cross) Limits::new(Size::ZERO, Size::new(max_width, max_height));
} else {
axis.pack(available, max_cross)
};
let child_limits = Limits::new(
Size::new(min_width, min_height),
Size::new(max_width, max_height),
);
let layout = child.as_widget().layout(renderer, &child_limits); let layout = child.as_widget().layout(renderer, &child_limits);
let size = layout.size(); let size = layout.size();
available -= axis.main(size); available -= axis.main(size);
cross = cross.max(axis.cross(size));
if align_items != Alignment::Fill {
cross = cross.max(axis.cross(size));
}
nodes[i] = layout; nodes[i] = layout;
} else { } else {
@ -164,17 +123,10 @@ where
max_main max_main
}; };
let (min_width, min_height) = if align_items == Alignment::Fill { let (min_width, min_height) =
axis.pack(min_main, cross) axis.pack(min_main, axis.cross(limits.min()));
} else {
axis.pack(min_main, axis.cross(limits.min()))
};
let (max_width, max_height) = if align_items == Alignment::Fill { let (max_width, max_height) = axis.pack(max_main, max_cross);
axis.pack(max_main, cross)
} else {
axis.pack(max_main, max_cross)
};
let child_limits = Limits::new( let child_limits = Limits::new(
Size::new(min_width, min_height), Size::new(min_width, min_height),
@ -182,10 +134,7 @@ where
); );
let layout = child.as_widget().layout(renderer, &child_limits); let layout = child.as_widget().layout(renderer, &child_limits);
cross = cross.max(axis.cross(layout.size()));
if align_items != Alignment::Fill {
cross = cross.max(axis.cross(layout.size()));
}
nodes[i] = layout; nodes[i] = layout;
} }

View file

@ -56,9 +56,6 @@ impl Node {
Alignment::End => { Alignment::End => {
self.bounds.x += space.width - self.bounds.width; self.bounds.x += space.width - self.bounds.width;
} }
Alignment::Fill => {
self.bounds.width = space.width;
}
} }
match vertical_alignment { match vertical_alignment {
@ -69,9 +66,6 @@ impl Node {
Alignment::End => { Alignment::End => {
self.bounds.y += space.height - self.bounds.height; self.bounds.y += space.height - self.bounds.height;
} }
Alignment::Fill => {
self.bounds.height = space.height;
}
} }
} }

View file

@ -1,10 +1,12 @@
//! Configure a renderer. //! Configure a renderer.
use std::fmt;
pub use crate::Antialiasing; pub use crate::Antialiasing;
/// The settings of a [`Backend`]. /// The settings of a [`Backend`].
/// ///
/// [`Backend`]: crate::Backend /// [`Backend`]: crate::Backend
#[derive(Debug, Clone, Copy, PartialEq)] #[derive(Clone, Copy, PartialEq)]
pub struct Settings { pub struct Settings {
/// The present mode of the [`Backend`]. /// The present mode of the [`Backend`].
/// ///
@ -36,6 +38,20 @@ pub struct Settings {
pub antialiasing: Option<Antialiasing>, pub antialiasing: Option<Antialiasing>,
} }
impl fmt::Debug for Settings {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Settings")
.field("present_mode", &self.present_mode)
.field("internal_backend", &self.internal_backend)
// Instead of printing the font bytes, we simply show a `bool` indicating if using a default font or not.
.field("default_font", &self.default_font.is_some())
.field("default_text_size", &self.default_text_size)
.field("text_multithreading", &self.text_multithreading)
.field("antialiasing", &self.antialiasing)
.finish()
}
}
impl Settings { impl Settings {
/// Creates new [`Settings`] using environment configuration. /// Creates new [`Settings`] using environment configuration.
/// ///

View file

@ -155,7 +155,7 @@ where
) )
.with_visible(false); .with_visible(false);
log::info!("Window builder: {:#?}", builder); log::debug!("Window builder: {:#?}", builder);
let window = builder let window = builder
.build(&event_loop) .build(&event_loop)

View file

@ -6,9 +6,15 @@ use std::io;
use std::path::Path; use std::path::Path;
/// The icon of a window. /// The icon of a window.
#[derive(Debug, Clone)] #[derive(Clone)]
pub struct Icon(winit::window::Icon); pub struct Icon(winit::window::Icon);
impl fmt::Debug for Icon {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_tuple("Icon").field(&format_args!("_")).finish()
}
}
impl Icon { impl Icon {
/// Creates an icon from 32bpp RGBA data. /// Creates an icon from 32bpp RGBA data.
pub fn from_rgba( pub fn from_rgba(

View file

@ -24,9 +24,12 @@ pub use platform::PlatformSpecific;
use crate::conversion; use crate::conversion;
use crate::Icon; use crate::Icon;
use crate::Position; use crate::Position;
use winit::monitor::MonitorHandle; use winit::monitor::MonitorHandle;
use winit::window::WindowBuilder; use winit::window::WindowBuilder;
use std::fmt;
/// The settings of an application. /// The settings of an application.
#[derive(Debug, Clone, Default)] #[derive(Debug, Clone, Default)]
pub struct Settings<Flags> { pub struct Settings<Flags> {
@ -64,7 +67,7 @@ pub struct Settings<Flags> {
} }
/// The window settings of an application. /// The window settings of an application.
#[derive(Debug, Clone)] #[derive(Clone)]
pub struct Window { pub struct Window {
/// The size of the window. /// The size of the window.
pub size: (u32, u32), pub size: (u32, u32),
@ -100,6 +103,24 @@ pub struct Window {
pub platform_specific: platform::PlatformSpecific, pub platform_specific: platform::PlatformSpecific,
} }
impl fmt::Debug for Window {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Window")
.field("size", &self.size)
.field("position", &self.position)
.field("min_size", &self.min_size)
.field("max_size", &self.max_size)
.field("visible", &self.visible)
.field("resizable", &self.resizable)
.field("decorations", &self.decorations)
.field("transparent", &self.transparent)
.field("always_on_top", &self.always_on_top)
.field("icon", &self.icon.is_some())
.field("platform_specific", &self.platform_specific)
.finish()
}
}
impl Window { impl Window {
/// Converts the window settings into a `WindowBuilder` from `winit`. /// Converts the window settings into a `WindowBuilder` from `winit`.
pub fn into_builder( pub fn into_builder(