zenilib  0.5.3.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
SDL_clipboard.c File Reference
#include "SDL_config.h"
#include "SDL_clipboard.h"
#include "SDL_sysvideo.h"

Go to the source code of this file.

Functions

char * SDL_GetClipboardText (void)
 Get UTF-8 text from the clipboard, which must be freed with SDL_free() More...
 
SDL_bool SDL_HasClipboardText (void)
 Returns a flag indicating whether the clipboard exists and contains a text string that is non-empty. More...
 
int SDL_SetClipboardText (const char *text)
 Put UTF-8 text into the clipboard. More...
 

Function Documentation

char* SDL_GetClipboardText ( void  )

Get UTF-8 text from the clipboard, which must be freed with SDL_free()

See Also
SDL_SetClipboardText()

Definition at line 45 of file SDL_clipboard.c.

References _this, SDL_VideoDevice::clipboard_text, SDL_VideoDevice::GetClipboardText, SDL_GetVideoDevice(), and SDL_strdup().

Referenced by SDLTest_CommonEvent().

SDL_bool SDL_HasClipboardText ( void  )

Returns a flag indicating whether the clipboard exists and contains a text string that is non-empty.

See Also
SDL_GetClipboardText()

Definition at line 61 of file SDL_clipboard.c.

References _this, SDL_VideoDevice::clipboard_text, SDL_VideoDevice::HasClipboardText, SDL_FALSE, SDL_GetVideoDevice(), and SDL_TRUE.

int SDL_SetClipboardText ( const char *  text)

Put UTF-8 text into the clipboard.

See Also
SDL_GetClipboardText()

Definition at line 28 of file SDL_clipboard.c.

References _this, SDL_VideoDevice::clipboard_text, SDL_free(), SDL_GetVideoDevice(), SDL_strdup(), and SDL_VideoDevice::SetClipboardText.

Referenced by SDLTest_CommonEvent().