Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

juce_FileDragAndDropTarget.h 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. /**
  21. Components derived from this class can have files dropped onto them by an external application.
  22. @see DragAndDropContainer
  23. @tags{GUI}
  24. */
  25. class JUCE_API FileDragAndDropTarget
  26. {
  27. public:
  28. /** Destructor. */
  29. virtual ~FileDragAndDropTarget() = default;
  30. /** Callback to check whether this target is interested in the set of files being offered.
  31. Note that this will be called repeatedly when the user is dragging the mouse around over your
  32. component, so don't do anything time-consuming in here, like opening the files to have a look
  33. inside them!
  34. @param files the set of (absolute) pathnames of the files that the user is dragging
  35. @returns true if this component wants to receive the other callbacks regarding this
  36. type of object; if it returns false, no other callbacks will be made.
  37. */
  38. virtual bool isInterestedInFileDrag (const StringArray& files) = 0;
  39. /** Callback to indicate that some files are being dragged over this component.
  40. This gets called when the user moves the mouse into this component while dragging.
  41. Use this callback as a trigger to make your component repaint itself to give the
  42. user feedback about whether the files can be dropped here or not.
  43. @param files the set of (absolute) pathnames of the files that the user is dragging
  44. @param x the mouse x position, relative to this component
  45. @param y the mouse y position, relative to this component
  46. */
  47. virtual void fileDragEnter (const StringArray& files, int x, int y);
  48. /** Callback to indicate that the user is dragging some files over this component.
  49. This gets called when the user moves the mouse over this component while dragging.
  50. Normally overriding itemDragEnter() and itemDragExit() are enough, but
  51. this lets you know what happens in-between.
  52. @param files the set of (absolute) pathnames of the files that the user is dragging
  53. @param x the mouse x position, relative to this component
  54. @param y the mouse y position, relative to this component
  55. */
  56. virtual void fileDragMove (const StringArray& files, int x, int y);
  57. /** Callback to indicate that the mouse has moved away from this component.
  58. This gets called when the user moves the mouse out of this component while dragging
  59. the files.
  60. If you've used fileDragEnter() to repaint your component and give feedback, use this
  61. as a signal to repaint it in its normal state.
  62. @param files the set of (absolute) pathnames of the files that the user is dragging
  63. */
  64. virtual void fileDragExit (const StringArray& files);
  65. /** Callback to indicate that the user has dropped the files onto this component.
  66. When the user drops the files, this get called, and you can use the files in whatever
  67. way is appropriate.
  68. Note that after this is called, the fileDragExit method may not be called, so you should
  69. clean up in here if there's anything you need to do when the drag finishes.
  70. @param files the set of (absolute) pathnames of the files that the user is dragging
  71. @param x the mouse x position, relative to this component
  72. @param y the mouse y position, relative to this component
  73. */
  74. virtual void filesDropped (const StringArray& files, int x, int y) = 0;
  75. };
  76. } // namespace juce