def generateWidget( self, idGDT, ContainerOfData ):
self.idGDT = idGDT
self.ContainerOfData = ContainerOfData
if self.Text == 'Primary:':
self.k=0
elif self.Text == 'Secondary:':
self.k=1
elif self.Text == 'Tertiary:':
self.k=2
elif self.Text == 'Characteristic:':
self.k=3
elif self.Text == 'Datum system:':
self.k=4
elif self.Text == 'Active annotation plane:':
self.k=5
else:
self.k=6
self.ContainerOfData.combo[self.k] = QtGui.QComboBox()
for i in range(len(self.List)):
if self.Icons <> None:
self.ContainerOfData.combo[self.k].addItem( QtGui.QIcon(self.Icons[i]), self.List[i] )
else:
if self.List[i] == None:
self.ContainerOfData.combo[self.k].addItem( '' )
else:
self.ContainerOfData.combo[self.k].addItem( self.List[i].Label )
if self.Text == 'Secondary:' or self.Text == 'Tertiary:':
self.ContainerOfData.combo[self.k].setEnabled(False)
if self.ToolTip <> None:
self.ContainerOfData.combo[self.k].setToolTip( self.ToolTip[0] )
self.comboIndex = self.ContainerOfData.combo[self.k].currentIndex()
if self.k <> 0 and self.k <> 1:
self.updateDate(self.comboIndex)
self.ContainerOfData.combo[self.k].activated.connect(lambda comboIndex = self.comboIndex: self.updateDate(comboIndex))
return GDTDialog_hbox(self.Text,self.ContainerOfData.combo[self.k])
评论列表
文章目录