DropSource.st
changeset 2409 0629f9c77e8e
parent 2132 93a361227c64
equal deleted inserted replaced
2408:85c87339c864 2409:0629f9c77e8e
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     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 
       
    13 
       
    14 "{ Package: 'stx:libview2' }"
    12 "{ Package: 'stx:libview2' }"
    15 
    13 
    16 Object subclass:#DropSource
    14 Object subclass:#DropSource
    17 	instanceVariableNames:'receiver argument dropObjectSelector displayObjectSelector
    15 	instanceVariableNames:'receiver argument dropObjectSelector displayObjectSelector
    18 		startDragSelector dropFeedBackSelector'
    16 		startDragSelector dropFeedBackSelector'
   252     ].    
   250     ].    
   253 
   251 
   254     "/
   252     "/
   255     "/ the default
   253     "/ the default
   256     "/
   254     "/
   257     DragAndDropManager startDragFrom:aView dropSource:self
   255     ^ DragAndDropManager startDragFrom:aView dropSource:self
   258 ! !
   256 ! !
   259 
   257 
   260 !DropSource methodsFor:'instance creation'!
   258 !DropSource methodsFor:'instance creation'!
   261 
   259 
   262 receiver:aReceiver argument:anArgument dropObjectSelector:s1 displayObjectSelector:s2 dropFeedBackSelector:s3
   260 receiver:aReceiver argument:anArgument dropObjectSelector:s1 displayObjectSelector:s2 dropFeedBackSelector:s3
   290 ! !
   288 ! !
   291 
   289 
   292 !DropSource class methodsFor:'documentation'!
   290 !DropSource class methodsFor:'documentation'!
   293 
   291 
   294 version
   292 version
   295     ^ '$Header: /cvs/stx/stx/libview2/DropSource.st,v 1.6 2006-04-11 17:47:06 stefan Exp $'
   293     ^ '$Header: /cvs/stx/stx/libview2/DropSource.st,v 1.7 2008-03-20 12:17:56 ca Exp $'
   296 ! !
   294 ! !