notebook/IPython/html/widgets/widget_button.py

61 lines
2.4 KiB
Python
Raw Normal View History

2013-10-26 02:31:48 +08:00
"""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
#-----------------------------------------------------------------------------
2014-01-22 07:14:27 +08:00
from .widget import DOMWidget, CallbackDispatcher
2014-01-16 19:42:38 +08:00
from IPython.utils.traitlets import Unicode, Bool
2013-10-22 04:02:17 +08:00
2013-10-26 02:31:48 +08:00
#-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
2014-01-07 20:04:24 +08:00
class ButtonWidget(DOMWidget):
2014-01-14 23:21:35 +08:00
view_name = Unicode('ButtonView', sync=True)
2013-10-26 02:31:48 +08:00
# Keys
2014-01-14 23:15:19 +08:00
description = Unicode('', help="Description of the button (label).", sync=True)
disabled = Bool(False, help="Enable or disable user changes.", sync=True)
2013-10-22 04:02:17 +08:00
def __init__(self, **kwargs):
2014-01-16 22:20:04 +08:00
"""Constructor"""
super(ButtonWidget, self).__init__(**kwargs)
2014-01-22 07:14:27 +08:00
self._click_handlers = CallbackDispatcher(acceptable_nargs=[0, 1])
self.on_msg(self._handle_button_msg)
2013-10-22 04:02:17 +08:00
def on_click(self, callback, remove=False):
2014-01-16 22:20:04 +08:00
"""Register a callback to execute when the button is clicked.
The callback can either accept no parameters or one sender parameter:
- 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.
2013-10-26 02:31:48 +08:00
Parameters
----------
remove : bool (optional)
Set to true to remove the callback from the list of callbacks."""
2014-01-22 07:14:27 +08:00
self._click_handlers.register_callback(callback, remove=remove)
2013-10-22 04:02:17 +08:00
def _handle_button_msg(self, content):
2014-01-16 22:20:04 +08:00
"""Handle a msg from the front-end.
Parameters
----------
content: dict
Content of the msg."""
if 'event' in content and content['event'] == 'click':
2014-01-22 07:14:27 +08:00
self._click_handlers()
self._click_handlers(self)