##// END OF EJS Templates
Attempt 1, HBox and VBox implementation.
Attempt 1, HBox and VBox implementation.

File last commit:

r14268:ca37a2a5
r14268:ca37a2a5
Show More
widget_container.py
9 lines | 275 B | text/x-python | PythonLexer
from base import Widget
from IPython.utils.traitlets import Unicode, Bool
class ContainerWidget(Widget):
target_name = Unicode('container_widget')
default_view_name = Unicode('ContainerView')
_keys = ['vbox', 'hbox']
hbox = Bool(True)
vbox = Bool(False)