コード例 #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 = []