1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
//! Methods on views for changing their properties or for adding actions.
//!
//! # Examples
//! Modifiers can be used to apply inline [style](StyleModifiers) and [layout](LayoutModifiers) properties to a view:
//! ```no_run
//! # use vizia_core::prelude::*;
//! # let cx = &mut Context::default();
//! # use vizia_winit::application::Application;
//! # Application::new(|cx|{
//! // Sets the background color of the label to red.
//! Label::new(cx, "Hello World")
//! .background_color(Color::red());
//! # }).run();
//! ```
//!
//! ```no_run
//! # use vizia_core::prelude::*;
//! # let cx = &mut Context::default();
//! # use vizia_winit::application::Application;
//! # Application::new(|cx|{
//! // Sets the width of the label to be 100 pixels.
//! Label::new(cx, "Hello World")
//! .width(Pixels(100.0));
//! # }).run();
//! ```
//!
//! Modifiers can also be used to add [actions](ActionModifiers) to a view:
//! ```no_run
//! # use vizia_core::prelude::*;
//! # let cx = &mut Context::default();
//! # use vizia_winit::application::Application;
//! # Application::new(|cx|{
//! // Closes the window when the label is pressed.
//! Label::new(cx, "Hello World")
//! .on_press(|cx| cx.emit(WindowEvent::WindowClose));
//! # }).run();
//! ```
// Macro used within modifier traits to set style properties.
macro_rules! modifier {
(
$(#[$meta:meta])*
$name:ident, $t:ty, $flags:expr
) => {
$(#[$meta])*
#[allow(unused_variables)]
fn $name<U: Into<$t>>(mut self, value: impl Res<U>) -> Self {
let entity = self.entity();
let current = self.current();
value.set_or_bind(self.context(), current, move |cx, v| {
cx.style.$name.insert(entity, v.get(cx).into());
cx.style.system_flags |= $flags;
cx.set_system_flags(entity, $flags);
});
self
}
};
}
// Inside private module to hide implementation details.
mod internal {
use crate::prelude::{Context, Entity, Handle};
// Allows a modifier trait to access to context and entity from `self`.
pub trait Modifiable: Sized {
fn context(&mut self) -> &mut Context;
fn entity(&self) -> Entity;
fn current(&self) -> Entity;
}
impl<'a, V> Modifiable for Handle<'a, V> {
fn context(&mut self) -> &mut Context {
self.cx
}
fn entity(&self) -> Entity {
self.entity
}
fn current(&self) -> Entity {
self.current
}
}
}
mod accessibility;
pub use accessibility::*;
mod actions;
pub use actions::*;
mod layout;
pub use layout::*;
mod style;
pub use style::*;
mod text;
pub use text::*;
mod abilities;
pub use abilities::*;