##// END OF EJS Templates
Finishing the index files.
Finishing the index files.

File last commit:

r16115:c70632c7
r16118:61d31e5b
Show More
Widgets Overview.ipynb
305 lines | 7.9 KiB | text/plain | TextLexer
/ examples / Widgets / Widgets Overview.ipynb
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 {
"metadata": {
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 "cell_tags": [
[
"<None>",
null
]
],
Brian E. Granger
Work on widget tutorials
r16098 "name": "",
"signature": "sha256:9a70b52f0b16861d1cd6a8342b233247958977a52bde8d3efd69d21131ce1926"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 },
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
Jonathan Frederic
Cleanup examples...
r14724 "To use IPython widgets in the notebook, the widget namespace needs to be imported."
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"from IPython.html import widgets # Widget definitions\n",
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 "from IPython.display import display # Used to display widgets in the notebook"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ],
"language": "python",
"metadata": {},
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 "outputs": [],
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "prompt_number": 1
},
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Basic Widgets"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
MinRK
review pass on widget examples
r14798 "IPython comes with basic widgets that represent common interactive controls. These widgets are\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "\n",
Jonathan Frederic
Renamed widgets......
r14834 "- CheckboxWidget\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "- ToggleButtonWidget\n",
"- FloatSliderWidget\n",
"- BoundedFloatTextWidget\n",
"- FloatProgressWidget\n",
"- FloatTextWidget\n",
"- ImageWidget\n",
"- IntSliderWidget\n",
"- BoundedIntTextWidget\n",
"- IntProgressWidget\n",
"- IntTextWidget\n",
"- ToggleButtonsWidget\n",
"- RadioButtonsWidget\n",
"- DropdownWidget\n",
Jonathan Frederic
Renamed widgets......
r14834 "- SelectWidget\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "- HTMLWidget\n",
"- LatexWidget\n",
Jonathan Frederic
Renamed widgets......
r14834 "- TextareaWidget\n",
"- TextWidget\n",
MinRK
review pass on widget examples
r14798 "- ButtonWidget\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "\n",
"A few special widgets are also included, that can be used to capture events and change how other widgets are displayed. These widgets are\n",
"\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "- ContainerWidget\n",
"- PopupWidget\n",
"- AccordionWidget\n",
"- TabWidget\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "\n",
"To see the complete list of widgets, one can execute the following"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"[widget for widget in dir(widgets) if widget.endswith('Widget')]"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
"prompt_number": 2,
"text": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "['AccordionWidget',\n",
" 'BoundedFloatTextWidget',\n",
" 'BoundedIntTextWidget',\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 " 'ButtonWidget',\n",
Jonathan Frederic
Renamed widgets......
r14834 " 'CheckboxWidget',\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 " 'ContainerWidget',\n",
Jason Grout
update example notebooks
r14619 " 'DOMWidget',\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 " 'DropdownWidget',\n",
" 'FloatProgressWidget',\n",
" 'FloatSliderWidget',\n",
" 'FloatTextWidget',\n",
" 'HTMLWidget',\n",
Jonathan Frederic
Add ImageWidget
r14449 " 'ImageWidget',\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 " 'IntProgressWidget',\n",
" 'IntSliderWidget',\n",
" 'IntTextWidget',\n",
" 'LatexWidget',\n",
" 'PopupWidget',\n",
" 'RadioButtonsWidget',\n",
Jonathan Frederic
Renamed widgets......
r14834 " 'SelectWidget',\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 " 'TabWidget',\n",
Jonathan Frederic
Renamed widgets......
r14834 " 'TextWidget',\n",
" 'TextareaWidget',\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 " 'ToggleButtonWidget',\n",
" 'ToggleButtonsWidget',\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 " 'Widget']"
]
}
],
"prompt_number": 2
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
MinRK
review pass on widget examples
r14798 "The basic widgets all have sensible default values. Create a *FloatSliderWidget* without displaying it:"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "mywidget = widgets.FloatSliderWidget()"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ],
"language": "python",
"metadata": {},
Jason Grout
Example notebooks updated.
r14505 "outputs": [],
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "prompt_number": 3
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "Constructing a widget does not display it on the page. To display a widget, the widget must be passed to the IPython `display(object)` method or must be returned as the last item in the cell. `mywidget` is displayed by"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"display(mywidget)"
],
"language": "python",
"metadata": {},
"outputs": [],
"prompt_number": 4
},
{
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "cell_type": "markdown",
"metadata": {},
"source": [
"or"
]
},
{
Jason Grout
Intermediate changes to javascript side of backbone widgets
r14486 "cell_type": "code",
"collapsed": false,
"input": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "mywidget"
Jason Grout
Intermediate changes to javascript side of backbone widgets
r14486 ],
"language": "python",
"metadata": {},
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "outputs": [],
"prompt_number": 5
Jason Grout
Intermediate changes to javascript side of backbone widgets
r14486 },
{
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "cell_type": "markdown",
"metadata": {},
"source": [
"It's important to realize that widgets are not the same as output, even though they are displayed with `display`. Widgets are drawn in a special widget area. That area is marked with a close button which allows you to collapse the widgets. Widgets cannot be interleaved with output. Doing so would break the ability to make simple animations using `clear_output`.\n",
"\n",
MinRK
review pass on widget examples
r14798 "Widgets are manipulated via special instance attributes (traitlets). The names of these traitlets are listed in the widget's `keys` attribute (as seen below). A few of these attributes are common to most widgets. The basic attributes are `value`, `description`, `visible`, and `disabled`. `_css` and `_view_name` are private attributes that exist in all widgets and should not be modified."
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mywidget.keys"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 6,
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "text": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "['_view_name',\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 " 'orientation',\n",
MinRK
review pass on widget examples
r14798 " 'min',\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 " 'max',\n",
Jason Grout
update example notebooks
r14619 " '_css',\n",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 " 'value',\n",
" 'disabled',\n",
" 'visible',\n",
MinRK
review pass on widget examples
r14798 " 'step',\n",
" 'description']"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
}
],
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 6
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
MinRK
review pass on widget examples
r14798 "Changing a widget's attribute will automatically update that widget everywhere it is displayed in the notebook. Here, the `value` attribute of `mywidget` is set. The slider shown above updates automatically with the new value. Syncing also works in the other direction - changing the value of the displayed widget will update the property's value."
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mywidget.value = 25.0"
],
"language": "python",
"metadata": {},
"outputs": [],
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 7
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
"After changing the widget's value in the notebook by hand to 0.0 (sliding the bar to the far left)."
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
"mywidget.value"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 8,
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "text": [
MinRK
review pass on widget examples
r14798 "25.0"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
}
],
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 8
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 },
{
"cell_type": "markdown",
"metadata": {},
"source": [
MinRK
review pass on widget examples
r14798 "Widget values can also be set with kwargs during the construction of the widget (as seen below)."
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
},
{
"cell_type": "code",
"collapsed": false,
"input": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "mysecondwidget = widgets.RadioButtonsWidget(values=[\"Item A\", \"Item B\", \"Item C\"], value=\"Item A\")\n",
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "display(mysecondwidget)"
],
"language": "python",
"metadata": {},
Jason Grout
Example notebooks updated.
r14505 "outputs": [],
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 9
Jason Grout
Intermediate changes to javascript side of backbone widgets
r14486 },
{
"cell_type": "code",
"collapsed": false,
"input": [
"mysecondwidget.value"
],
"language": "python",
"metadata": {},
"outputs": [
{
"metadata": {},
"output_type": "pyout",
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 10,
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 "text": [
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "'Item A'"
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 ]
}
],
Jonathan Frederic
Updated widget tutorials 1-2
r14708 "prompt_number": 10
Jonathan Frederic
Uploaded widget tutorial (example) notebooks.
r14323 }
],
"metadata": {}
}
]
}