示例#1
0
 def showHostSelector(self):
     hs = HostSelector(self)
     hs.setServiceFilter( ServiceList(Service.recordByName( 'Nuke' )) )
     hs.setHostList( self.HostList )
     if hs.exec_() == QDialog.Accepted:
         self.HostList = hs.hostStringList()
     del hs
示例#2
0
 def showHostSelector(self):
     hs = HostSelector(self)
     hs.setServiceFilter(Service.select("service ~ 'RealFlow'"))
     hs.setHostList(self.HostList)
     if hs.exec_() == QDialog.Accepted:
         self.HostList = hs.hostStringList()
     del hs
示例#3
0
	def showHostSelector(self):
		hs = HostSelector(self)
		hs.setServiceFilter( Service.select( "service ~ 'RealFlow'" ))
		hs.setHostList( self.HostList )
		if hs.exec_() == QDialog.Accepted:
			self.HostList = hs.hostStringList()
		del hs