Trait clutter::StageManagerExt[][src]

pub trait StageManagerExt: 'static {
    fn get_default_stage(&self) -> Option<Stage>;
fn list_stages(&self) -> Vec<Stage>;
fn peek_stages(&self) -> Vec<Stage>;
fn connect_stage_added<F: Fn(&Self, &Stage) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_stage_removed<F: Fn(&Self, &Stage) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_default_stage_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_default_stage(&self) -> Option<Stage>[src]

fn list_stages(&self) -> Vec<Stage>[src]

fn peek_stages(&self) -> Vec<Stage>[src]

fn connect_stage_added<F: Fn(&Self, &Stage) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_stage_removed<F: Fn(&Self, &Stage) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_default_stage_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<StageManager>> StageManagerExt for O[src]

Loading content...