PseudoV.st
changeset 621 decaeae1910d
parent 616 56cf67c82664
child 623 ddc3c6c6c967
equal deleted inserted replaced
620:c840b7106a64 621:decaeae1910d
   202 	    self setViewBackground
   202 	    self setViewBackground
   203 	]
   203 	]
   204     ]
   204     ]
   205 !
   205 !
   206 
   206 
       
   207 viewBackgroundAndClear:something
       
   208     "set the viewBackground to something, a color, image or form.
       
   209      and clear the View.
       
   210      The viewBackground is the color or pattern with which exposed
       
   211      regions are filled - do not confuse this with the drawing background
       
   212      color, which is used with opaque drawing."
       
   213 
       
   214     self viewBackground:something.
       
   215     self clear.
       
   216 
       
   217     "Created: 27.4.1996 / 14:09:08 / cg"
       
   218 !
       
   219 
   207 viewGravity
   220 viewGravity
   208     "return the views gravity"
   221     "return the views gravity"
   209 
   222 
   210     ^ #NorthWest
   223     ^ #NorthWest
   211 !
   224 !
  1561 ! !
  1574 ! !
  1562 
  1575 
  1563 !PseudoView class methodsFor:'documentation'!
  1576 !PseudoView class methodsFor:'documentation'!
  1564 
  1577 
  1565 version
  1578 version
  1566     ^ '$Header: /cvs/stx/stx/libview/Attic/PseudoV.st,v 1.56 1996-04-25 17:16:29 cg Exp $'
  1579     ^ '$Header: /cvs/stx/stx/libview/Attic/PseudoV.st,v 1.57 1996-04-27 18:13:12 cg Exp $'
  1567 ! !
  1580 ! !