SDL_clipboard.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /*
  2. Simple DirectMedia Layer
  3. Copyright (C) 1997-2023 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. * \since This function is available since SDL 2.0.0.
  40. *
  41. * \sa SDL_GetClipboardText
  42. * \sa SDL_HasClipboardText
  43. */
  44. extern DECLSPEC int SDLCALL SDL_SetClipboardText(const char *text);
  45. /**
  46. * Get UTF-8 text from the clipboard, which must be freed with SDL_free().
  47. *
  48. * This functions returns empty string if there was not enough memory left for
  49. * a copy of the clipboard's content.
  50. *
  51. * \returns the clipboard text on success or an empty string on failure; call
  52. * SDL_GetError() for more information. Caller must call SDL_free()
  53. * on the returned pointer when done with it (even if there was an
  54. * error).
  55. *
  56. * \since This function is available since SDL 2.0.0.
  57. *
  58. * \sa SDL_HasClipboardText
  59. * \sa SDL_SetClipboardText
  60. */
  61. extern DECLSPEC char * SDLCALL SDL_GetClipboardText(void);
  62. /**
  63. * Query whether the clipboard exists and contains a non-empty text string.
  64. *
  65. * \returns SDL_TRUE if the clipboard has text, or SDL_FALSE if it does not.
  66. *
  67. * \since This function is available since SDL 2.0.0.
  68. *
  69. * \sa SDL_GetClipboardText
  70. * \sa SDL_SetClipboardText
  71. */
  72. extern DECLSPEC SDL_bool SDLCALL SDL_HasClipboardText(void);
  73. /**
  74. * Put UTF-8 text into the primary selection.
  75. *
  76. * \param text the text to store in the primary selection
  77. * \returns 0 on success or a negative error code on failure; call
  78. * SDL_GetError() for more information.
  79. *
  80. * \since This function is available since SDL 2.26.0.
  81. *
  82. * \sa SDL_GetPrimarySelectionText
  83. * \sa SDL_HasPrimarySelectionText
  84. */
  85. extern DECLSPEC int SDLCALL SDL_SetPrimarySelectionText(const char *text);
  86. /**
  87. * Get UTF-8 text from the primary selection, which must be freed with
  88. * SDL_free().
  89. *
  90. * This functions returns empty string if there was not enough memory left for
  91. * a copy of the primary selection's content.
  92. *
  93. * \returns the primary selection text on success or an empty string on
  94. * failure; call SDL_GetError() for more information. Caller must
  95. * call SDL_free() on the returned pointer when done with it (even if
  96. * there was an error).
  97. *
  98. * \since This function is available since SDL 2.26.0.
  99. *
  100. * \sa SDL_HasPrimarySelectionText
  101. * \sa SDL_SetPrimarySelectionText
  102. */
  103. extern DECLSPEC char * SDLCALL SDL_GetPrimarySelectionText(void);
  104. /**
  105. * Query whether the primary selection exists and contains a non-empty text
  106. * string.
  107. *
  108. * \returns SDL_TRUE if the primary selection has text, or SDL_FALSE if it
  109. * does not.
  110. *
  111. * \since This function is available since SDL 2.26.0.
  112. *
  113. * \sa SDL_GetPrimarySelectionText
  114. * \sa SDL_SetPrimarySelectionText
  115. */
  116. extern DECLSPEC SDL_bool SDLCALL SDL_HasPrimarySelectionText(void);
  117. /* Ends C function definitions when using C++ */
  118. #ifdef __cplusplus
  119. }
  120. #endif
  121. #include "close_code.h"
  122. #endif /* SDL_clipboard_h_ */
  123. /* vi: set ts=4 sw=4 expandtab: */