def __init__(self, contents, offset=1): """ Arguments: `contents` is a list with the elements contained in the `ScrollableListBox`. `offset` is the number of position that `scroll_up` and `scroll_down` shift the cursor. """ self.offset = offset ListBox.__init__(self, SimpleListWalker(contents))
def __init__(self, tags): tag_widgets = self._create_tag_widgets(tags) self.list_content = SimpleListWalker(tag_widgets) ListBox.__init__(self, self.list_content)
def __init__(self, charset, root, preload_fields, focus, options={}): ListBox.__init__(self, Walker(charset, root, preload_fields, focus, options))
def __init__(self, body): ListBox.__init__(self, body)
def __init__(self): self._contents = SimpleListWalker([]) ListBox.__init__(self, self._contents) self.client = JujuClient()