Post

Tab

Tab

SimpleKivy.SimpleKivy.Tab(panels={}, k=None, tab_pos='top_left', do_default_tab=False, **kwargs)

Tab.png

Tab.2.png

Dynamic Tab widget constructor.

Parameters

panels: dict

Defines the content of the TabbedPanel.

  • {"{tab_name}": Widget, ...}: For each key: value pair, a TabbedPanelItem is created with text = "{tab_name}" and Widget added as child. Each TabbedPanelItem created is added as child to the main TabbedPanel widget.

Defaults to {}.

Example:

1
2
3
4
5
6
7
8
sk.Tab(
        panels={
            "Header1": sk.Label('First tab content'),

            "Header2": sk.Button('Second tab content')

        }
    )

k: None, str, or NOTKEY

Key specification for quick acess:

  • None: Automatically sets an int value.
  • str: Use specific string key.
  • NOTKEY: Special flag indicating no key should be used.

size: str or sequence of 2 ints

Size specification of the widget:

  • str: "x{width}": Sets widget width and size_hint_x = None.
  • str: "y{height}": Sets widget height and size_hint_y = None.
  • str: "xchildren": Sets size_hint_x = None and binds this widget’s width to the sum of the widths of its children.
  • str: "ychildren": Sets size_hint_y = None and binds this widget’s height to the sum of the heights of its children.
  • str: "xchild_max": Sets size_hint_x = None and binds this widget’s width to the child with the maximum width.
  • str: "ychild_max": Sets size_hint_y = None and binds this widget’s height to the child with the maximum height.

You can combine up to two of the above size string specifications.

  • str: "{number}": Processed as size = (number, number) and size_hint = (None,None). Cannot be combined with other string specifications.
  • sequence: (int, int): Size of the widget. Same as Kivy. Has no effect if size_hint argument is not set to None.

Example:

1
2
3
4
5
6
7
sk.Tab(size = "y35")
sk.Tab(size = "x120y35")
sk.Tab(size = "xchildreny40")
sk.Tab(size = "xchildrenychildren")
sk.Tab(size = "xchild_maxy40")
sk.Tab(size = "60")
sk.Tab(size = (120,35), size_hint = (None, None))

enable_events: bool

Whether the widget will send events to the event_manager set in MyApp using the widgets k/id property as event identifier.

  • True: Triggers events.
  • False: Doesn’t trigger events.

on_event: str, iterable (tuple or list), dict

Defines which events/property changes will trigger the event_manager. Only has effect if enable_events = True.

  • str: Name of the event or property that will trigger the event_manager.
  • iterable: [str, str, ...]: Will trigger events for each name in the iterable.
  • dict: {"{event_name}": callback}: Calls instance.bind(**on_event) during widget creation.

Example:

1
2
3
4
5
sk.Tab(enable_events = True, on_event = 'width')
sk.Tab(enable_events = True, on_event = 'on_touch_down')
sk.Tab(enable_events = True, on_event = ['width','height','pos'])
sk.Tab(enable_events = True, on_event = {"size": lambda ins,v: print("size =",v)})

do_dot_subevent: bool

Adds a “.” to describe the event when triggering the event_manager.

  • True: The event identifier is str(widget.id)+".{event_name}".
  • False: The event identifier is the same as the widget’s k/id.

Default is False.

Returns

TabbedPanel created dynamically with panels processed as displaued content during creation.

Kivy Bases

TabbedPanel

current: (str): `Text value of the current tab selected. Setting this property changes the current tab.

This page only details the new or modified features. All other parameters inherit from the base Kivy widgets and can be found in the official Kivy documentation.

This post is licensed under CC BY 4.0 by the author.