[][src]Struct widgetry::TabController

pub struct TabController {
    id: String,
    tabs: Vec<Tab>,
    active_tab_idx: usize,
}

Fields

id: Stringtabs: Vec<Tab>active_tab_idx: usize

Implementations

impl TabController[src]

pub fn new(id: impl Into<String>) -> Self[src]

pub fn push_tab(
    &mut self,
    bar_item: ButtonBuilder<'static, 'static>,
    content: Widget
)
[src]

Add a new tab.

bar_item: The button shown in the tab bar content: The content shown when this tab's bar_item is clicked

pub fn build_widget(&mut self, ctx: &EventCtx<'_>) -> Widget[src]

A widget containing the tab bar and a content pane with the currently active tab.

pub fn handle_action(
    &mut self,
    ctx: &EventCtx<'_>,
    action: &str,
    panel: &mut Panel
) -> bool
[src]

pub fn active_tab_idx(&self) -> usize[src]

fn active_content_id(&self) -> String[src]

fn bar_items_id(&self) -> String[src]

fn tab_id(&self, tab_index: usize) -> String[src]

fn pop_active_content(&mut self) -> Widget[src]

fn build_bar_items(&self, ctx: &EventCtx<'_>) -> Widget[src]

fn activate_tab(
    &mut self,
    ctx: &EventCtx<'_>,
    tab_idx: usize,
    panel: &mut Panel
)
[src]

Auto Trait Implementations

impl !RefUnwindSafe for TabController[src]

impl !Send for TabController[src]

impl !Sync for TabController[src]

impl Unpin for TabController[src]

impl !UnwindSafe for TabController[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.