2014-07-19 03:47:33 +08:00
|
|
|
"""Button class.
|
2013-10-26 02:31:48 +08:00
|
|
|
|
|
|
|
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-09-18 05:04:03 +08:00
|
|
|
from .widget import DOMWidget, CallbackDispatcher, register
|
2014-08-27 08:26:05 +08:00
|
|
|
from IPython.utils.traitlets import Unicode, Bool, CaselessStrEnum
|
2014-07-19 03:47:33 +08:00
|
|
|
from IPython.utils.warn import DeprecatedClass
|
2013-10-22 04:02:17 +08:00
|
|
|
|
2013-10-26 02:31:48 +08:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# Classes
|
|
|
|
#-----------------------------------------------------------------------------
|
2014-10-14 09:45:16 +08:00
|
|
|
@register('IPython.Button')
|
2014-07-19 03:47:33 +08:00
|
|
|
class Button(DOMWidget):
|
2014-07-22 02:37:42 +08:00
|
|
|
"""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."""
|
2014-01-23 08:21:00 +08:00
|
|
|
_view_name = Unicode('ButtonView', sync=True)
|
2013-10-26 02:31:48 +08:00
|
|
|
|
|
|
|
# Keys
|
2014-10-04 00:31:57 +08:00
|
|
|
description = Unicode('', help="Button label.", sync=True)
|
|
|
|
tooltip = Unicode(help="Tooltip caption of the button.", sync=True)
|
2014-01-14 23:15:19 +08:00
|
|
|
disabled = Bool(False, help="Enable or disable user changes.", sync=True)
|
2014-08-27 07:49:13 +08:00
|
|
|
|
|
|
|
button_style = CaselessStrEnum(
|
|
|
|
values=['primary', 'success', 'info', 'warning', 'danger', ''],
|
|
|
|
default_value='', allow_none=True, sync=True, help="""Use a
|
|
|
|
predefined styling for the button.""")
|
2013-10-22 04:02:17 +08:00
|
|
|
|
2013-11-02 05:15:28 +08:00
|
|
|
def __init__(self, **kwargs):
|
2014-01-16 22:20:04 +08:00
|
|
|
"""Constructor"""
|
2014-07-19 03:47:33 +08:00
|
|
|
super(Button, self).__init__(**kwargs)
|
2014-01-27 07:46:06 +08:00
|
|
|
self._click_handlers = CallbackDispatcher()
|
2013-11-22 07:44:49 +08:00
|
|
|
self.on_msg(self._handle_button_msg)
|
2013-10-22 04:02:17 +08:00
|
|
|
|
2013-10-22 06:21:34 +08:00
|
|
|
def on_click(self, callback, remove=False):
|
2014-01-27 07:46:06 +08:00
|
|
|
"""Register a callback to execute when the button is clicked.
|
2014-01-16 22:20:04 +08:00
|
|
|
|
2014-01-27 07:46:06 +08:00
|
|
|
The callback will be called with one argument,
|
|
|
|
the clicked button widget instance.
|
2013-10-26 02:31:48 +08:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
remove : bool (optional)
|
2013-11-05 07:53:41 +08:00
|
|
|
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
|
|
|
|
2014-01-27 07:46:06 +08:00
|
|
|
def _handle_button_msg(self, _, content):
|
2014-01-16 22:20:04 +08:00
|
|
|
"""Handle a msg from the front-end.
|
2013-11-22 07:44:49 +08:00
|
|
|
|
|
|
|
Parameters
|
|
|
|
----------
|
|
|
|
content: dict
|
|
|
|
Content of the msg."""
|
2014-01-27 07:46:06 +08:00
|
|
|
if content.get('event', '') == 'click':
|
2014-01-22 07:14:27 +08:00
|
|
|
self._click_handlers(self)
|
2014-07-19 03:47:33 +08:00
|
|
|
|
2014-07-22 02:37:42 +08:00
|
|
|
|
|
|
|
# Remove in IPython 4.0
|
2014-07-19 03:47:33 +08:00
|
|
|
ButtonWidget = DeprecatedClass(Button, 'ButtonWidget')
|