widget_button.py
72 lines
| 2.7 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r17598 | """Button class. | ||
Jonathan Frederic
|
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. | ||||
""" | ||||
#----------------------------------------------------------------------------- | ||||
# 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 | ||||
#----------------------------------------------------------------------------- | ||||
Sylvain Corlay
|
r18531 | from .widget import DOMWidget, CallbackDispatcher, register | ||
Jonathan Frederic
|
r17729 | from IPython.utils.traitlets import Unicode, Bool, CaselessStrEnum | ||
Jonathan Frederic
|
r17598 | from IPython.utils.warn import DeprecatedClass | ||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14283 | #----------------------------------------------------------------------------- | ||
# Classes | ||||
#----------------------------------------------------------------------------- | ||||
Sylvain Corlay
|
r18533 | @register('IPython.Button') | ||
Jonathan Frederic
|
r17598 | class Button(DOMWidget): | ||
Jonathan Frederic
|
r17602 | """Button widget. | ||
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
|
r14701 | _view_name = Unicode('ButtonView', sync=True) | ||
Jonathan Frederic
|
r14283 | |||
# Keys | ||||
Sylvain Corlay
|
r18115 | description = Unicode('', help="Button label.", sync=True) | ||
tooltip = Unicode(help="Tooltip caption of the button.", sync=True) | ||||
Jonathan Frederic
|
r14588 | disabled = Bool(False, help="Enable or disable user changes.", sync=True) | ||
Jonathan Frederic
|
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
|
r14270 | |||
Jonathan Frederic
|
r14315 | def __init__(self, **kwargs): | ||
Jonathan Frederic
|
r14607 | """Constructor""" | ||
Jonathan Frederic
|
r17598 | super(Button, self).__init__(**kwargs) | ||
MinRK
|
r14793 | self._click_handlers = CallbackDispatcher() | ||
Jonathan Frederic
|
r14400 | self.on_msg(self._handle_button_msg) | ||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14272 | def on_click(self, callback, remove=False): | ||
MinRK
|
r14793 | """Register a callback to execute when the button is clicked. | ||
Jonathan Frederic
|
r14607 | |||
MinRK
|
r14793 | The callback will be called with one argument, | ||
the clicked button widget instance. | ||||
Jonathan Frederic
|
r14283 | |||
Parameters | ||||
---------- | ||||
remove : bool (optional) | ||||
Jonathan Frederic
|
r14320 | Set to true to remove the callback from the list of callbacks.""" | ||
Jonathan Frederic
|
r14658 | self._click_handlers.register_callback(callback, remove=remove) | ||
Jonathan Frederic
|
r14270 | |||
MinRK
|
r14793 | def _handle_button_msg(self, _, content): | ||
Jonathan Frederic
|
r14607 | """Handle a msg from the front-end. | ||
Jonathan Frederic
|
r14400 | |||
Parameters | ||||
---------- | ||||
content: dict | ||||
Content of the msg.""" | ||||
MinRK
|
r14793 | if content.get('event', '') == 'click': | ||
Jonathan Frederic
|
r14658 | self._click_handlers(self) | ||
Jonathan Frederic
|
r17598 | |||
Jonathan Frederic
|
r17602 | |||
# Remove in IPython 4.0 | ||||
Jonathan Frederic
|
r17598 | ButtonWidget = DeprecatedClass(Button, 'ButtonWidget') | ||