예제 #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 = []