summaryrefslogtreecommitdiffstats
path: root/native
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2019-12-31 10:36:06 +0100
committerLibravatar GitHub <noreply@github.com>2019-12-31 10:36:06 +0100
commit26de688e68347e1f6e388d01014eac89cea71afa (patch)
tree6e454bd187407003a243eda4d137a153302f79b2 /native
parenteb8866007456c7ea9efb5449096b0aa15b66ba9b (diff)
parent3a327e08e96d9588d145c32afe4f04f37a8f0f0f (diff)
downloadiced-26de688e68347e1f6e388d01014eac89cea71afa.tar.gz
iced-26de688e68347e1f6e388d01014eac89cea71afa.tar.bz2
iced-26de688e68347e1f6e388d01014eac89cea71afa.zip
Merge pull request #138 from hecrj/feature/empty-widget
`Space` widget
Diffstat (limited to 'native')
-rw-r--r--native/src/mouse_cursor.rs6
-rw-r--r--native/src/widget.rs3
-rw-r--r--native/src/widget/space.rs104
3 files changed, 113 insertions, 0 deletions
diff --git a/native/src/mouse_cursor.rs b/native/src/mouse_cursor.rs
index a4740a27..c7297e0e 100644
--- a/native/src/mouse_cursor.rs
+++ b/native/src/mouse_cursor.rs
@@ -22,3 +22,9 @@ pub enum MouseCursor {
/// The cursor is over a text widget.
Text,
}
+
+impl Default for MouseCursor {
+ fn default() -> MouseCursor {
+ MouseCursor::OutOfBounds
+ }
+}
diff --git a/native/src/widget.rs b/native/src/widget.rs
index 26889280..dcc99645 100644
--- a/native/src/widget.rs
+++ b/native/src/widget.rs
@@ -29,6 +29,7 @@ pub mod radio;
pub mod row;
pub mod scrollable;
pub mod slider;
+pub mod space;
pub mod svg;
pub mod text;
pub mod text_input;
@@ -52,6 +53,8 @@ pub use scrollable::Scrollable;
#[doc(no_inline)]
pub use slider::Slider;
#[doc(no_inline)]
+pub use space::Space;
+#[doc(no_inline)]
pub use svg::Svg;
#[doc(no_inline)]
pub use text::Text;
diff --git a/native/src/widget/space.rs b/native/src/widget/space.rs
new file mode 100644
index 00000000..2029c52f
--- /dev/null
+++ b/native/src/widget/space.rs
@@ -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)
+ }
+}