[][src]Struct druid::UpdateCtx

pub struct UpdateCtx<'a> { /* fields omitted */ }

A mutable context provided to data update methods of widgets.

Widgets should call request_paint whenever a data change causes a change in the widget's appearance, to schedule a repaint.

Methods

impl<'a> UpdateCtx<'a>[src]

pub fn invalidate(&mut self)[src]

Deprecated since 0.5.0:

use request_paint instead

pub fn request_paint(&mut self)[src]

Request a paint pass.

pub fn request_layout(&mut self)[src]

Request layout.

See EventCtx::request_layout for more information.

pub fn children_changed(&mut self)[src]

Indicate that your children have changed.

Widgets must call this method after adding a new child.

pub fn text(&mut self) -> Text[src]

Get an object which can create text layouts.

pub fn window(&self) -> &WindowHandle[src]

Returns a reference to the current WindowHandle.

pub fn window_id(&self) -> WindowId[src]

Get the window id.

pub fn widget_id(&self) -> WidgetId[src]

get the WidgetId of the current widget.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for UpdateCtx<'a>

impl<'a> !Send for UpdateCtx<'a>

impl<'a> !Sync for UpdateCtx<'a>

impl<'a> Unpin for UpdateCtx<'a>

impl<'a> !UnwindSafe for UpdateCtx<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> RoundFrom<T> for T

impl<T, U> RoundInto<U> for T where
    U: RoundFrom<T>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.