def __init__(self, tab_stop=None, **kwds): Properties.__init__(self, **kwds) if tab_stop is None: tab_stop = self._get_default_tab_stop() self.tab_stop = tab_stop
def __init__(self, parent=None, **kwds): Properties.__init__(self, **kwds) if parent: self.parent = parent
def __init__(self, items=[], **kwds): Properties.__init__(self, **kwds) self._items = [] self.add_items(items)
def __init__(self, title="", width=50, just='left', **kwds): if kwds.get('editor'): self.editable = True Properties.__init__(self, title=title, width=width, just=just, **kwds)
def __init__(self, title, items, special=False, substitutions={}, **kwds): self._title = title self._items = [] self._special = special Properties.__init__(self, **kwds) self.extend(items, substitutions)
def __init__(self, parent = None, **kwds): Properties.__init__(self, **kwds) if parent: self.parent = parent
def __init__(self, title, items, special = False, substitutions = {}, **kwds): self._title = title self._items = [] self._special = special Properties.__init__(self, **kwds) self.extend(items, substitutions)
def __init__(self, tab_stop = None, **kwds): Properties.__init__(self, **kwds) if tab_stop is None: tab_stop = self._get_default_tab_stop() self.tab_stop = tab_stop
def __init__(self, items = [], **kwds): Properties.__init__(self, **kwds) self._items = [] self.add_items(items)