Trait droom_ui::callback::callbacks::MoveCb [] [src]

pub trait MoveCb where Self: Element + 'static {
    fn set_move_cb<F>(&mut self, cb: F) -> Self where F: Callback<(Self, i32, i32)> { ... }
    fn remove_move_cb(&mut self) -> Option<Box<Callback<(Self, i32, i32)>>> { ... }
}

Called after the widget is moved, see it's documentation for more details.

Provided Methods

Implementors