SDL_clipboard.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2021 Sam Lantinga <slouken@libsdl.org>
  4. This software is provided 'as-is', without any express or implied
  5. warranty. In no event will the authors be held liable for any damages
  6. arising from the use of this software.
  7. Permission is granted to anyone to use this software for any purpose,
  8. including commercial applications, and to alter it and redistribute it
  9. freely, subject to the following restrictions:
  10. 1. The origin of this software must not be misrepresented; you must not
  11. claim that you wrote the original software. If you use this software
  12. in a product, an acknowledgment in the product documentation would be
  13. appreciated but is not required.
  14. 2. Altered source versions must be plainly marked as such, and must not be
  15. misrepresented as being the original software.
  16. 3. This notice may not be removed or altered from any source distribution.
  17. */
  18. /**
  19. * \file SDL_clipboard.h
  20. *
  21. * Include file for SDL clipboard handling
  22. */
  23. #ifndef SDL_clipboard_h_
  24. #define SDL_clipboard_h_
  25. #include "SDL_stdinc.h"
  26. #include "begin_code.h"
  27. /* Set up for C function definitions, even when using C++ */
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31. /* Function prototypes */
  32. /**
  33. * Put UTF-8 text into the clipboard.
  34. *
  35. * \param text the text to store in the clipboard
  36. * \returns 0 on success or a negative error code on failure; call
  37. * SDL_GetError() for more information.
  38. *
  39. * \sa SDL_GetClipboardText
  40. * \sa SDL_HasClipboardText
  41. */
  42. extern DECLSPEC int SDLCALL SDL_SetClipboardText(const char *text);
  43. /**
  44. * Get UTF-8 text from the clipboard, which must be freed with SDL_free().
  45. *
  46. * This functions returns NULL if there was not enough memory left for a copy
  47. * of the clipboard's content.
  48. *
  49. * \returns the clipboard text on success or NULL on failure; call
  50. * SDL_GetError() for more information. Caller must call SDL_free()
  51. * on the returned pointer when done with it.
  52. *
  53. * \sa SDL_HasClipboardText
  54. * \sa SDL_SetClipboardText
  55. */
  56. extern DECLSPEC char * SDLCALL SDL_GetClipboardText(void);
  57. /**
  58. * Query whether the clipboard exists and contains a non-empty text string.
  59. *
  60. * \returns SDL_TRUE if the clipboard has text, or SDL_FALSE if it does not.
  61. *
  62. * \since This function is available since SDL 2.0.0.
  63. *
  64. * \sa SDL_GetClipboardText
  65. * \sa SDL_SetClipboardText
  66. */
  67. extern DECLSPEC SDL_bool SDLCALL SDL_HasClipboardText(void);
  68. /* Ends C function definitions when using C++ */
  69. #ifdef __cplusplus
  70. }
  71. #endif
  72. #include "close_code.h"
  73. #endif /* SDL_clipboard_h_ */
  74. /* vi: set ts=4 sw=4 expandtab: */