示例#1
0
 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)
示例#2
0
 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 = {}
示例#3
0
 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)
示例#4
0
 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 = []
示例#5
0
文件: edit.py 项目: molmod/zeobuilder
 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 = {}
示例#6
0
文件: edit.py 项目: molmod/zeobuilder
 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)
示例#7
0
文件: edit.py 项目: molmod/zeobuilder
 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)
示例#8
0
文件: edit.py 项目: molmod/zeobuilder
 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 = []