[−][src]Struct widgetry::TabController
Fields
id: String
tabs: 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]
&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
)
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,