Mercurial > emacs
annotate src/w16select.c @ 108137:4e52ea307c2d
Regenerate configure.
| author | Glenn Morris <rgm@gnu.org> |
|---|---|
| date | Tue, 27 Apr 2010 01:11:11 -0700 |
| parents | 84b961690802 |
| children | a5fcd78ad3eb |
| rev | line source |
|---|---|
|
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
1 /* 16-bit Windows Selection processing for emacs on MS-Windows |
|
64770
a0d1312ede66
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
2 Copyright (C) 1996, 1997, 2001, 2002, 2003, 2004, |
| 106815 | 3 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
| 45333 | 4 |
| 17451 | 5 This file is part of GNU Emacs. |
| 6 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
| 17451 | 8 it under the terms of the GNU General Public License as published by |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
|
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
10 (at your option) any later version. |
| 17451 | 11 |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
91327
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 17451 | 19 |
| 20 /* These functions work by using WinOldAp interface. WinOldAp | |
| 21 (WINOLDAP.MOD) is a Microsoft Windows extension supporting | |
| 22 "old" (character-mode) application access to Dynamic Data Exchange, | |
| 23 menus, and the Windows clipboard. */ | |
| 24 | |
| 25 /* Written by Dale P. Smith <dpsm@en.com> */ | |
|
107733
84b961690802
Remove support for DJGPP v1.x (bug#5813).
Eli Zaretskii <eliz@gnu.org>
parents:
106815
diff
changeset
|
26 /* Adapted to DJGPP by Eli Zaretskii <eliz@gnu.org> */ |
| 17451 | 27 |
| 28 #ifdef MSDOS | |
| 29 | |
| 30 #include <config.h> | |
| 31 #include <string.h> | |
| 32 #include <dpmi.h> | |
| 33 #include <go32.h> | |
| 34 #include <sys/farptr.h> | |
|
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100951
diff
changeset
|
35 #include <setjmp.h> |
| 17451 | 36 #include "lisp.h" |
| 37 #include "dispextern.h" /* frame.h seems to want this */ | |
| 38 #include "frame.h" /* Need this to get the X window of selected_frame */ | |
| 39 #include "blockinput.h" | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
40 #include "buffer.h" |
|
88351
aac41b50c875
Include "character.h" instead of "charset.h".
Kenichi Handa <handa@m17n.org>
parents:
43475
diff
changeset
|
41 #include "character.h" |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
42 #include "coding.h" |
|
45988
37913830a881
Include composite.h
Juanma Barranquero <lekktu@gmail.com>
parents:
45982
diff
changeset
|
43 #include "composite.h" |
| 17451 | 44 |
| 45 /* If ever some function outside this file will need to call any | |
| 46 clipboard-related function, the following prototypes and constants | |
| 47 should be put on a header file. Right now, nobody else uses them. */ | |
| 48 | |
| 49 #define CF_TEXT 0x01 | |
| 50 #define CF_BITMAP 0x02 | |
| 51 #define CF_METAFILE 0x03 | |
| 52 #define CF_SYLK 0x04 | |
| 53 #define CF_DIF 0x05 | |
| 54 #define CF_TIFF 0x06 | |
| 55 #define CF_OEMTEXT 0x07 | |
| 56 #define CF_DIBBITMAP 0x08 | |
| 57 #define CF_WINWRITE 0x80 | |
| 58 #define CF_DSPTEXT 0x81 | |
| 59 #define CF_DSPBITMAP 0x82 | |
| 60 | |
| 61 unsigned identify_winoldap_version (void); | |
| 62 unsigned open_clipboard (void); | |
| 63 unsigned empty_clipboard (void); | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
64 unsigned set_clipboard_data (unsigned, void *, unsigned, int); |
| 17451 | 65 unsigned get_clipboard_data_size (unsigned); |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
66 unsigned get_clipboard_data (unsigned, void *, unsigned, int); |
| 17451 | 67 unsigned close_clipboard (void); |
| 68 unsigned clipboard_compact (unsigned); | |
| 69 | |
| 70 Lisp_Object QCLIPBOARD, QPRIMARY; | |
| 71 | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
72 /* Coding system for communicating with other Windows programs via the |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
73 clipboard. */ |
|
22904
37738fa8626a
(Fw16_set_clipboard_data, Fw16_get_clipboard_data, syms_of_win16select):
Eli Zaretskii <eliz@gnu.org>
parents:
22749
diff
changeset
|
74 static Lisp_Object Vselection_coding_system; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
75 |
|
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
76 /* Coding system for the next communicating with other Windows programs. */ |
|
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
77 static Lisp_Object Vnext_selection_coding_system; |
|
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
78 |
| 17451 | 79 /* The segment address and the size of the buffer in low |
| 80 memory used to move data between us and WinOldAp module. */ | |
| 81 static struct { | |
| 82 unsigned long size; | |
| 83 unsigned short rm_segment; | |
| 84 } clipboard_xfer_buf_info; | |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
85 |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
86 /* The last text we put into the clipboard. This is used to prevent |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
87 passing back our own text from the clipboard, instead of using the |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
88 kill ring. The former is undesirable because the clipboard data |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
89 could be MULEtilated by inappropriately chosen |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
90 (next-)selection-coding-system. For this reason, we must store the |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
91 text *after* it was encoded/Unix-to-DOS-converted. */ |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
92 static unsigned char *last_clipboard_text; |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
93 |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
94 /* The size of allocated storage for storing the clipboard data. */ |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
95 static size_t clipboard_storage_size; |
| 17451 | 96 |
| 97 /* C functions to access the Windows 3.1x clipboard from DOS apps. | |
| 98 | |
| 99 The information was obtained from the Microsoft Knowledge Base, | |
| 100 article Q67675 and can be found at: | |
| 101 http://www.microsoft.com/kb/developr/win_dk/q67675.htm */ | |
| 102 | |
| 103 /* See also Ralf Brown's Interrupt List. | |
| 104 | |
| 105 I also seem to remember reading about this in Dr. Dobbs Journal a | |
| 106 while ago, but if you knew my memory... :-) | |
| 107 | |
| 108 Dale P. Smith <dpsm@en.com> */ | |
| 109 | |
| 110 /* Return the WinOldAp support version, or 0x1700 if not supported. */ | |
| 111 unsigned | |
| 112 identify_winoldap_version () | |
| 113 { | |
| 114 __dpmi_regs regs; | |
| 115 | |
| 116 /* Calls Int 2Fh/AX=1700h | |
| 117 Return Values AX == 1700H: Clipboard functions not available | |
| 118 <> 1700H: AL = Major version number | |
| 119 AH = Minor version number */ | |
| 120 regs.x.ax = 0x1700; | |
| 121 __dpmi_int(0x2f, ®s); | |
| 122 return regs.x.ax; | |
| 123 } | |
| 124 | |
| 125 /* Open the clipboard, return non-zero if successfull. */ | |
| 126 unsigned | |
| 127 open_clipboard () | |
| 128 { | |
| 129 __dpmi_regs regs; | |
| 130 | |
| 131 /* Is WINOLDAP supported? */ | |
| 132 /* Kludge alert!! If WinOldAp is not supported, we return a 0, | |
| 133 which is the same as ``Clipboard already open''. Currently, | |
| 134 this is taken as an error by all the functions that use | |
| 135 `open_clipboard', but if somebody someday will use that ``open'' | |
| 136 clipboard, they will have interesting time debugging it... */ | |
| 137 if (identify_winoldap_version () == 0x1700) | |
| 138 return 0; | |
| 139 | |
| 140 /* Calls Int 2Fh/AX=1701h | |
| 141 Return Values AX == 0: Clipboard already open | |
| 142 <> 0: Clipboard opened */ | |
| 143 regs.x.ax = 0x1701; | |
| 144 __dpmi_int(0x2f, ®s); | |
| 145 return regs.x.ax; | |
| 146 } | |
| 147 | |
| 148 /* Empty clipboard, return non-zero if successfull. */ | |
| 149 unsigned | |
| 150 empty_clipboard () | |
| 151 { | |
| 152 __dpmi_regs regs; | |
| 45333 | 153 |
| 17451 | 154 /* Calls Int 2Fh/AX=1702h |
| 155 Return Values AX == 0: Error occurred | |
| 156 <> 0: OK, Clipboard emptied */ | |
| 157 regs.x.ax = 0x1702; | |
| 158 __dpmi_int(0x2f, ®s); | |
| 159 return regs.x.ax; | |
| 160 } | |
| 161 | |
| 162 /* Ensure we have a buffer in low memory with enough memory for data | |
| 163 of size WANT_SIZE. Return the linear address of the buffer. */ | |
| 164 static unsigned long | |
| 165 alloc_xfer_buf (want_size) | |
| 166 unsigned want_size; | |
| 167 { | |
| 168 __dpmi_regs regs; | |
| 169 | |
| 170 /* If the usual DJGPP transfer buffer is large enough, use that. */ | |
| 171 if (want_size <= _go32_info_block.size_of_transfer_buffer) | |
| 172 return __tb & 0xfffff; | |
| 173 | |
|
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
174 /* Don't even try to allocate more than 1MB of memory: DOS cannot |
|
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
175 possibly handle that (it will overflow the BX register below). */ |
|
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
176 if (want_size > 0xfffff) |
|
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
177 return 0; |
|
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
178 |
| 17451 | 179 /* Need size rounded up to the nearest paragraph, and in |
| 180 paragraph units (1 paragraph = 16 bytes). */ | |
| 181 clipboard_xfer_buf_info.size = (want_size + 15) >> 4; | |
| 182 | |
| 183 /* The NT DPMI host crashes us if we free DOS memory via the | |
| 184 DPMI service. Work around by calling DOS allocate/free block. */ | |
| 185 regs.h.ah = 0x48; | |
| 186 regs.x.bx = clipboard_xfer_buf_info.size; | |
| 187 __dpmi_int (0x21, ®s); | |
| 188 if (regs.x.flags & 1) | |
| 189 { | |
| 190 clipboard_xfer_buf_info.size = 0; | |
| 191 return 0; | |
| 192 } | |
| 193 | |
| 194 clipboard_xfer_buf_info.rm_segment = regs.x.ax; | |
| 195 return (((int)clipboard_xfer_buf_info.rm_segment) << 4) & 0xfffff; | |
| 196 } | |
| 197 | |
| 198 /* Free our clipboard buffer. We always free it after use, because | |
| 199 keeping it leaves less free conventional memory for subprocesses. | |
| 200 The clipboard buffer tends to be large in size, because for small | |
| 201 clipboard data sizes we use the DJGPP transfer buffer. */ | |
| 202 static void | |
| 203 free_xfer_buf () | |
| 204 { | |
| 205 /* If the size is 0, we used DJGPP transfer buffer, so don't free. */ | |
| 206 if (clipboard_xfer_buf_info.size) | |
| 207 { | |
| 208 __dpmi_regs regs; | |
| 209 | |
| 210 /* The NT DPMI host crashes us if we free DOS memory via | |
| 211 the DPMI service. Work around by calling DOS free block. */ | |
| 212 regs.h.ah = 0x49; | |
| 213 regs.x.es = clipboard_xfer_buf_info.rm_segment; | |
| 214 __dpmi_int (0x21, ®s); | |
| 215 clipboard_xfer_buf_info.size = 0; | |
| 216 } | |
| 217 } | |
| 218 | |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
219 /* Copy data into the clipboard, return zero if successfull. */ |
| 17451 | 220 unsigned |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
221 set_clipboard_data (Format, Data, Size, Raw) |
| 17451 | 222 unsigned Format; |
| 223 void *Data; | |
| 224 unsigned Size; | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
225 int Raw; |
| 17451 | 226 { |
| 227 __dpmi_regs regs; | |
| 228 unsigned truelen; | |
| 229 unsigned long xbuf_addr, buf_offset; | |
| 230 unsigned char *dp = Data, *dstart = dp; | |
| 231 | |
|
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
232 if (Format != CF_OEMTEXT) |
|
30900
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
233 return 3; |
| 17451 | 234 |
| 235 /* need to know final size after '\r' chars are inserted (the | |
|
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
236 standard CF_OEMTEXT clipboard format uses CRLF line endings, |
| 17451 | 237 while Emacs uses just LF internally). */ |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
238 truelen = Size + 1; /* +1 for the terminating null */ |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
239 |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
240 if (!Raw) |
| 17451 | 241 { |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
242 /* avoid using strchr because it recomputes the length everytime */ |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
243 while ((dp = memchr (dp, '\n', Size - (dp - dstart))) != 0) |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
244 { |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
245 truelen++; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
246 dp++; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
247 } |
| 17451 | 248 } |
| 249 | |
| 250 if (clipboard_compact (truelen) < truelen) | |
|
30900
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
251 return 1; |
| 17451 | 252 |
| 253 if ((xbuf_addr = alloc_xfer_buf (truelen)) == 0) | |
|
30900
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
254 return 1; |
| 17451 | 255 |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
256 /* Move the buffer into the low memory, convert LF into CR-LF if needed. */ |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
257 if (Raw) |
|
24251
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
258 { |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
259 dosmemput (Data, Size, xbuf_addr); |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
260 |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
261 /* Terminate with a null, otherwise Windows does strange things |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
262 when the text size is an integral multiple of 32 bytes. */ |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
263 _farpokeb (_dos_ds, xbuf_addr + Size, '\0'); |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
264 } |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
265 else |
| 17451 | 266 { |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
267 dp = Data; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
268 buf_offset = xbuf_addr; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
269 _farsetsel (_dos_ds); |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
270 while (Size--) |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
271 { |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
272 /* Don't allow them to put binary data into the clipboard, since |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
273 it will cause yanked data to be truncated at the first null. */ |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
274 if (*dp == '\0') |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
275 return 2; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
276 if (*dp == '\n') |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
277 _farnspokeb (buf_offset++, '\r'); |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
278 _farnspokeb (buf_offset++, *dp++); |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
279 } |
|
24251
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
280 |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
281 /* Terminate with a null, otherwise Windows does strange things |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
282 when the text size is an integral multiple of 32 bytes. */ |
|
2394581ada26
(set_clipboard_data): Correctly null-terminate the
Eli Zaretskii <eliz@gnu.org>
parents:
24003
diff
changeset
|
283 _farnspokeb (buf_offset, '\0'); |
| 17451 | 284 } |
| 285 | |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
286 /* Stash away the data we are about to put into the clipboard, so we |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
287 could later check inside get_clipboard_data whether the clipboard |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
288 still holds our data. */ |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
289 if (clipboard_storage_size < truelen) |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
290 { |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
291 clipboard_storage_size = truelen + 100; |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
292 last_clipboard_text = |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
293 (char *) xrealloc (last_clipboard_text, clipboard_storage_size); |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
294 } |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
295 if (last_clipboard_text) |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
296 dosmemget (xbuf_addr, truelen, last_clipboard_text); |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
297 |
| 17451 | 298 /* Calls Int 2Fh/AX=1703h with: |
| 299 DX = WinOldAp-Supported Clipboard format | |
| 300 ES:BX = Pointer to data | |
| 301 SI:CX = Size of data in bytes | |
| 302 Return Values AX == 0: Error occurred | |
| 303 <> 0: OK. Data copied into the Clipboard. */ | |
| 304 regs.x.ax = 0x1703; | |
| 305 regs.x.dx = Format; | |
| 306 regs.x.si = truelen >> 16; | |
| 307 regs.x.cx = truelen & 0xffff; | |
| 308 regs.x.es = xbuf_addr >> 4; | |
| 309 regs.x.bx = xbuf_addr & 15; | |
| 310 __dpmi_int(0x2f, ®s); | |
| 311 | |
| 312 free_xfer_buf (); | |
| 313 | |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
314 /* If the above failed, invalidate the local copy of the clipboard. */ |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
315 if (regs.x.ax == 0) |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
316 *last_clipboard_text = '\0'; |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
317 |
|
30900
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
318 /* Zero means success, otherwise (1, 2, or 3) it's an error. */ |
|
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
319 return regs.x.ax > 0 ? 0 : 3; |
| 17451 | 320 } |
| 321 | |
| 322 /* Return the size of the clipboard data of format FORMAT. */ | |
| 323 unsigned | |
| 324 get_clipboard_data_size (Format) | |
| 325 unsigned Format; | |
| 326 { | |
| 327 __dpmi_regs regs; | |
| 328 | |
| 329 /* Calls Int 2Fh/AX=1704h with: | |
| 330 DX = WinOldAp-Supported Clipboard format | |
| 331 Return Values DX:AX == Size of the data in bytes, including any | |
| 332 headers. | |
| 333 == 0 If data in this format is not in | |
| 334 the clipboard. */ | |
| 335 regs.x.ax = 0x1704; | |
| 336 regs.x.dx = Format; | |
| 337 __dpmi_int(0x2f, ®s); | |
| 338 return ( (((unsigned)regs.x.dx) << 16) | regs.x.ax); | |
| 339 } | |
| 340 | |
| 341 /* Get clipboard data, return its length. | |
| 342 Warning: this doesn't check whether DATA has enough space to hold | |
| 343 SIZE bytes. */ | |
| 344 unsigned | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
345 get_clipboard_data (Format, Data, Size, Raw) |
| 17451 | 346 unsigned Format; |
| 347 void *Data; | |
| 348 unsigned Size; | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
349 int Raw; |
| 17451 | 350 { |
| 351 __dpmi_regs regs; | |
| 352 unsigned long xbuf_addr; | |
| 353 unsigned char *dp = Data; | |
| 354 | |
|
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
355 if (Format != CF_OEMTEXT) |
| 17451 | 356 return 0; |
| 357 | |
| 358 if (Size == 0) | |
| 359 return 0; | |
| 360 | |
| 361 if ((xbuf_addr = alloc_xfer_buf (Size)) == 0) | |
| 362 return 0; | |
| 363 | |
| 364 /* Calls Int 2Fh/AX=1705h with: | |
| 365 DX = WinOldAp-Supported Clipboard format | |
| 366 ES:BX = Pointer to data buffer to hold data | |
| 367 Return Values AX == 0: Error occurred (or data in this format is not | |
| 368 in the clipboard) | |
| 369 <> 0: OK */ | |
| 370 regs.x.ax = 0x1705; | |
| 371 regs.x.dx = Format; | |
| 372 regs.x.es = xbuf_addr >> 4; | |
| 373 regs.x.bx = xbuf_addr & 15; | |
| 374 __dpmi_int(0x2f, ®s); | |
| 375 if (regs.x.ax != 0) | |
| 376 { | |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
377 unsigned char null_char = '\0'; |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
378 unsigned long xbuf_beg = xbuf_addr; |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
379 |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
380 /* If last_clipboard_text is NULL, we don't want to slow down |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
381 the next loop by an additional test. */ |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
382 register unsigned char *lcdp = |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
383 last_clipboard_text == NULL ? &null_char : last_clipboard_text; |
| 45333 | 384 |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
385 /* Copy data from low memory, remove CR |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
386 characters before LF if needed. */ |
| 17451 | 387 _farsetsel (_dos_ds); |
| 388 while (Size--) | |
| 389 { | |
| 390 register unsigned char c = _farnspeekb (xbuf_addr++); | |
| 391 | |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
392 if (*lcdp == c) |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
393 lcdp++; |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
394 |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
395 if ((*dp++ = c) == '\r' && !Raw && _farnspeekb (xbuf_addr) == '\n') |
| 17451 | 396 { |
| 397 dp--; | |
| 398 *dp++ = '\n'; | |
| 399 xbuf_addr++; | |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
400 if (*lcdp == '\n') |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
401 lcdp++; |
| 17451 | 402 } |
| 403 /* Windows reportedly rounds up the size of clipboard data | |
|
24428
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
404 (passed in SIZE) to a multiple of 32, and removes trailing |
|
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
405 spaces from each line without updating SIZE. We therefore |
|
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
406 bail out when we see the first null character. */ |
|
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
407 else if (c == '\0') |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
408 break; |
| 17451 | 409 } |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
410 |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
411 /* If the text in clipboard is identical to what we put there |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
412 last time set_clipboard_data was called, pretend there's no |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
413 data in the clipboard. This is so we don't pass our own text |
|
24428
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
414 from the clipboard (which might be troublesome if the killed |
|
3d10131927a6
(get_clipboard_data): Always stop at the first null byte.
Eli Zaretskii <eliz@gnu.org>
parents:
24318
diff
changeset
|
415 text includes null characters). */ |
|
24260
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
416 if (last_clipboard_text && |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
417 xbuf_addr - xbuf_beg == (long)(lcdp - last_clipboard_text)) |
|
bd3ce96bc7eb
(last_clipboard_text, clipboard_storage_size): New
Eli Zaretskii <eliz@gnu.org>
parents:
24258
diff
changeset
|
418 dp = (unsigned char *)Data + 1; |
| 17451 | 419 } |
| 420 | |
| 421 free_xfer_buf (); | |
| 422 | |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
423 return (unsigned) (dp - (unsigned char *)Data - 1); |
| 17451 | 424 } |
| 425 | |
| 426 /* Close clipboard, return non-zero if successfull. */ | |
| 427 unsigned | |
| 428 close_clipboard () | |
| 429 { | |
| 430 __dpmi_regs regs; | |
| 431 | |
| 432 /* Calls Int 2Fh/AX=1708h | |
| 433 Return Values AX == 0: Error occurred | |
| 434 <> 0: OK */ | |
| 435 regs.x.ax = 0x1708; | |
| 436 __dpmi_int(0x2f, ®s); | |
| 437 return regs.x.ax; | |
| 438 } | |
| 439 | |
| 440 /* Compact clipboard data so that at least SIZE bytes is available. */ | |
| 441 unsigned | |
| 442 clipboard_compact (Size) | |
| 443 unsigned Size; | |
| 444 { | |
| 445 __dpmi_regs regs; | |
| 446 | |
| 447 /* Calls Int 2Fh/AX=1709H with: | |
| 448 SI:CX = Desired memory size in bytes. | |
| 449 Return Values DX:AX == Number of bytes of largest block of free memory. | |
| 450 == 0 if error or no memory */ | |
| 451 regs.x.ax = 0x1709; | |
| 452 regs.x.si = Size >> 16; | |
| 453 regs.x.cx = Size & 0xffff; | |
| 454 __dpmi_int(0x2f, ®s); | |
| 455 return ((unsigned)regs.x.dx << 16) | regs.x.ax; | |
| 456 } | |
| 457 | |
| 458 static char no_mem_msg[] = | |
| 459 "(Not enough DOS memory to put saved text into clipboard.)"; | |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
460 static char binary_msg[] = |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
461 "(Binary characters in saved text; clipboard data not set.)"; |
|
30900
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
462 static char system_error_msg[] = |
|
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
463 "(Clipboard interface failure; clipboard data not set.)"; |
| 17451 | 464 |
|
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
465 DEFUN ("w16-set-clipboard-data", Fw16_set_clipboard_data, Sw16_set_clipboard_data, 1, 2, 0, |
|
41940
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
466 doc: /* This sets the clipboard data to the given text. */) |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
467 (string, frame) |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
468 Lisp_Object string, frame; |
| 17451 | 469 { |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
470 unsigned ok = 1, put_status = 0; |
| 45333 | 471 int nbytes, charset_info, no_crlf_conversion; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
472 unsigned char *src, *dst = NULL; |
| 17451 | 473 |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
37858
diff
changeset
|
474 CHECK_STRING (string); |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
475 |
| 17451 | 476 if (NILP (frame)) |
| 477 frame = Fselected_frame (); | |
| 478 | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
37858
diff
changeset
|
479 CHECK_LIVE_FRAME (frame); |
| 17451 | 480 if ( !FRAME_MSDOS_P (XFRAME (frame))) |
| 481 goto done; | |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
482 |
| 17451 | 483 BLOCK_INPUT; |
| 484 | |
|
97869
455b25c4ebc2
(Fw16_set_clipboard_data): Don't encode text if clipboard is unavailable.
Eli Zaretskii <eliz@gnu.org>
parents:
97651
diff
changeset
|
485 if (!open_clipboard ()) |
|
455b25c4ebc2
(Fw16_set_clipboard_data): Don't encode text if clipboard is unavailable.
Eli Zaretskii <eliz@gnu.org>
parents:
97651
diff
changeset
|
486 goto error; |
|
455b25c4ebc2
(Fw16_set_clipboard_data): Don't encode text if clipboard is unavailable.
Eli Zaretskii <eliz@gnu.org>
parents:
97651
diff
changeset
|
487 |
|
46370
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45988
diff
changeset
|
488 nbytes = SBYTES (string); |
|
40db0673e6f0
Most uses of XSTRING combined with STRING_BYTES or indirection changed to
Ken Raeburn <raeburn@raeburn.org>
parents:
45988
diff
changeset
|
489 src = SDATA (string); |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
490 |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
491 /* Do we need to encode this text? */ |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
492 for (dst = src; dst < src + nbytes; dst++) |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
493 { |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
494 if (*dst == '\0' || *dst >= 0x80) |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
495 break; |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
496 } |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
497 if (dst >= src + nbytes) |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
498 { |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
499 /* No multibyte characters in text. We need not encode it, but we |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
500 will have to convert it to DOS CR-LF style. */ |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
501 no_crlf_conversion = 0; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
502 Vlast_coding_system_used = Qraw_text; |
|
97869
455b25c4ebc2
(Fw16_set_clipboard_data): Don't encode text if clipboard is unavailable.
Eli Zaretskii <eliz@gnu.org>
parents:
97651
diff
changeset
|
503 dst = NULL; /* so we don't try to free a random pointer */ |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
504 } |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
505 else |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
506 { |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
507 /* We must encode contents of STRING according to what |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
508 clipboard-coding-system specifies. */ |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
509 int bufsize; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
510 struct coding_system coding; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
511 unsigned char *htext2; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
512 Lisp_Object coding_system = |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
513 NILP (Vnext_selection_coding_system) ? |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
514 Vselection_coding_system : Vnext_selection_coding_system; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
515 |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
516 setup_coding_system (Fcheck_coding_system (coding_system), &coding); |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
517 coding.dst_bytes = nbytes * 4; |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
518 coding.destination = (unsigned char *) xmalloc (coding.dst_bytes); |
|
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
519 Vnext_selection_coding_system = Qnil; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
520 coding.mode |= CODING_MODE_LAST_BLOCK; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
521 dst = coding.destination; |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
522 encode_coding_object (&coding, string, 0, 0, |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
523 SCHARS (string), nbytes, Qnil); |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
524 no_crlf_conversion = 1; |
|
24257
7507c0552393
(Fw16_set_clipboard_data): When the text needs to be
Eli Zaretskii <eliz@gnu.org>
parents:
24251
diff
changeset
|
525 nbytes = coding.produced; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
526 Vlast_coding_system_used = CODING_ID_NAME (coding.id); |
| 24258 | 527 src = dst; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
528 } |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
529 |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
530 ok = empty_clipboard () |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
531 && ((put_status |
| 24258 | 532 = set_clipboard_data (CF_OEMTEXT, src, nbytes, no_crlf_conversion)) |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
533 == 0); |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
534 |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
535 if (!no_crlf_conversion) |
| 17451 | 536 close_clipboard (); |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
537 |
|
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
538 if (ok) goto unblock; |
| 17451 | 539 |
| 540 error: | |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
541 |
| 17451 | 542 ok = 0; |
| 543 | |
|
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
544 unblock: |
|
95481
4390d64d3328
Make "xfree (NULL)" a no-op; remove useless if-before-xfree.
Jim Meyering <jim@meyering.net>
parents:
94963
diff
changeset
|
545 xfree (dst); |
|
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
546 UNBLOCK_INPUT; |
|
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
547 |
| 17451 | 548 /* Notify user if the text is too large to fit into DOS memory. |
| 549 (This will happen somewhere after 600K bytes (470K in DJGPP v1.x), | |
| 550 depending on user system configuration.) If we just silently | |
| 551 fail the function, people might wonder why their text sometimes | |
| 552 doesn't make it to the clipboard. */ | |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
553 if (put_status) |
| 17451 | 554 { |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
555 switch (put_status) |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
556 { |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
557 case 1: |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
558 message2 (no_mem_msg, sizeof (no_mem_msg) - 1, 0); |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
559 break; |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
560 case 2: |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
561 message2 (binary_msg, sizeof (binary_msg) - 1, 0); |
|
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
562 break; |
|
30900
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
563 case 3: |
|
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
564 message2 (system_error_msg, sizeof (system_error_msg) - 1, 0); |
|
2bec1c202b13
(set_clipboard_data): If there's not enough memory
Eli Zaretskii <eliz@gnu.org>
parents:
29179
diff
changeset
|
565 break; |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
566 } |
|
74183
727f68fa1f38
(Fw16_set_clipboard_data): Fix the call to sit_for as per the calling sequence
Eli Zaretskii <eliz@gnu.org>
parents:
68651
diff
changeset
|
567 sit_for (make_number (2), 0, 2); |
| 17451 | 568 } |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
569 |
| 17451 | 570 done: |
| 571 | |
|
24003
5048f069091e
(set_clipboard_data): Terminate the text with a null
Eli Zaretskii <eliz@gnu.org>
parents:
23875
diff
changeset
|
572 return (ok && put_status == 0 ? string : Qnil); |
| 17451 | 573 } |
| 574 | |
|
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
575 DEFUN ("w16-get-clipboard-data", Fw16_get_clipboard_data, Sw16_get_clipboard_data, 0, 1, 0, |
|
41940
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
576 doc: /* This gets the clipboard data in text format. */) |
| 17451 | 577 (frame) |
| 578 Lisp_Object frame; | |
| 579 { | |
| 580 unsigned data_size, truelen; | |
|
97869
455b25c4ebc2
(Fw16_set_clipboard_data): Don't encode text if clipboard is unavailable.
Eli Zaretskii <eliz@gnu.org>
parents:
97651
diff
changeset
|
581 unsigned char *htext = NULL; |
| 17451 | 582 Lisp_Object ret = Qnil; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
583 int no_crlf_conversion, require_decoding = 0; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
584 |
| 17451 | 585 if (NILP (frame)) |
| 586 frame = Fselected_frame (); | |
| 587 | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
37858
diff
changeset
|
588 CHECK_LIVE_FRAME (frame); |
| 17451 | 589 if ( !FRAME_MSDOS_P (XFRAME (frame))) |
| 590 goto done; | |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
591 |
| 17451 | 592 BLOCK_INPUT; |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
593 |
| 17451 | 594 if (!open_clipboard ()) |
|
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
595 goto unblock; |
| 17451 | 596 |
|
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
597 if ((data_size = get_clipboard_data_size (CF_OEMTEXT)) == 0 || |
| 17451 | 598 (htext = (unsigned char *)xmalloc (data_size)) == 0) |
| 599 goto closeclip; | |
| 600 | |
| 601 /* need to know final size after '\r' chars are removed because | |
| 602 we can't change the string size manually, and doing an extra | |
| 603 copy is silly */ | |
|
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
604 if ((truelen = get_clipboard_data (CF_OEMTEXT, htext, data_size, 0)) == 0) |
| 17451 | 605 goto closeclip; |
| 606 | |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
607 /* Do we need to decode it? */ |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
608 { |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
609 /* If the clipboard data contains any 8-bit Latin-1 code, we |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
610 need to decode it. */ |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
611 int i; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
612 |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
613 for (i = 0; i < truelen; i++) |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
614 { |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
615 if (htext[i] >= 0x80) |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
616 { |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
617 require_decoding = 1; |
|
43460
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
618 break; |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
619 } |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
620 } |
|
aa52a9cea9f8
(Fw16_set_clipboard_data): Run pre-write-conversion
Eli Zaretskii <eliz@gnu.org>
parents:
41940
diff
changeset
|
621 } |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
622 if (require_decoding) |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
623 { |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
624 int bufsize; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
625 unsigned char *buf; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
626 struct coding_system coding; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
627 Lisp_Object coding_system = Vnext_selection_coding_system; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
628 |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
629 truelen = get_clipboard_data (CF_OEMTEXT, htext, data_size, 1); |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
630 if (NILP (coding_system)) |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
631 coding_system = Vselection_coding_system; |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
632 setup_coding_system (Fcheck_coding_system (coding_system), &coding); |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
633 coding.source = htext; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
634 coding.mode |= CODING_MODE_LAST_BLOCK; |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
635 /* We explicitly disable composition handling because selection |
|
45982
864289635b41
(Fw16_get_clipboard_data): Disable composition handling.
Kenichi Handa <handa@m17n.org>
parents:
45333
diff
changeset
|
636 data should not contain any composition sequence. */ |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
637 coding.mode &= CODING_ANNOTATION_MASK; |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
638 decode_coding_object (&coding, Qnil, 0, 0, truelen, truelen, Qt); |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
639 ret = coding.dst_object; |
|
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
640 Vlast_coding_system_used = CODING_ID_NAME (coding.id); |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
641 } |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
642 else |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
643 { |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
644 ret = make_unibyte_string ((char *) htext, truelen); |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
645 Vlast_coding_system_used = Qraw_text; |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
646 } |
|
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
647 |
| 17451 | 648 xfree (htext); |
|
97651
62ec1a5d873b
(Fw16_set_clipboard_data, Fw16_get_clipboard_data): Adjust for changes in
Eli Zaretskii <eliz@gnu.org>
parents:
95481
diff
changeset
|
649 Vnext_selection_coding_system = Qnil; |
| 17451 | 650 |
| 651 closeclip: | |
| 652 close_clipboard (); | |
|
21707
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
653 |
|
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
654 unblock: |
|
7b76832ac019
(Fwin16_set_clipboard_data): Call UNBLOCK_INPUT before calling sit_for.
Eli Zaretskii <eliz@gnu.org>
parents:
21417
diff
changeset
|
655 UNBLOCK_INPUT; |
| 45333 | 656 |
| 17451 | 657 done: |
| 45333 | 658 |
| 17451 | 659 return (ret); |
| 660 } | |
| 661 | |
| 662 /* Support checking for a clipboard selection. */ | |
| 663 | |
| 664 DEFUN ("x-selection-exists-p", Fx_selection_exists_p, Sx_selection_exists_p, | |
|
41940
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
665 0, 1, 0, |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
666 doc: /* Whether there is an owner for the given X Selection. |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
667 The arg should be the name of the selection in question, typically one of |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
668 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'. |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
669 \(Those are literal upper-case symbol names, since that's what X expects.) |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
670 For convenience, the symbol nil is the same as `PRIMARY', |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
671 and t is the same as `SECONDARY'. */) |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
672 (selection) |
| 17451 | 673 Lisp_Object selection; |
| 674 { | |
|
40656
cdfd4d09b79a
Update usage of CHECK_ macros (remove unused second argument).
Pavel Jan?k <Pavel@Janik.cz>
parents:
37858
diff
changeset
|
675 CHECK_SYMBOL (selection); |
| 17451 | 676 |
| 677 /* Return nil for SECONDARY selection. For PRIMARY (or nil) | |
| 678 selection, check if there is some text on the kill-ring; | |
| 679 for CLIPBOARD, check if the clipboard currently has valid | |
| 680 text format contents. | |
| 681 | |
| 682 The test for killed text on the kill-ring emulates the Emacs | |
| 683 behavior on X, where killed text is also put into X selection | |
| 684 by the X interface code. (On MSDOS, killed text is only put | |
| 685 into the clipboard if we run under Windows, so we cannot check | |
| 686 the clipboard alone.) */ | |
| 687 if ((EQ (selection, Qnil) || EQ (selection, QPRIMARY)) | |
|
37858
fd7c0dac2110
Use SYMBOL_VALUE/ SET_SYMBOL_VALUE macros instead of accessing
Gerd Moellmann <gerd@gnu.org>
parents:
30900
diff
changeset
|
688 && ! NILP (SYMBOL_VALUE (Fintern_soft (build_string ("kill-ring"), |
|
fd7c0dac2110
Use SYMBOL_VALUE/ SET_SYMBOL_VALUE macros instead of accessing
Gerd Moellmann <gerd@gnu.org>
parents:
30900
diff
changeset
|
689 Qnil)))) |
| 17451 | 690 return Qt; |
| 691 | |
| 692 if (EQ (selection, QCLIPBOARD)) | |
| 693 { | |
| 694 Lisp_Object val = Qnil; | |
| 695 | |
| 696 if (open_clipboard ()) | |
| 697 { | |
|
22749
14bde44d261c
(set_clipboard_data, get_clipboard_data, Fw16_set_clipboard_data,
Eli Zaretskii <eliz@gnu.org>
parents:
22729
diff
changeset
|
698 if (get_clipboard_data_size (CF_OEMTEXT)) |
| 17451 | 699 val = Qt; |
| 700 close_clipboard (); | |
| 701 } | |
| 702 return val; | |
| 703 } | |
| 704 return Qnil; | |
| 705 } | |
| 706 | |
| 45333 | 707 void |
| 17451 | 708 syms_of_win16select () |
| 709 { | |
|
21709
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
710 defsubr (&Sw16_set_clipboard_data); |
|
64adf1f4d54d
(alloc_xfer_buf): If want_size is more than 1MB,
Eli Zaretskii <eliz@gnu.org>
parents:
21707
diff
changeset
|
711 defsubr (&Sw16_get_clipboard_data); |
| 17451 | 712 defsubr (&Sx_selection_exists_p); |
| 713 | |
|
22904
37738fa8626a
(Fw16_set_clipboard_data, Fw16_get_clipboard_data, syms_of_win16select):
Eli Zaretskii <eliz@gnu.org>
parents:
22749
diff
changeset
|
714 DEFVAR_LISP ("selection-coding-system", &Vselection_coding_system, |
|
41940
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
715 doc: /* Coding system for communicating with other X clients. |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
716 When sending or receiving text via cut_buffer, selection, and clipboard, |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
717 the text is encoded or decoded by this coding system. |
|
47878
be195e2a4bfb
(syms_of_win16select): Fix docstring for `selection-coding-system'.
Juanma Barranquero <lekktu@gmail.com>
parents:
47279
diff
changeset
|
718 The default value is `iso-latin-1-dos'. */); |
|
be195e2a4bfb
(syms_of_win16select): Fix docstring for `selection-coding-system'.
Juanma Barranquero <lekktu@gmail.com>
parents:
47279
diff
changeset
|
719 Vselection_coding_system = intern ("iso-latin-1-dos"); |
|
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
720 |
|
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
721 DEFVAR_LISP ("next-selection-coding-system", &Vnext_selection_coding_system, |
|
41940
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
722 doc: /* Coding system for the next communication with other X clients. |
|
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
723 Usually, `selection-coding-system' is used for communicating with |
|
47279
06197dc11581
(syms_of_win16select): Fix spacing.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
724 other X clients. But, if this variable is set, it is used for the |
|
06197dc11581
(syms_of_win16select): Fix spacing.
Juanma Barranquero <lekktu@gmail.com>
parents:
46370
diff
changeset
|
725 next communication only. After the communication, this variable is |
|
41940
63819c5d6049
Change doc-string comments to `new style' [w/`doc:' keyword].
Pavel Jan?k <Pavel@Janik.cz>
parents:
40656
diff
changeset
|
726 set to nil. */); |
|
23164
ecc4641bf00a
(Vnext_selection_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
22904
diff
changeset
|
727 Vnext_selection_coding_system = Qnil; |
|
22729
3537e1563a66
(Vclipboard_coding_system): New variable.
Eli Zaretskii <eliz@gnu.org>
parents:
21709
diff
changeset
|
728 |
| 17451 | 729 QPRIMARY = intern ("PRIMARY"); staticpro (&QPRIMARY); |
| 730 QCLIPBOARD = intern ("CLIPBOARD"); staticpro (&QCLIPBOARD); | |
| 731 } | |
| 732 | |
| 733 #endif /* MSDOS */ | |
| 52401 | 734 |
| 735 /* arch-tag: 085a22c8-7324-436e-a6da-102464ce95d8 | |
| 736 (do not change this comment) */ |
