##// END OF EJS Templates
Merge pull request #6691 from minrk/rm-bs...
Merge pull request #6691 from minrk/rm-bs remove redundant 'responsive-utilities' from style.less

File last commit:

r17602:3fe9cbc5
r18318:2c9a9d44 merge
Show More
widget_image.py
46 lines | 1.7 KiB | text/x-python | PythonLexer
Jonathan Frederic
Renamed *Widget to *,...
r17598 """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 """
#-----------------------------------------------------------------------------
# Copyright (c) 2013, the IPython Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file COPYING.txt, distributed with this software.
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
import base64
Jonathan Frederic
s/Widget/DOMWidget s/BaseWidget/Widget
r14540 from .widget import DOMWidget
Jonathan Frederic
Use CUnicode for width and height in ImageWidget
r14669 from IPython.utils.traitlets import Unicode, CUnicode, Bytes
Jonathan Frederic
Renamed *Widget to *,...
r17598 from IPython.utils.warn import DeprecatedClass
Jonathan Frederic
Add ImageWidget
r14449
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
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')