コード例 #1
0
ファイル: explorer.py プロジェクト: nistpenning/artiq
 def __setitem__(self, k, v):
     DictSyncModel.__setitem__(self, k, v)
     if k == self.explorer.selected_key:
         self.explorer.update_selection(k, k)
コード例 #2
0
ファイル: datasets.py プロジェクト: kgilmo/penning_artiq
 def __init__(self, parent, init):
     DictSyncModel.__init__(self, ["Dataset", "Persistent", "Value"],
                            parent, init)
コード例 #3
0
ファイル: results.py プロジェクト: fallen/artiq
 def __init__(self, parent, init):
     DictSyncModel.__init__(self, ["Result", "Value"],
                            parent, init)
コード例 #4
0
ファイル: explorer.py プロジェクト: nistpenning/artiq
 def __init__(self, explorer, parent, init):
     self.explorer = explorer
     DictSyncModel.__init__(self,
         ["Experiment"],
         parent, init)
コード例 #5
0
 def __init__(self, parent, init):
     DictSyncModel.__init__(self, ["Result", "Value"], parent, init)
コード例 #6
0
ファイル: parameters.py プロジェクト: nistpenning/artiq
 def __init__(self, parent, init):
     DictSyncModel.__init__(self, ["Parameter", "Value"],
                            parent, init)
コード例 #7
0
 def __init__(self, parent, init):
     DictSyncModel.__init__(self, ["Dataset", "Persistent", "Value"],
                            parent, init)
コード例 #8
0
ファイル: schedule.py プロジェクト: kgilmo/penning_artiq
 def __init__(self, parent, init):
     DictSyncModel.__init__(self,
         ["RID", "Pipeline", "Status", "Prio", "Due date",
          "Revision", "File", "Class name"],
         parent, init)
コード例 #9
0
ファイル: schedule.py プロジェクト: MikeTam1021/artiq
 def __init__(self, parent, init):
     DictSyncModel.__init__(self, [
         "RID", "Pipeline", "Status", "Prio", "Due date", "Revision",
         "File", "Class name"
     ], parent, init)
コード例 #10
0
ファイル: explorer.py プロジェクト: MikeTam1021/artiq
 def __setitem__(self, k, v):
     DictSyncModel.__setitem__(self, k, v)
     if k == self.explorer.selected_key:
         self.explorer.update_selection(k, k)
コード例 #11
0
ファイル: explorer.py プロジェクト: MikeTam1021/artiq
 def __init__(self, explorer, parent, init):
     self.explorer = explorer
     DictSyncModel.__init__(self, ["Experiment"], parent, init)