def __init__(self, label_text=None, attribute_name=None, show_popup=True, history_name=None): Edit.__init__(self, label_text, attribute_name, show_popup, history_name)
def __init__(self, choices, label_text=None, attribute_name=None, show_popup=True, history_name=None): Edit.__init__(self, label_text, attribute_name, show_popup, history_name) self.choices = choices self.paths = {}
def __init__(self, label_text=None, attribute_name=None, show_popup=True, history_name=None, width=250, height=300): Edit.__init__(self, label_text, attribute_name, show_popup, history_name) TextViewMixin.__init__(self, width, height)
def __init__(self, columns, label_text=None, attribute_name=None, show_popup=True, history_name=None): Edit.__init__(self, label_text, attribute_name, show_popup, history_name) self.columns = columns self.paths = {} self.records = []