DropSource.st
changeset 1679 cbff43d2fe2a
parent 873 c5cd8f56dc6e
child 1731 643fd1153e5d
equal deleted inserted replaced
1678:9944d3b5d5bf 1679:cbff43d2fe2a
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
    12 
    13 
    13 
       
    14 "{ Package: 'stx:libview2' }"
       
    15 
    14 Object subclass:#DropSource
    16 Object subclass:#DropSource
    15 	instanceVariableNames:'receiver argument feedBackSelector dropObjectSelector
    17 	instanceVariableNames:'receiver argument feedBackSelector dropObjectSelector
    16 		displayObjectSelector startDragSelector'
    18 		displayObjectSelector startDragSelector'
    17 	classVariableNames:''
    19 	classVariableNames:''
    18 	poolDictionaries:''
    20 	poolDictionaries:''
   143 !
   145 !
   144 
   146 
   145 receiver
   147 receiver
   146     "return the value of the instance variable 'receiver' (automatically generated)"
   148     "return the value of the instance variable 'receiver' (automatically generated)"
   147 
   149 
   148     ^ receiver!
   150     ^ receiver
       
   151 !
   149 
   152 
   150 receiver:something
   153 receiver:something
   151     "set the value of the instance variable 'receiver' (automatically generated)"
   154     "set the value of the instance variable 'receiver' (automatically generated)"
   152 
   155 
   153     receiver := something.! !
   156     receiver := something.
   154 
   157 ! !
   155 !DropSource methodsFor:'accessing selectors'!
   158 
       
   159 !DropSource methodsFor:'accessing-selectors'!
   156 
   160 
   157 displayObjectSelector
   161 displayObjectSelector
   158     "selector to access the displayObjects; a sequence of String, Text, Icon or Image,
   162     "selector to access the displayObjects; a sequence of String, Text, Icon or Image,
   159      LabelAndIcon ...
   163      LabelAndIcon ...
   160      If an argument is required, the argument is the dropSource (self)
   164      If an argument is required, the argument is the dropSource (self)
   264 ! !
   268 ! !
   265 
   269 
   266 !DropSource class methodsFor:'documentation'!
   270 !DropSource class methodsFor:'documentation'!
   267 
   271 
   268 version
   272 version
   269     ^ '$Header: /cvs/stx/stx/libview2/DropSource.st,v 1.1 1998-03-30 11:59:53 ca Exp $'
   273     ^ '$Header: /cvs/stx/stx/libview2/DropSource.st,v 1.2 2002-12-10 11:03:11 cg Exp $'
   270 ! !
   274 ! !