mirror of
https://github.com/glfw/glfw.git
synced 2024-11-10 00:51:47 +00:00
Clarify documentation of glfwGetClipboardString
The reference documentation for glfwGetClipboardString did not link to GLFW_FORMAT_UNAVAILABLE. Fixes #605.
This commit is contained in:
parent
7c6a8775eb
commit
0b65053ffd
@ -544,9 +544,14 @@ converted to one, you can retrieve it with @ref glfwGetClipboardString. See the
|
|||||||
reference documentation for the lifetime of the returned string.
|
reference documentation for the lifetime of the returned string.
|
||||||
|
|
||||||
@code
|
@code
|
||||||
const char* clipboard = glfwGetClipboardString(window);
|
const char* text = glfwGetClipboardString(window);
|
||||||
|
if (text)
|
||||||
|
insert_text(text);
|
||||||
@endcode
|
@endcode
|
||||||
|
|
||||||
|
If the clipboard is empty or if its contents could not be converted, `NULL` is
|
||||||
|
returned.
|
||||||
|
|
||||||
The contents of the system clipboard can be set to a UTF-8 encoded string with
|
The contents of the system clipboard can be set to a UTF-8 encoded string with
|
||||||
@ref glfwSetClipboardString.
|
@ref glfwSetClipboardString.
|
||||||
|
|
||||||
|
@ -3079,7 +3079,9 @@ GLFWAPI void glfwSetClipboardString(GLFWwindow* window, const char* string);
|
|||||||
/*! @brief Returns the contents of the clipboard as a string.
|
/*! @brief Returns the contents of the clipboard as a string.
|
||||||
*
|
*
|
||||||
* This function returns the contents of the system clipboard, if it contains
|
* This function returns the contents of the system clipboard, if it contains
|
||||||
* or is convertible to a UTF-8 encoded string.
|
* or is convertible to a UTF-8 encoded string. If the clipboard is empty of
|
||||||
|
* if its contents cannot be converted, `NULL` is returned and a @ref
|
||||||
|
* GLFW_FORMAT_UNAVAILABLE error is generated.
|
||||||
*
|
*
|
||||||
* @param[in] window The window that will request the clipboard contents.
|
* @param[in] window The window that will request the clipboard contents.
|
||||||
* @return The contents of the clipboard as a UTF-8 encoded string, or `NULL`
|
* @return The contents of the clipboard as a UTF-8 encoded string, or `NULL`
|
||||||
|
Loading…
Reference in New Issue
Block a user