UIPainter.st
changeset 1953 3b5022bccca4
parent 1950 aaf6499564ba
child 1954 1344ec1f99eb
equal deleted inserted replaced
1952:73a141744891 1953:3b5022bccca4
  4751 
  4751 
  4752 ! !
  4752 ! !
  4753 
  4753 
  4754 !UIPainter::TreeView methodsFor:'drag & drop'!
  4754 !UIPainter::TreeView methodsFor:'drag & drop'!
  4755 
  4755 
  4756 canDrop:anObjectOrCollection
  4756 canDrop:aCollectionOfDropObjects
  4757     "can drop ? delegate to canvas"
  4757     "can drop ? -> delegate to canvas"
  4758 
  4758 
  4759     ^ self canvas canDrop:anObjectOrCollection
  4759     ^ self canvas canDrop:aCollectionOfDropObjects
  4760 !
  4760 !
  4761 
  4761 
  4762 drop:anObjectOrCollection at:aPoint
  4762 drop:aCollectionOfDropObjects at:aPoint
  4763     "drop objects ? delegate to canvas"
  4763     "drop objects -> delegate to canvas"
  4764 
  4764 
  4765     self canvas drop:anObjectOrCollection at:aPoint
  4765     self canvas drop:aCollectionOfDropObjects at:aPoint
  4766 ! !
  4766 ! !
  4767 
  4767 
  4768 !UIPainter::TreeView methodsFor:'enumerating'!
  4768 !UIPainter::TreeView methodsFor:'enumerating'!
  4769 
  4769 
  4770 allItemsDo:aOneArgBlock
  4770 allItemsDo:aOneArgBlock