DevDraw.st
changeset 601 2c4c1e797909
parent 571 c25666a315f6
child 606 73206b694d27
equal deleted inserted replaced
600:b10cd484ea92 601:2c4c1e797909
    48     Direct access to fg/bg is discouraged, since in the future, these may be 
    48     Direct access to fg/bg is discouraged, since in the future, these may be 
    49     totally replaced by paint/bgPaint 
    49     totally replaced by paint/bgPaint 
    50     (there are some operations and special cases, for which a direct access to 
    50     (there are some operations and special cases, for which a direct access to 
    51      fg/bg makes sense)
    51      fg/bg makes sense)
    52 
    52 
    53     Instance variables:
    53     [Instance variables:]
    54 
    54 
    55 	device          <Device>        the device this drawable is on
    55         device          <Device>        the device this drawable is on
    56 	drawableId      <SmallInteger>  my drawableId on the device
    56         drawableId      <SmallInteger>  my drawableId on the device
    57 	gcId            <SmallInteger>  my gcs ID on the device
    57         gcId            <SmallInteger>  my gcs ID on the device
    58 	realized        <Boolean>       true if visible (i.e. mapped)
    58         realized        <Boolean>       true if visible (i.e. mapped)
    59 					- for bit/pixmaps this is always true
    59                                         - for bit/pixmaps this is always true
    60 
    60 
    61 	deviceFont      <Font>          the actual font, currently set in the device
    61         deviceFont      <Font>          the actual font, currently set in the device
    62 	foreground      <Color>         the device foreground color used for drawing
    62         foreground      <Color>         the device foreground color used for drawing
    63 	background      <Color>         the device background color used for drawing
    63         background      <Color>         the device background color used for drawing
       
    64 
       
    65     [see also:]
       
    66         DeviceWorkstation
       
    67         Color Font Cursor
    64 "
    68 "
    65 ! !
    69 ! !
    66 
    70 
    67 !DeviceDrawable class methodsFor:'initialization'!
    71 !DeviceDrawable class methodsFor:'initialization'!
    68 
    72 
  3011 ! !
  3015 ! !
  3012 
  3016 
  3013 !DeviceDrawable class methodsFor:'documentation'!
  3017 !DeviceDrawable class methodsFor:'documentation'!
  3014 
  3018 
  3015 version
  3019 version
  3016     ^ '$Header: /cvs/stx/stx/libview/Attic/DevDraw.st,v 1.42 1996-04-18 14:49:53 cg Exp $'
  3020     ^ '$Header: /cvs/stx/stx/libview/Attic/DevDraw.st,v 1.43 1996-04-23 20:11:01 cg Exp $'
  3017 ! !
  3021 ! !
  3018 DeviceDrawable initialize!
  3022 DeviceDrawable initialize!