##// 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_button.py
73 lines | 2.4 KiB | text/x-python | PythonLexer
Min RK
move DeprecatedClass to widgets, where it's used...
r21081 """Button class.
Jonathan Frederic
Cleaned up Python widget code.
r14283
Represents a button in the frontend using a widget. Allows user to listen for
click events on the button and trigger backend code when the clicks are fired.
"""
Min RK
move DeprecatedClass to widgets, where it's used...
r21081
# Copyright (c) IPython Development Team.
Jonathan Frederic
Cleaned up Python widget code.
r14283 # Distributed under the terms of the Modified BSD License.
Sylvain Corlay
registering core widgets
r18531 from .widget import DOMWidget, CallbackDispatcher, register
Jonathan Frederic
Added bootstrap3 progress bar classes
r17729 from IPython.utils.traitlets import Unicode, Bool, CaselessStrEnum
Min RK
move DeprecatedClass to widgets, where it's used...
r21081 from .deprecated import DeprecatedClass
Jonathan Frederic
Add button widget
r14270
Sylvain Corlay
jupyter -> IPython
r18533 @register('IPython.Button')
Jonathan Frederic
Renamed *Widget to *,...
r17598 class Button(DOMWidget):
Jonathan Frederic
Added some doc strings on the widgets....
r17602 """Button widget.
Sylvain Corlay
font awesome icon
r20397 This widget has an `on_click` method that allows you to listen for the
user clicking on the button. The click event itself is stateless.
Jonathan Frederic
Added some doc strings on the widgets....
r17602
Sylvain Corlay
font awesome icon
r20397 Parameters
----------
description : str
description displayed next to the button
tooltip: str
tooltip caption of the toggle button
icon: str
font-awesome icon name
"""
Jonathan Frederic
s/view_name/_view_name
r14701 _view_name = Unicode('ButtonView', sync=True)
Jonathan Frederic
Cleaned up Python widget code.
r14283
# Keys
Sylvain Corlay
adding a tooltip in IPython buttons
r18115 description = Unicode('', help="Button label.", sync=True)
tooltip = Unicode(help="Tooltip caption of the button.", sync=True)
Jonathan Frederic
sync=True isntead of a keys list
r14588 disabled = Bool(False, help="Enable or disable user changes.", sync=True)
Sylvain Corlay
font awesome icon
r20397 icon = Unicode('', help= "Font-awesome icon.", sync=True)
Jonathan Frederic
Added Bootstrap specific classes,...
r17728
button_style = CaselessStrEnum(
values=['primary', 'success', 'info', 'warning', 'danger', ''],
default_value='', allow_none=True, sync=True, help="""Use a
predefined styling for the button.""")
Jonathan Frederic
Add button widget
r14270
Jonathan Frederic
Fixed button on_click handler so it's initiated on instanciation
r14315 def __init__(self, **kwargs):
Jonathan Frederic
More PEP8 changes
r14607 """Constructor"""
Jonathan Frederic
Renamed *Widget to *,...
r17598 super(Button, self).__init__(**kwargs)
MinRK
review pass on Python-side of widgets...
r14793 self._click_handlers = CallbackDispatcher()
Jonathan Frederic
Changed button to use custom messages instead of state to communicate events.
r14400 self.on_msg(self._handle_button_msg)
Jonathan Frederic
Add button widget
r14270
Jonathan Frederic
Fixed button widget click event handler/
r14272 def on_click(self, callback, remove=False):
MinRK
review pass on Python-side of widgets...
r14793 """Register a callback to execute when the button is clicked.
Jonathan Frederic
More PEP8 changes
r14607
MinRK
review pass on Python-side of widgets...
r14793 The callback will be called with one argument,
the clicked button widget instance.
Jonathan Frederic
Cleaned up Python widget code.
r14283
Parameters
----------
remove : bool (optional)
Jonathan Frederic
Updated ButtonWidget onclick description
r14320 Set to true to remove the callback from the list of callbacks."""
Jonathan Frederic
Added new CallbackDispatcher class
r14658 self._click_handlers.register_callback(callback, remove=remove)
Jonathan Frederic
Add button widget
r14270
Jason Grout
work-in-progress for custom js serializers
r20839 def _handle_button_msg(self, _, content, buffers):
Jonathan Frederic
More PEP8 changes
r14607 """Handle a msg from the front-end.
Jonathan Frederic
Changed button to use custom messages instead of state to communicate events.
r14400
Parameters
----------
content: dict
Content of the msg."""
MinRK
review pass on Python-side of widgets...
r14793 if content.get('event', '') == 'click':
Jonathan Frederic
Added new CallbackDispatcher class
r14658 self._click_handlers(self)
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 ButtonWidget = DeprecatedClass(Button, 'ButtonWidget')