Struct widgetry::TabController [−][src]
Fields
id: String
tabs: Vec<Tab>
active_tab_idx: usize
Implementations
impl TabController
[src]
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]
&mut self,
bar_item: ButtonBuilder<'static, 'static>,
content: Widget
)
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]
&mut self,
ctx: &EventCtx<'_>,
action: &str,
panel: &mut Panel
) -> bool
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]
&mut self,
ctx: &EventCtx<'_>,
tab_idx: usize,
panel: &mut Panel
)