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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
/* Public Domain Curses */
#include "pdcx11.h"
RCSID("$Id: pdcclip.c,v 1.35 2008/07/14 04:24:52 wmcbrine Exp $")
#include <stdlib.h>
/*man-start**************************************************************
Name: clipboard
Synopsis:
int PDC_getclipboard(char **contents, long *length);
int PDC_setclipboard(const char *contents, long length);
int PDC_freeclipboard(char *contents);
int PDC_clearclipboard(void);
Description:
PDC_getclipboard() gets the textual contents of the system's
clipboard. This function returns the contents of the clipboard
in the contents argument. It is the responsibilitiy of the
caller to free the memory returned, via PDC_freeclipboard().
The length of the clipboard contents is returned in the length
argument.
PDC_setclipboard copies the supplied text into the system's
clipboard, emptying the clipboard prior to the copy.
PDC_clearclipboard() clears the internal clipboard.
Return Values:
indicator of success/failure of call.
PDC_CLIP_SUCCESS the call was successful
PDC_CLIP_MEMORY_ERROR unable to allocate sufficient memory for
the clipboard contents
PDC_CLIP_EMPTY the clipboard contains no text
PDC_CLIP_ACCESS_ERROR no clipboard support
Portability X/Open BSD SYS V
PDC_getclipboard - - -
PDC_setclipboard - - -
PDC_freeclipboard - - -
PDC_clearclipboard - - -
**man-end****************************************************************/
int PDC_getclipboard(char **contents, long *length)
{
#ifdef PDC_WIDE
wchar_t *wcontents;
#endif
int result = 0;
int len;
PDC_LOG(("PDC_getclipboard() - called\n"));
XCursesInstructAndWait(CURSES_GET_SELECTION);
if (XC_read_socket(xc_display_sock, &result, sizeof(int)) < 0)
XCursesExitCursesProcess(5, "exiting from PDC_getclipboard");
if (result == PDC_CLIP_SUCCESS)
{
if (XC_read_socket(xc_display_sock, &len, sizeof(int)) < 0)
XCursesExitCursesProcess(5, "exiting from PDC_getclipboard");
#ifdef PDC_WIDE
wcontents = malloc((len + 1) * sizeof(wchar_t));
*contents = malloc(len * 3 + 1);
if (!wcontents || !*contents)
#else
*contents = malloc(len + 1);
if (!*contents)
#endif
XCursesExitCursesProcess(6, "exiting from PDC_getclipboard - "
"synchronization error");
if (len)
{
if (XC_read_socket(xc_display_sock,
#ifdef PDC_WIDE
wcontents, len * sizeof(wchar_t)) < 0)
#else
*contents, len) < 0)
#endif
XCursesExitCursesProcess(5, "exiting from PDC_getclipboard");
}
#ifdef PDC_WIDE
wcontents[len] = 0;
len = PDC_wcstombs(*contents, wcontents, len * 3);
free(wcontents);
#endif
(*contents)[len] = '\0';
*length = len;
}
return result;
}
int PDC_setclipboard(const char *contents, long length)
{
#ifdef PDC_WIDE
wchar_t *wcontents;
#endif
int rc;
PDC_LOG(("PDC_setclipboard() - called\n"));
#ifdef PDC_WIDE
wcontents = malloc((length + 1) * sizeof(wchar_t));
if (!wcontents)
return PDC_CLIP_MEMORY_ERROR;
length = PDC_mbstowcs(wcontents, contents, length);
#endif
XCursesInstruct(CURSES_SET_SELECTION);
/* Write, then wait for X to do its stuff; expect return code. */
if (XC_write_socket(xc_display_sock, &length, sizeof(long)) >= 0)
{
if (XC_write_socket(xc_display_sock,
#ifdef PDC_WIDE
wcontents, length * sizeof(wchar_t)) >= 0)
{
free(wcontents);
#else
contents, length) >= 0)
{
#endif
if (XC_read_socket(xc_display_sock, &rc, sizeof(int)) >= 0)
return rc;
}
}
XCursesExitCursesProcess(5, "exiting from PDC_setclipboard");
return PDC_CLIP_ACCESS_ERROR; /* not reached */
}
int PDC_freeclipboard(char *contents)
{
PDC_LOG(("PDC_freeclipboard() - called\n"));
free(contents);
return PDC_CLIP_SUCCESS;
}
int PDC_clearclipboard(void)
{
int rc;
long len = 0;
PDC_LOG(("PDC_clearclipboard() - called\n"));
XCursesInstruct(CURSES_CLEAR_SELECTION);
/* Write, then wait for X to do its stuff; expect return code. */
if (XC_write_socket(xc_display_sock, &len, sizeof(long)) >= 0)
if (XC_read_socket(xc_display_sock, &rc, sizeof(int)) >= 0)
return rc;
XCursesExitCursesProcess(5, "exiting from PDC_clearclipboard");
return PDC_CLIP_ACCESS_ERROR; /* not reached */
}
|