[][src]Trait gtk::StackSidebarExt

pub trait StackSidebarExt: 'static {
    fn get_stack(&self) -> Option<Stack>;
fn set_stack<P: IsA<Stack>>(&self, stack: &P);
fn get_property_stack(&self) -> Option<Stack>;
fn set_property_stack<P: IsA<Stack> + SetValueOptional>(
        &self,
        stack: Option<&P>
    );
fn connect_property_stack_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Trait containing all StackSidebar methods.

Feature: v3_16

Implementors

StackSidebar

Required methods

fn get_stack(&self) -> Option<Stack>

Retrieves the stack. See StackSidebarExt::set_stack.

Feature: v3_16

Returns

the associated Stack or None if none has been set explicitly

fn set_stack<P: IsA<Stack>>(&self, stack: &P)

Set the Stack associated with this StackSidebar.

The sidebar widget will automatically update according to the order (packing) and items within the given Stack.

Feature: v3_16

stack

a Stack

fn get_property_stack(&self) -> Option<Stack>

fn set_property_stack<P: IsA<Stack> + SetValueOptional>(
    &self,
    stack: Option<&P>
)

fn connect_property_stack_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<StackSidebar>> StackSidebarExt for O[src]

Loading content...