summaryrefslogtreecommitdiffstats
path: root/lib/clipboard/include/clipboard/clipboard.h
blob: dcee2eae4b832515f05cdecb5ba2fc5c66c4b3f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
	This file is part of Warzone 2100.
	Copyright (C) 2008  Freddie Witherden
	Copyright (C) 2008-2009  Warzone Resurrection Project

	Warzone 2100 is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	Warzone 2100 is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with Warzone 2100; if not, write to the Free Software
	Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef CLIPBOARD_H_
#define CLIPBOARD_H_

#include <stdbool.h>

#ifdef __cplusplus
    extern "C" {
#endif

/**
 * Returns a copy of the text in the systems clipboard. Should the clipboard be
 * empty, or populated with non-textual data NULL is returned. The character set
 * of the returned is guaranteed to be UTF-8.
 *
 * It remains the responsibility of the caller to free() the string when
 * finished with it.
 *
 * @return The textual contents of the clipboard (if any), otherwise NULL.
 */
char *widgetGetClipboardText(void);

/**
 * Attempts to set the contents of the systems clipboard to text. The character
 * set of text must be UTF-8.
 *
 * @param text  The UTF-8 text to set the clipboard to.
 * @return True if the contents were successfully set, false otherwise.
 */
bool widgetSetClipboardText(const char *text);

#ifdef __cplusplus
}
#endif

#endif /*CLIPBOARD_H_*/