##// END OF EJS Templates
move DeprecatedClass to widgets, where it's used...
move DeprecatedClass to widgets, where it's used avoids need to add warn to genutils

File last commit:

r21081:5104f42c
r21081:5104f42c
Show More
widget_image.py
37 lines | 1.1 KiB | text/x-python | PythonLexer
Min RK
move DeprecatedClass to widgets, where it's used...
r21081 """Image class.
Jonathan Frederic
Add ImageWidget
r14449
Maximilian Albert
Fix copy & paste error in docstring.
r16376 Represents an image in the frontend using a widget.
Jonathan Frederic
Add ImageWidget
r14449 """
Min RK
move DeprecatedClass to widgets, where it's used...
r21081
# Copyright (c) IPython Development Team.
Jonathan Frederic
Add ImageWidget
r14449 # Distributed under the terms of the Modified BSD License.
import base64
Sylvain Corlay
registering core widgets
r18531 from .widget import DOMWidget, register
Jonathan Frederic
Use CUnicode for width and height in ImageWidget
r14669 from IPython.utils.traitlets import Unicode, CUnicode, Bytes
Min RK
move DeprecatedClass to widgets, where it's used...
r21081 from .deprecated import DeprecatedClass
Jonathan Frederic
Add ImageWidget
r14449
Sylvain Corlay
jupyter -> IPython
r18533 @register('IPython.Image')
Jonathan Frederic
Renamed *Widget to *,...
r17598 class Image(DOMWidget):
Jonathan Frederic
Added some doc strings on the widgets....
r17602 """Displays an image as a widget.
The `value` of this widget accepts a byte string. The byte string is the raw
image data that you want the browser to display. You can explicitly define
the format of the byte string using the `format` trait (which defaults to
"png")."""
Jonathan Frederic
s/view_name/_view_name
r14701 _view_name = Unicode('ImageView', sync=True)
Jonathan Frederic
Add ImageWidget
r14449
# Define the custom state properties to sync with the front-end
Jonathan Frederic
sync=True isntead of a keys list
r14588 format = Unicode('png', sync=True)
Jonathan Frederic
Use CUnicode for width and height in ImageWidget
r14669 width = CUnicode(sync=True)
height = CUnicode(sync=True)
Jonathan Frederic
sync=True isntead of a keys list
r14588 _b64value = Unicode(sync=True)
Jonathan Frederic
Add ImageWidget
r14449
value = Bytes()
def _value_changed(self, name, old, new):
Maximilian Albert
Fix copy & paste error in docstring.
r16376 self._b64value = base64.b64encode(new)
Jonathan Frederic
Renamed *Widget to *,...
r17598
Jonathan Frederic
Added some doc strings on the widgets....
r17602
# Remove in IPython 4.0
Jonathan Frederic
Renamed *Widget to *,...
r17598 ImageWidget = DeprecatedClass(Image, 'ImageWidget')