Trait iup::dialog::dialog::MdiActivateCb [] [src]

pub trait MdiActivateCb where Self: Element + 'static {
    fn set_mdiactivate_cb<F>(&mut self, cb: F) -> Self where F: Callback<(Self,)> { ... }
    fn remove_mdiactivate_cb(&mut self) -> Option<Box<Callback<(Self,)>>> { ... }
}

[Windows Only]: Called when a MDI child window is activated.

Only the MDI child receive this message. It is not called when the child is shown for the first time.

See the IUP Dialog Documentation for information on MDI dialogs.

Provided Methods

fn set_mdiactivate_cb<F>(&mut self, cb: F) -> Self where F: Callback<(Self,)>

fn remove_mdiactivate_cb(&mut self) -> Option<Box<Callback<(Self,)>>>

Implementors