widget_button.py
45 lines
| 1.4 KiB
| text/x-python
|
PythonLexer
Jonathan Frederic
|
r14272 | import inspect | ||
import types | ||||
Jonathan Frederic
|
r14270 | from base import Widget | ||
from IPython.utils.traitlets import Unicode, Bool, Int | ||||
class ButtonWidget(Widget): | ||||
target_name = Unicode('ButtonWidgetModel') | ||||
default_view_name = Unicode('ButtonView') | ||||
_keys = ['clicks', 'description', 'disabled'] | ||||
clicks = Int(0) | ||||
description = Unicode('') # Description of the button (label). | ||||
disabled = Bool(False) # Enable or disable user changes | ||||
_click_handlers = [] | ||||
Jonathan Frederic
|
r14272 | |||
def on_click(self, callback, remove=False): | ||||
Jonathan Frederic
|
r14270 | if remove: | ||
self._click_handlers.remove(callback) | ||||
else: | ||||
self._click_handlers.append(callback) | ||||
Jonathan Frederic
|
r14272 | |||
Jonathan Frederic
|
r14270 | def _clicks_changed(self, name, old, new): | ||
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.') | ||||