|
|
"""Box class.
|
|
|
|
|
|
Represents a container that can be used to group other widgets.
|
|
|
"""
|
|
|
|
|
|
# Copyright (c) IPython Development Team.
|
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
|
|
from .widget import DOMWidget, register
|
|
|
from IPython.utils.traitlets import Unicode, Tuple, TraitError, Int, CaselessStrEnum
|
|
|
from IPython.utils.warn import DeprecatedClass
|
|
|
|
|
|
@register('IPython.Box')
|
|
|
class Box(DOMWidget):
|
|
|
"""Displays multiple widgets in a group."""
|
|
|
_view_name = Unicode('BoxView', sync=True)
|
|
|
|
|
|
# Child widgets in the container.
|
|
|
# Using a tuple here to force reassignment to update the list.
|
|
|
# When a proper notifying-list trait exists, that is what should be used here.
|
|
|
children = Tuple(sync=True, allow_none=False)
|
|
|
|
|
|
_overflow_values = ['visible', 'hidden', 'scroll', 'auto', 'initial', 'inherit', '']
|
|
|
overflow_x = CaselessStrEnum(
|
|
|
values=_overflow_values,
|
|
|
default_value='', allow_none=False, sync=True, help="""Specifies what
|
|
|
happens to content that is too large for the rendered region.""")
|
|
|
overflow_y = CaselessStrEnum(
|
|
|
values=_overflow_values,
|
|
|
default_value='', allow_none=False, sync=True, help="""Specifies what
|
|
|
happens to content that is too large for the rendered region.""")
|
|
|
|
|
|
box_style = CaselessStrEnum(
|
|
|
values=['success', 'info', 'warning', 'danger', ''],
|
|
|
default_value='', allow_none=True, sync=True, help="""Use a
|
|
|
predefined styling for the box.""")
|
|
|
|
|
|
def __init__(self, children = (), **kwargs):
|
|
|
kwargs['children'] = children
|
|
|
super(Box, self).__init__(**kwargs)
|
|
|
self.on_displayed(Box._fire_children_displayed)
|
|
|
|
|
|
def _fire_children_displayed(self):
|
|
|
for child in self.children:
|
|
|
child._handle_displayed()
|
|
|
|
|
|
|
|
|
@register('IPython.Popup')
|
|
|
class Popup(Box):
|
|
|
"""Displays multiple widgets in an in page popup div."""
|
|
|
_view_name = Unicode('PopupView', sync=True)
|
|
|
|
|
|
description = Unicode(sync=True)
|
|
|
button_text = Unicode(sync=True)
|
|
|
|
|
|
|
|
|
@register('IPython.FlexBox')
|
|
|
class FlexBox(Box):
|
|
|
"""Displays multiple widgets using the flexible box model."""
|
|
|
_view_name = Unicode('FlexBoxView', sync=True)
|
|
|
orientation = CaselessStrEnum(values=['vertical', 'horizontal'], default_value='vertical', sync=True)
|
|
|
flex = Int(0, sync=True, help="""Specify the flexible-ness of the model.""")
|
|
|
def _flex_changed(self, name, old, new):
|
|
|
new = min(max(0, new), 2)
|
|
|
if self.flex != new:
|
|
|
self.flex = new
|
|
|
|
|
|
_locations = ['start', 'center', 'end', 'baseline', 'stretch']
|
|
|
pack = CaselessStrEnum(
|
|
|
values=_locations,
|
|
|
default_value='start', allow_none=False, sync=True)
|
|
|
align = CaselessStrEnum(
|
|
|
values=_locations,
|
|
|
default_value='start', allow_none=False, sync=True)
|
|
|
|
|
|
|
|
|
def VBox(*pargs, **kwargs):
|
|
|
"""Displays multiple widgets vertically using the flexible box model."""
|
|
|
kwargs['orientation'] = 'vertical'
|
|
|
return FlexBox(*pargs, **kwargs)
|
|
|
|
|
|
def HBox(*pargs, **kwargs):
|
|
|
"""Displays multiple widgets horizontally using the flexible box model."""
|
|
|
kwargs['orientation'] = 'horizontal'
|
|
|
return FlexBox(*pargs, **kwargs)
|
|
|
|
|
|
|
|
|
# Remove in IPython 4.0
|
|
|
ContainerWidget = DeprecatedClass(Box, 'ContainerWidget')
|
|
|
PopupWidget = DeprecatedClass(Popup, 'PopupWidget')
|
|
|
|
|
|
|