summaryrefslogtreecommitdiffstats
path: root/native/src/layout/node.rs
diff options
context:
space:
mode:
authorLibravatar Bingus <shankern@protonmail.com>2023-07-12 12:23:18 -0700
committerLibravatar Bingus <shankern@protonmail.com>2023-07-12 12:23:18 -0700
commit633f405f3f78bc7f82d2b2061491b0e011137451 (patch)
tree5ebfc1f45d216a5c14a90492563599e6969eab4d /native/src/layout/node.rs
parent41836dd80d0534608e7aedfbf2319c540a23de1a (diff)
parent21bd51426d900e271206f314e0c915dd41065521 (diff)
downloadiced-633f405f3f78bc7f82d2b2061491b0e011137451.tar.gz
iced-633f405f3f78bc7f82d2b2061491b0e011137451.tar.bz2
iced-633f405f3f78bc7f82d2b2061491b0e011137451.zip
Merge remote-tracking branch 'origin/master' into feat/multi-window-support
# Conflicts: # Cargo.toml # core/src/window/icon.rs # core/src/window/id.rs # core/src/window/position.rs # core/src/window/settings.rs # examples/integration/src/main.rs # examples/integration_opengl/src/main.rs # glutin/src/application.rs # native/src/subscription.rs # native/src/window.rs # runtime/src/window/action.rs # src/lib.rs # src/window.rs # winit/Cargo.toml # winit/src/application.rs # winit/src/icon.rs # winit/src/settings.rs # winit/src/window.rs
Diffstat (limited to 'native/src/layout/node.rs')
-rw-r--r--native/src/layout/node.rs85
1 files changed, 0 insertions, 85 deletions
diff --git a/native/src/layout/node.rs b/native/src/layout/node.rs
deleted file mode 100644
index 2b44a7d5..00000000
--- a/native/src/layout/node.rs
+++ /dev/null
@@ -1,85 +0,0 @@
-use crate::{Alignment, Point, Rectangle, Size, Vector};
-
-/// The bounds of an element and its children.
-#[derive(Debug, Clone, Default)]
-pub struct Node {
- bounds: Rectangle,
- children: Vec<Node>,
-}
-
-impl Node {
- /// Creates a new [`Node`] with the given [`Size`].
- pub const fn new(size: Size) -> Self {
- Self::with_children(size, Vec::new())
- }
-
- /// Creates a new [`Node`] with the given [`Size`] and children.
- pub const fn with_children(size: Size, children: Vec<Node>) -> Self {
- Node {
- bounds: Rectangle {
- x: 0.0,
- y: 0.0,
- width: size.width,
- height: size.height,
- },
- children,
- }
- }
-
- /// Returns the [`Size`] of the [`Node`].
- pub fn size(&self) -> Size {
- Size::new(self.bounds.width, self.bounds.height)
- }
-
- /// Returns the bounds of the [`Node`].
- pub fn bounds(&self) -> Rectangle {
- self.bounds
- }
-
- /// Returns the children of the [`Node`].
- pub fn children(&self) -> &[Node] {
- &self.children
- }
-
- /// Aligns the [`Node`] in the given space.
- pub fn align(
- &mut self,
- horizontal_alignment: Alignment,
- vertical_alignment: Alignment,
- space: Size,
- ) {
- match horizontal_alignment {
- Alignment::Start => {}
- Alignment::Center => {
- self.bounds.x += (space.width - self.bounds.width) / 2.0;
- }
- Alignment::End => {
- self.bounds.x += space.width - self.bounds.width;
- }
- }
-
- match vertical_alignment {
- Alignment::Start => {}
- Alignment::Center => {
- self.bounds.y += (space.height - self.bounds.height) / 2.0;
- }
- Alignment::End => {
- self.bounds.y += space.height - self.bounds.height;
- }
- }
- }
-
- /// Moves the [`Node`] to the given position.
- pub fn move_to(&mut self, position: Point) {
- self.bounds.x = position.x;
- self.bounds.y = position.y;
- }
-
- /// Translates the [`Node`] by the given translation.
- pub fn translate(self, translation: Vector) -> Self {
- Self {
- bounds: self.bounds + translation,
- ..self
- }
- }
-}