Version: 8.3.0
gui.Items.ItemOutStream Class Reference
Inheritance diagram for gui.Items.ItemOutStream:
Collaboration diagram for gui.Items.ItemOutStream:

Public Member Functions

def getIconName
 
def link
 
- Public Member Functions inherited from gui.Items.ItemPort
def __init__
 
def selected
 
def getIconName
 
def panel
 
def link
 
def connect
 
- Public Member Functions inherited from gui.Item.Item
def __init__
 
def isExpandable
 
def getChildren
 
def father
 
def getIconName
 
def panel
 
def box
 
def selected
 
def dblselected
 

Additional Inherited Members

- Public Attributes inherited from gui.Items.ItemPort
 port
 
 label
 
 root
 
 emitting
 
- Static Public Attributes inherited from gui.Items.ItemPort
list panels = []
 

Detailed Description

Definition at line 329 of file Items.py.

Member Function Documentation

def gui.Items.ItemOutStream.getIconName (   self)

Definition at line 330 of file Items.py.

331  def getIconName(self):
332  return "outstream.png"
def gui.Items.ItemOutStream.link (   self,
  other 
)

Definition at line 333 of file Items.py.

References gui.Items.ItemPort.port, gui.CItems.ControlItem.port, and gui.CItems.PortItem.port.

334  def link(self,other):
335  father=self.port.getNode().getFather()
336  if father != other.port.getNode().getFather():
337  #not same father : not for the moment
338  return
339  try:
340  father.edAddLink(self.port,other.port)
341  l=StreamLinkItem(other.port,self.port)
342  fitem=Item.adapt(father)
343  fitem.addLink(l)
344  except ValueError,ex:
345  traceback.print_exc()
346  QMessageBox.warning(None,"YACS error",str(ex))
347  return

The documentation for this class was generated from the following file: