##// END OF EJS Templates
always pass single lines to transform.push...
always pass single lines to transform.push in InputSplitter.flush_transform Previous behavior allowed early transforms to confuse later ones if they handle multiple lines at a time.

File last commit:

r17515:bd0a408c
r17813:48f15a52
Show More
Widget List.ipynb
578 lines | 11.8 KiB | text/plain | TextLexer

Index - [Back](Widget Basics.ipynb) - [Next](Widget Events.ipynb)

Widget List

Complete list

For a complete list of the widgets available to you, you can list the classes in the widget namespace (as seen below). Classes with the suffix Widget are widgets. Widget and DOMWidget are base classes.

In [ ]:
from IPython.html import widgets
[w for w in dir(widgets) if w.endswith('Widget')]

Numeric widgets

There are 8 widgets distributed with IPython that are designed to display numeric values. Widgets exist for displaying integers and floats, both bounded and unbounded. The integer widgets share a similar naming scheme to their floating point counterparts. By replacing Float with Int in the widget name, you can find the Integer equivalent.

FloatSliderWidget

In [ ]:
widgets.FloatSliderWidget(
    value=7.5,
    min=5.0,
    max=10.0,
    step=0.1,
    description='Test:',
)

Sliders can also be displayed vertically.

In [ ]:
widgets.FloatSliderWidget(
    value=7.5,
    min=5.0,
    max=10.0,
    step=0.1,
    description='Test',
    orientation='vertical',
)

FloatProgressWidget

In [ ]:
widgets.FloatProgressWidget(
    value=7.5,
    min=5.0,
    max=10.0,
    step=0.1,
    description='Loading:',
)

BoundedFloatTextWidget

In [ ]:
widgets.BoundedFloatTextWidget(
    value=7.5,
    min=5.0,
    max=10.0,
    description='Text:',
)

FloatTextWidget

In [ ]:
widgets.FloatTextWidget(
    value=7.5,
    description='Any:',
)

Boolean widgets

There are two widgets that are designed to display a boolean value.

ToggleButtonWidget

In [ ]:
widgets.ToggleButtonWidget(
    description='Click me',
    value=False,
)

CheckboxWidget

In [ ]:
widgets.CheckboxWidget(
    description='Check me',
    value=True,
)

Selection widgets

There are four widgets that can be used to display single selection lists. All four inherit from the same base class. You can specify the enumeration of selectables by passing a list. You can also specify the enumeration as a dictionary, in which case the keys will be used as the item displayed in the list and the corresponding value will be returned when an item is selected.

In [ ]:
from IPython.display import display
w = widgets.DropdownWidget(
    values=[1, 2, 3],
    value=2,
    description='Number:',
)
display(w)
In [ ]:
w.value

The following is also valid:

In [ ]:
w = widgets.DropdownWidget(
    values={'One': 1, 'Two': 2, 'Three': 3},
    value=2,
    description='Number:',
)
display(w)
In [ ]:
w.value

RadioButtonsWidget

In [ ]:
widgets.RadioButtonsWidget(
    description='Pizza topping:',
    values=['pepperoni', 'pineapple', 'anchovies'],
)

SelectWidget

In [ ]:
widgets.SelectWidget(
    description='OS:',
    values=['Linux', 'Windows', 'OSX'],
)

ToggleButtonsWidget

In [ ]:
widgets.ToggleButtonsWidget(
    description='Speed:',
    values=['Slow', 'Regular', 'Fast'],
)

String widgets

There are 4 widgets that can be used to display a string value. Of those, the TextWidget and TextareaWidget accept input. The LatexWidget and HTMLWidget display the string as either Latex or HTML respectively, but do not accept input.

TextWidget

In [ ]:
widgets.TextWidget(
    description='String:',
    value='Hello World',
)

TextareaWidget

In [ ]:
widgets.TextareaWidget(
    description='String:',
    value='Hello World',
)

LatexWidget

In [ ]:
widgets.LatexWidget(
    value="$$\\frac{n!}{k!(n-k)!} = \\binom{n}{k}$$",
)

HTMLWidget

In [ ]:
widgets.HTMLWidget(
    value="Hello <b>World</b>"
)

ButtonWidget

In [ ]:
widgets.ButtonWidget(description='Click me')

Index - [Back](Widget Basics.ipynb) - [Next](Widget Events.ipynb)