Trait tuix::PropGet[]

pub trait PropGet: AsEntity {
Show 27 methods fn is_disabled(self, state: &mut State) -> bool;
fn is_checked(self, state: &mut State) -> bool;
fn is_over(self, state: &mut State) -> bool;
fn is_active(self, state: &mut State) -> bool;
fn is_focused(self, state: &mut State) -> bool;
fn is_selected(self, state: &mut State) -> bool;
fn is_hovered(self, state: &mut State) -> bool;
fn get_overflow(&self, state: &mut State) -> Overflow;
fn get_display(&self, state: &mut State) -> Display;
fn get_left(&self, state: &mut State) -> Units;
fn get_right(&self, state: &mut State) -> Units;
fn get_top(&self, state: &mut State) -> Units;
fn get_bottom(&self, state: &mut State) -> Units;
fn get_width(&self, state: &mut State) -> Units;
fn get_height(&self, state: &mut State) -> Units;
fn get_min_width(&self, state: &mut State) -> Units;
fn get_max_width(&self, state: &mut State) -> Units;
fn get_min_height(&self, state: &mut State) -> Units;
fn get_max_height(&self, state: &mut State) -> Units;
fn get_border_width(&self, state: &mut State) -> Units;
fn get_tooltip(&self, state: &mut State) -> String;
fn get_text(&self, state: &mut State) -> String;
fn get_font(&self, state: &mut State) -> String; fn name(&self, state: &mut State) -> String { ... }
fn element(&self, state: &mut State) -> String { ... }
fn get_layout_type(&self, state: &mut State) -> LayoutType { ... }
fn get_background_color(&self, state: &mut State) -> Color { ... }
}

Required methods

Provided methods

Implementors