VisualPart.st
changeset 365 47e0d48fd769
parent 323 ee2f4da361a6
child 962 e6ccfc7fb22e
equal deleted inserted replaced
364:bacd91f54052 365:47e0d48fd769
     3 	classVariableNames:''
     3 	classVariableNames:''
     4 	poolDictionaries:''
     4 	poolDictionaries:''
     5 	category:'Graphics-Display Objects'
     5 	category:'Graphics-Display Objects'
     6 !
     6 !
     7 
     7 
     8 !VisualPart  class methodsFor:'documentation'!
     8 !VisualPart class methodsFor:'documentation'!
     9 
     9 
    10 documentation
    10 documentation
    11 "
    11 "
    12     abstract superclass for all kinds of visual components, which
    12     abstract superclass for all kinds of visual components, which
    13     are containers for some other component.
    13     are containers for some other component.
    15     ST-80 compatibility - to provide a home for ported PD classes,
    15     ST-80 compatibility - to provide a home for ported PD classes,
    16     which depend on the VisualPart hierarchy.
    16     which depend on the VisualPart hierarchy.
    17 
    17 
    18     Notice: 
    18     Notice: 
    19         this class was implemented using protocol information
    19         this class was implemented using protocol information
    20         from alpha testers and from the Hopkins/Horan book.
    20         from alpha testers, from reading PD programs and 
       
    21         from the Hopkins/Horan book.
    21         - it may not be complete or compatible to the corresponding ST-80 class. 
    22         - it may not be complete or compatible to the corresponding ST-80 class. 
    22         If you encounter any incompatibilities, please forward a note 
    23         If you encounter any incompatibilities, please forward a note 
    23         describing the incompatibility verbal (i.e. no code) to the ST/X team.
    24         describing the incompatibility verbal (i.e. no code) to the ST/X team.
    24         This is still being constructed - not yet finished.
    25         This is still being constructed - not yet finished.
    25 
    26 
   137     ^ container windowGroup
   138     ^ container windowGroup
   138 
   139 
   139     "Created: 5.6.1996 / 00:49:19 / cg"
   140     "Created: 5.6.1996 / 00:49:19 / cg"
   140 ! !
   141 ! !
   141 
   142 
   142 !VisualPart  class methodsFor:'documentation'!
   143 !VisualPart class methodsFor:'documentation'!
   143 
   144 
   144 version
   145 version
   145     ^ '$Header: /cvs/stx/stx/libview2/VisualPart.st,v 1.6 1996-07-22 09:02:16 cg Exp $'
   146     ^ '$Header: /cvs/stx/stx/libview2/VisualPart.st,v 1.7 1997-01-14 17:02:19 cg Exp $'
   146 ! !
   147 ! !