XWorkstation.st
changeset 7021 e5f10e127652
parent 7018 c8c62b261dd9
child 7022 f4531f98fd46
equal deleted inserted replaced
7020:a32d62ad31cd 7021:e5f10e127652
  1608 
  1608 
  1609 supportsMaskedDrawingWith:aForm
  1609 supportsMaskedDrawingWith:aForm
  1610     "return true, if the device allows the given form pixmap
  1610     "return true, if the device allows the given form pixmap
  1611      to be used as paint color.
  1611      to be used as paint color.
  1612      True returned here - X has no trouble with any mask."
  1612      True returned here - X has no trouble with any mask."
       
  1613 
       
  1614     ^ true
       
  1615 
       
  1616     "Created: / 4.5.1999 / 12:16:43 / cg"
       
  1617 !
       
  1618 
       
  1619 supportsMaskedDrawingWithOffset:aForm
       
  1620     "return true, if the device allows the given form pixmap
       
  1621      to be used as paint color with a viewOrigin offset.
       
  1622      True returned here - X has no trouble with any mask,except for XQuartz, which has."
  1613 
  1623 
  1614     "XQuartz seems to have a bug here..."
  1624     "XQuartz seems to have a bug here..."
  1615     OperatingSystem isOSXlike ifTrue:[^ false].
  1625     OperatingSystem isOSXlike ifTrue:[^ false].
  1616     ^ true
  1626     ^ true
  1617 
  1627