__init__.py
29 lines
| 1.5 KiB
| text/x-python
|
PythonLexer
Sylvain Corlay
|
r18531 | from .widget import Widget, DOMWidget, CallbackDispatcher, register | ||
Jonathan Frederic
|
r14244 | |||
Jonathan Frederic
|
r17598 | from .widget_bool import Checkbox, ToggleButton | ||
from .widget_button import Button | ||||
Jonathan Frederic
|
r17639 | from .widget_box import Box, Popup, FlexBox, HBox, VBox | ||
Gordon Ball
|
r17698 | from .widget_float import FloatText, BoundedFloatText, FloatSlider, FloatProgress, FloatRangeSlider | ||
Jonathan Frederic
|
r17598 | from .widget_image import Image | ||
Gordon Ball
|
r17698 | from .widget_int import IntText, BoundedIntText, IntSlider, IntProgress, IntRangeSlider | ||
Jonathan Frederic
|
r18953 | from .widget_output import Output | ||
Jonathan Frederic
|
r17598 | from .widget_selection import RadioButtons, ToggleButtons, Dropdown, Select | ||
from .widget_selectioncontainer import Tab, Accordion | ||||
from .widget_string import HTML, Latex, Text, Textarea | ||||
Gordon Ball
|
r17923 | from .interaction import interact, interactive, fixed, interact_manual | ||
Jonathan Frederic
|
r17598 | |||
# Deprecated classes | ||||
Jonathan Frederic
|
r14834 | from .widget_bool import CheckboxWidget, ToggleButtonWidget | ||
Jonathan Frederic
|
r14300 | from .widget_button import ButtonWidget | ||
Jonathan Frederic
|
r17639 | from .widget_box import ContainerWidget, PopupWidget | ||
Jonathan Frederic
|
r14670 | from .widget_float import FloatTextWidget, BoundedFloatTextWidget, FloatSliderWidget, FloatProgressWidget | ||
Jonathan Frederic
|
r14449 | from .widget_image import ImageWidget | ||
Jonathan Frederic
|
r14670 | from .widget_int import IntTextWidget, BoundedIntTextWidget, IntSliderWidget, IntProgressWidget | ||
Jonathan Frederic
|
r14834 | from .widget_selection import RadioButtonsWidget, ToggleButtonsWidget, DropdownWidget, SelectWidget | ||
Jonathan Frederic
|
r14592 | from .widget_selectioncontainer import TabWidget, AccordionWidget | ||
Jonathan Frederic
|
r14834 | from .widget_string import HTMLWidget, LatexWidget, TextWidget, TextareaWidget | ||
Jonathan Frederic
|
r19206 | |||
# Warn on import | ||||
from IPython.utils.warn import warn | ||||
warn("""The widget API is still considered experimental and | ||||
may change by the next major release of IPython.""") | ||||