juce_SystemClipboard.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2013 - Raw Material Software Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_SYSTEMCLIPBOARD_H_INCLUDED
  18. #define JUCE_SYSTEMCLIPBOARD_H_INCLUDED
  19. //==============================================================================
  20. /**
  21. Handles reading/writing to the system's clipboard.
  22. */
  23. class JUCE_API SystemClipboard
  24. {
  25. public:
  26. /** Copies a string of text onto the clipboard */
  27. static void copyTextToClipboard (const String& text);
  28. /** Gets the current clipboard's contents.
  29. Obviously this might have come from another app, so could contain
  30. anything..
  31. */
  32. static String getTextFromClipboard();
  33. };
  34. #endif // JUCE_SYSTEMCLIPBOARD_H_INCLUDED