##// END OF EJS Templates
Added ability to set container page titles for widget multicontainer
Added ability to set container page titles for widget multicontainer

File last commit:

r14283:40950ae4
r14288:71d4582e
Show More
widget_button.py
72 lines | 2.6 KiB | text/x-python | PythonLexer
Jonathan Frederic
Cleaned up Python widget code.
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
Fixed button widget click event handler/
r14272 import inspect
import types
Jonathan Frederic
Fixed stale reference to base.py -> widget.py
r14274 from widget import Widget
Jonathan Frederic
Add button widget
r14270 from IPython.utils.traitlets import Unicode, Bool, Int
Jonathan Frederic
Cleaned up Python widget code.
r14283 #-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
Jonathan Frederic
Add button widget
r14270 class ButtonWidget(Widget):
target_name = Unicode('ButtonWidgetModel')
default_view_name = Unicode('ButtonView')
Jonathan Frederic
Cleaned up Python widget code.
r14283
# Keys
Jonathan Frederic
Add button widget
r14270 _keys = ['clicks', 'description', 'disabled']
Jonathan Frederic
Cleaned up Python widget code.
r14283 clicks = Int(0, help="Number of times the button has been clicked.")
description = Unicode('', help="Description of the button (label).")
disabled = Bool(False, help="Enable or disable user changes.")
Jonathan Frederic
Add button widget
r14270
_click_handlers = []
Jonathan Frederic
Fixed button widget click event handler/
r14272
def on_click(self, callback, remove=False):
Jonathan Frederic
Cleaned up Python widget code.
r14283 """Register a callback to execute when the button is clicked.
Parameters
----------
remove : bool (optional)
Set to tru to remove the callback from the list of callbacks."""
Jonathan Frederic
Add button widget
r14270 if remove:
self._click_handlers.remove(callback)
else:
self._click_handlers.append(callback)
Jonathan Frederic
Fixed button widget click event handler/
r14272
Jonathan Frederic
Add button widget
r14270 def _clicks_changed(self, name, old, new):
Jonathan Frederic
Cleaned up Python widget code.
r14283 """Handles when the clicks property has been changed. Fires on_click
callbacks when appropriate."""
Jonathan Frederic
Add button widget
r14270 if new > old:
for handler in self._click_handlers:
if callable(handler):
argspec = inspect.getargspec(handler)
nargs = len(argspec[0])
# Bound methods have an additional 'self' argument
if isinstance(handler, types.MethodType):
nargs -= 1
# Call the callback
if nargs == 0:
handler()
elif nargs == 1:
handler(self)
else:
raise TypeError('ButtonWidget click callback must ' \
'accept 0 or 1 arguments.')