commit
26de688e68
10 changed files with 202 additions and 3 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
use iced::{
|
use iced::{
|
||||||
button, scrollable, slider, text_input, Button, Checkbox, Color, Column,
|
button, scrollable, slider, text_input, Button, Checkbox, Color, Column,
|
||||||
Container, Element, HorizontalAlignment, Image, Length, Radio, Row,
|
Container, Element, HorizontalAlignment, Image, Length, Radio, Row,
|
||||||
Sandbox, Scrollable, Settings, Slider, Text, TextInput,
|
Sandbox, Scrollable, Settings, Slider, Space, Text, TextInput,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub fn main() {
|
pub fn main() {
|
||||||
|
|
@ -67,7 +67,7 @@ impl Sandbox for Tour {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
controls = controls.push(Column::new());
|
controls = controls.push(Space::with_width(Length::Fill));
|
||||||
|
|
||||||
if steps.can_continue() {
|
if steps.can_continue() {
|
||||||
controls = controls.push(
|
controls = controls.push(
|
||||||
|
|
|
||||||
|
|
@ -22,3 +22,9 @@ pub enum MouseCursor {
|
||||||
/// The cursor is over a text widget.
|
/// The cursor is over a text widget.
|
||||||
Text,
|
Text,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Default for MouseCursor {
|
||||||
|
fn default() -> MouseCursor {
|
||||||
|
MouseCursor::OutOfBounds
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ pub mod radio;
|
||||||
pub mod row;
|
pub mod row;
|
||||||
pub mod scrollable;
|
pub mod scrollable;
|
||||||
pub mod slider;
|
pub mod slider;
|
||||||
|
pub mod space;
|
||||||
pub mod svg;
|
pub mod svg;
|
||||||
pub mod text;
|
pub mod text;
|
||||||
pub mod text_input;
|
pub mod text_input;
|
||||||
|
|
@ -52,6 +53,8 @@ pub use scrollable::Scrollable;
|
||||||
#[doc(no_inline)]
|
#[doc(no_inline)]
|
||||||
pub use slider::Slider;
|
pub use slider::Slider;
|
||||||
#[doc(no_inline)]
|
#[doc(no_inline)]
|
||||||
|
pub use space::Space;
|
||||||
|
#[doc(no_inline)]
|
||||||
pub use svg::Svg;
|
pub use svg::Svg;
|
||||||
#[doc(no_inline)]
|
#[doc(no_inline)]
|
||||||
pub use text::Text;
|
pub use text::Text;
|
||||||
|
|
|
||||||
104
native/src/widget/space.rs
Normal file
104
native/src/widget/space.rs
Normal file
|
|
@ -0,0 +1,104 @@
|
||||||
|
//! Distribute content vertically.
|
||||||
|
use std::hash::Hash;
|
||||||
|
|
||||||
|
use crate::{
|
||||||
|
layout, Element, Hasher, Layout, Length, Point, Rectangle, Size, Widget,
|
||||||
|
};
|
||||||
|
|
||||||
|
/// An amount of empty space.
|
||||||
|
///
|
||||||
|
/// It can be useful if you want to fill some space with nothing.
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct Space {
|
||||||
|
width: Length,
|
||||||
|
height: Length,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Space {
|
||||||
|
/// Creates an amount of empty [`Space`] with the given width and height.
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub fn new(width: Length, height: Length) -> Self {
|
||||||
|
Space { width, height }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Creates an amount of horizontal [`Space`].
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub fn with_width(width: Length) -> Self {
|
||||||
|
Space {
|
||||||
|
width,
|
||||||
|
height: Length::Shrink,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Creates an amount of vertical [`Space`].
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub fn with_height(height: Length) -> Self {
|
||||||
|
Space {
|
||||||
|
width: Length::Shrink,
|
||||||
|
height,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, Message, Renderer> Widget<Message, Renderer> for Space
|
||||||
|
where
|
||||||
|
Renderer: self::Renderer,
|
||||||
|
{
|
||||||
|
fn width(&self) -> Length {
|
||||||
|
self.width
|
||||||
|
}
|
||||||
|
|
||||||
|
fn height(&self) -> Length {
|
||||||
|
self.height
|
||||||
|
}
|
||||||
|
|
||||||
|
fn layout(
|
||||||
|
&self,
|
||||||
|
_renderer: &Renderer,
|
||||||
|
limits: &layout::Limits,
|
||||||
|
) -> layout::Node {
|
||||||
|
let limits = limits.width(self.width).height(self.height);
|
||||||
|
|
||||||
|
layout::Node::new(limits.resolve(Size::ZERO))
|
||||||
|
}
|
||||||
|
|
||||||
|
fn draw(
|
||||||
|
&self,
|
||||||
|
renderer: &mut Renderer,
|
||||||
|
layout: Layout<'_>,
|
||||||
|
_cursor_position: Point,
|
||||||
|
) -> Renderer::Output {
|
||||||
|
renderer.draw(layout.bounds())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn hash_layout(&self, state: &mut Hasher) {
|
||||||
|
std::any::TypeId::of::<Space>().hash(state);
|
||||||
|
self.width.hash(state);
|
||||||
|
self.height.hash(state);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// The renderer of an amount of [`Space`].
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub trait Renderer: crate::Renderer {
|
||||||
|
/// Draws an amount of empty [`Space`].
|
||||||
|
///
|
||||||
|
/// You should most likely return an empty primitive here.
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
fn draw(&mut self, bounds: Rectangle) -> Self::Output;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, Message, Renderer> From<Space> for Element<'a, Message, Renderer>
|
||||||
|
where
|
||||||
|
Renderer: self::Renderer,
|
||||||
|
Message: 'static,
|
||||||
|
{
|
||||||
|
fn from(space: Space) -> Element<'a, Message, Renderer> {
|
||||||
|
Element::new(space)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
pub use iced_winit::{
|
pub use iced_winit::{
|
||||||
Align, Background, Color, Command, Font, HorizontalAlignment, Length,
|
Align, Background, Color, Command, Font, HorizontalAlignment, Length,
|
||||||
Subscription, VerticalAlignment,
|
Space, Subscription, VerticalAlignment,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub mod widget {
|
pub mod widget {
|
||||||
|
|
|
||||||
|
|
@ -28,6 +28,7 @@ mod container;
|
||||||
mod image;
|
mod image;
|
||||||
mod radio;
|
mod radio;
|
||||||
mod row;
|
mod row;
|
||||||
|
mod space;
|
||||||
mod text;
|
mod text;
|
||||||
|
|
||||||
#[doc(no_inline)]
|
#[doc(no_inline)]
|
||||||
|
|
@ -47,6 +48,7 @@ pub use container::Container;
|
||||||
pub use image::Image;
|
pub use image::Image;
|
||||||
pub use radio::Radio;
|
pub use radio::Radio;
|
||||||
pub use row::Row;
|
pub use row::Row;
|
||||||
|
pub use space::Space;
|
||||||
|
|
||||||
/// A component that displays information and allows interaction.
|
/// A component that displays information and allows interaction.
|
||||||
///
|
///
|
||||||
|
|
|
||||||
69
web/src/widget/space.rs
Normal file
69
web/src/widget/space.rs
Normal file
|
|
@ -0,0 +1,69 @@
|
||||||
|
use crate::{style, Bus, Element, Length, Widget};
|
||||||
|
use dodrio::bumpalo;
|
||||||
|
|
||||||
|
/// An amount of empty space.
|
||||||
|
///
|
||||||
|
/// It can be useful if you want to fill some space with nothing.
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct Space {
|
||||||
|
width: Length,
|
||||||
|
height: Length,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Space {
|
||||||
|
/// Creates an amount of empty [`Space`] with the given width and height.
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub fn new(width: Length, height: Length) -> Self {
|
||||||
|
Space { width, height }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Creates an amount of horizontal [`Space`].
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub fn with_width(width: Length) -> Self {
|
||||||
|
Space {
|
||||||
|
width,
|
||||||
|
height: Length::Shrink,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Creates an amount of vertical [`Space`].
|
||||||
|
///
|
||||||
|
/// [`Space`]: struct.Space.html
|
||||||
|
pub fn with_height(height: Length) -> Self {
|
||||||
|
Space {
|
||||||
|
width: Length::Shrink,
|
||||||
|
height,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, Message> Widget<Message> for Space {
|
||||||
|
fn node<'b>(
|
||||||
|
&self,
|
||||||
|
bump: &'b bumpalo::Bump,
|
||||||
|
_publish: &Bus<Message>,
|
||||||
|
_style_sheet: &mut style::Sheet<'b>,
|
||||||
|
) -> dodrio::Node<'b> {
|
||||||
|
use dodrio::builder::*;
|
||||||
|
|
||||||
|
let width = style::length(self.width);
|
||||||
|
let height = style::length(self.height);
|
||||||
|
|
||||||
|
let style = bumpalo::format!(
|
||||||
|
in bump,
|
||||||
|
"width: {}; height: {};",
|
||||||
|
width,
|
||||||
|
height
|
||||||
|
);
|
||||||
|
|
||||||
|
div(bump).attr("style", style.into_bump_str()).finish()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'a, Message> From<Space> for Element<'a, Message> {
|
||||||
|
fn from(space: Space) -> Element<'a, Message> {
|
||||||
|
Element::new(space)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -64,3 +64,9 @@ pub enum Primitive {
|
||||||
content: Box<Primitive>,
|
content: Box<Primitive>,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl Default for Primitive {
|
||||||
|
fn default() -> Primitive {
|
||||||
|
Primitive::None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ mod radio;
|
||||||
mod row;
|
mod row;
|
||||||
mod scrollable;
|
mod scrollable;
|
||||||
mod slider;
|
mod slider;
|
||||||
|
mod space;
|
||||||
mod text;
|
mod text;
|
||||||
mod text_input;
|
mod text_input;
|
||||||
|
|
||||||
|
|
|
||||||
8
wgpu/src/renderer/widget/space.rs
Normal file
8
wgpu/src/renderer/widget/space.rs
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
use crate::{Primitive, Renderer};
|
||||||
|
use iced_native::{space, MouseCursor, Rectangle};
|
||||||
|
|
||||||
|
impl space::Renderer for Renderer {
|
||||||
|
fn draw(&mut self, _bounds: Rectangle) -> Self::Output {
|
||||||
|
(Primitive::None, MouseCursor::OutOfBounds)
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue