##// END OF EJS Templates
refactor to improve cell switching in edit mode...
refactor to improve cell switching in edit mode This code was repeated in both CodeCell and TextCell, both of which are extensions of Cell, so this just unifies the logic in Cell. TextCell had logic here to check if the cell was rendered or not, but I don't believe it is possible to end up triggering such a code path. (Should that be required, I can always just add back these methods to TextCell, performing the .rendered==True check, and calling the Cell prior to this, code mirror at_top would only return true on if the cursor was at the first character of the top line. Now, pressing up arrow on any character on the top line will take you to the cell above. The same applies for the bottom line. Pressing down arrow would only go to the next cell if the cursor was at a location *after* the last character (something that is only possible to achieve in vim mode if the last line is empty, for example). Now, down arrow on any character of the last line will go to the next cell.

File last commit:

r14793:9cf2bba8
r15754:d60e793e
Show More
widget_button.py
56 lines | 2.1 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
Added new CallbackDispatcher class
r14658 from .widget import DOMWidget, CallbackDispatcher
Jonathan Frederic
s/Int/CInt s/Float/CFloat
r14603 from IPython.utils.traitlets import Unicode, Bool
Jonathan Frederic
Add button widget
r14270
Jonathan Frederic
Cleaned up Python widget code.
r14283 #-----------------------------------------------------------------------------
# Classes
#-----------------------------------------------------------------------------
Jonathan Frederic
s/Widget/DOMWidget s/BaseWidget/Widget
r14540 class ButtonWidget(DOMWidget):
Jonathan Frederic
s/view_name/_view_name
r14701 _view_name = Unicode('ButtonView', sync=True)
Jonathan Frederic
Cleaned up Python widget code.
r14283
# Keys
Jonathan Frederic
sync=True isntead of a keys list
r14588 description = Unicode('', help="Description of the button (label).", sync=True)
disabled = Bool(False, help="Enable or disable user changes.", sync=True)
Jonathan Frederic
Add button widget
r14270
Jonathan Frederic
Fixed button on_click handler so it's initiated on instanciation
r14315 def __init__(self, **kwargs):
Jonathan Frederic
More PEP8 changes
r14607 """Constructor"""
Jonathan Frederic
Fixed button on_click handler so it's initiated on instanciation
r14315 super(ButtonWidget, self).__init__(**kwargs)
MinRK
review pass on Python-side of widgets...
r14793 self._click_handlers = CallbackDispatcher()
Jonathan Frederic
Changed button to use custom messages instead of state to communicate events.
r14400 self.on_msg(self._handle_button_msg)
Jonathan Frederic
Add button widget
r14270
Jonathan Frederic
Fixed button widget click event handler/
r14272 def on_click(self, callback, remove=False):
MinRK
review pass on Python-side of widgets...
r14793 """Register a callback to execute when the button is clicked.
Jonathan Frederic
More PEP8 changes
r14607
MinRK
review pass on Python-side of widgets...
r14793 The callback will be called with one argument,
the clicked button widget instance.
Jonathan Frederic
Cleaned up Python widget code.
r14283
Parameters
----------
remove : bool (optional)
Jonathan Frederic
Updated ButtonWidget onclick description
r14320 Set to true to remove the callback from the list of callbacks."""
Jonathan Frederic
Added new CallbackDispatcher class
r14658 self._click_handlers.register_callback(callback, remove=remove)
Jonathan Frederic
Add button widget
r14270
MinRK
review pass on Python-side of widgets...
r14793 def _handle_button_msg(self, _, content):
Jonathan Frederic
More PEP8 changes
r14607 """Handle a msg from the front-end.
Jonathan Frederic
Changed button to use custom messages instead of state to communicate events.
r14400
Parameters
----------
content: dict
Content of the msg."""
MinRK
review pass on Python-side of widgets...
r14793 if content.get('event', '') == 'click':
Jonathan Frederic
Added new CallbackDispatcher class
r14658 self._click_handlers(self)