readme.txt 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. DragDropDemo
  2. This application demonstrates how to drag and drop text, files, URLs and
  3. bitmaps. Both drop target and drop source operations are demonstrated.
  4. In addition to basic drag/drop operations, advanced features such as drag
  5. images, custom cursors, clipboard operations and optimized move are
  6. demonstrated.
  7. In addition to the main unit, the demo consists of the following units:
  8. 1) DropFile unit.
  9. This unit demonstrates how to drag and drop files using the following
  10. components:
  11. - TDropFileSource
  12. - TDropFileTarget
  13. - TDropDummy
  14. In addition to basic drag/drop operations, the unit demonstrates:
  15. - Custom drag cursors.
  16. - Drag images.
  17. - Clipboard copy/paste.
  18. - "Delete on paste".
  19. - "Optimized move".
  20. - Providing feedback over controls which aren't drop targets.
  21. 2) DropText unit.
  22. This unit demonstrates how to drag and drop text using the following components:
  23. - TDropTextSource
  24. - TDropTextTarget
  25. - TDropDummy
  26. In addition to basic drag/drop operations, the unit demonstrates:
  27. - Custom drag cursors.
  28. - Copying data onto the clipboard.
  29. - Providing feedback over controls which aren't drop targets.
  30. 3) DropURL unit.
  31. This unit demonstrates how to drag and drop URLs and bitmaps using the following
  32. components:
  33. - TDropURLSource
  34. - TDropURLTarget
  35. - TDropBMPSource
  36. - TDropBMPTarget
  37. - TDropDummy
  38. In addition to basic drag/drop operations, the unit demonstrates:
  39. - Custom drag cursors.
  40. - Dynamic drag images.
  41. - Clipboard copy/paste.
  42. - "Delete on paste".
  43. - Providing feedback over controls which aren't drop targets.