Trait gtk::prelude::StackSwitcherExt[][src]

pub trait StackSwitcherExt: 'static {
    fn stack(&self) -> Option<Stack>;
fn set_stack<P: IsA<Stack>>(&self, stack: Option<&P>);
fn connect_stack_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all StackSwitcher methods.

Implementors

StackSwitcher

Required methods

Retrieves the stack. See set_stack().

Returns

the stack, or None if none has been set explicitly.

Sets the stack to control.

stack

a Stack

Implementors