コード例 #1
0
ファイル: nuke2AB.py プロジェクト: vgrant/arsenalsuite
 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
ファイル: submit.py プロジェクト: vgrant/arsenalsuite
 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
ファイル: submit.py プロジェクト: attila3d/arsenalsuite
	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