widget_button.py
60 lines
| 2.4 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r14283 | """ButtonWidget class. | ||
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 | ||||
#----------------------------------------------------------------------------- | ||||
Jonathan Frederic
|
r14658 | from .widget import DOMWidget, CallbackDispatcher | ||
Jonathan Frederic
|
r14603 | from IPython.utils.traitlets import Unicode, Bool | ||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14283 | #----------------------------------------------------------------------------- | ||
# Classes | ||||
#----------------------------------------------------------------------------- | ||||
Jonathan Frederic
|
r14540 | class ButtonWidget(DOMWidget): | ||
Jonathan Frederic
|
r14590 | view_name = Unicode('ButtonView', sync=True) | ||
Jonathan Frederic
|
r14283 | |||
# Keys | ||||
Jonathan Frederic
|
r14588 | description = Unicode('', help="Description of the button (label).", sync=True) | ||
disabled = Bool(False, help="Enable or disable user changes.", sync=True) | ||||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14315 | def __init__(self, **kwargs): | ||
Jonathan Frederic
|
r14607 | """Constructor""" | ||
Jonathan Frederic
|
r14315 | super(ButtonWidget, self).__init__(**kwargs) | ||
Jonathan Frederic
|
r14658 | self._click_handlers = CallbackDispatcher(acceptable_nargs=[0, 1]) | ||
Jonathan Frederic
|
r14400 | self.on_msg(self._handle_button_msg) | ||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14272 | def on_click(self, callback, remove=False): | ||
Jonathan Frederic
|
r14607 | """Register a callback to execute when the button is clicked. | ||
The callback can either accept no parameters or one sender parameter: | ||||
Jonathan Frederic
|
r14320 | - callback() | ||
- callback(sender) | ||||
If the callback has a sender parameter, the ButtonWidget instance that | ||||
called the callback will be passed into the method as the sender. | ||||
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 | |||
Jonathan Frederic
|
r14400 | 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.""" | ||||
if 'event' in content and content['event'] == 'click': | ||||
Jonathan Frederic
|
r14658 | self._click_handlers() | ||
self._click_handlers(self) | ||||