ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/Unix/clip_unix.cpp
Revision: 1.1.1.1 (vendor branch)
Committed: 2002-02-04T16:58:13Z (22 years, 3 months ago) by cebix
Branch: cebix
CVS Tags: start
Changes since 1.1: +0 -0 lines
Log Message:
Imported sources

File Contents

# Content
1 /*
2 * clip_unix.cpp - Clipboard handling, Unix implementation
3 *
4 * SheepShaver (C) 1997-2002 Christian Bauer and Marc Hellwig
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include "sysdeps.h"
22
23 #include <X11/Xlib.h>
24
25 #include "macos_util.h"
26 #include "clip.h"
27
28 #define DEBUG 0
29 #include "debug.h"
30
31
32 // From main_linux.cpp
33 extern Display *x_display;
34
35
36 // Conversion tables
37 static const uint8 mac2iso[0x80] = {
38 0xc4, 0xc5, 0xc7, 0xc9, 0xd1, 0xd6, 0xdc, 0xe1,
39 0xe0, 0xe2, 0xe4, 0xe3, 0xe5, 0xe7, 0xe9, 0xe8,
40 0xea, 0xeb, 0xed, 0xec, 0xee, 0xef, 0xf1, 0xf3,
41 0xf2, 0xf4, 0xf6, 0xf5, 0xfa, 0xf9, 0xfb, 0xfc,
42 0x2b, 0xb0, 0xa2, 0xa3, 0xa7, 0xb7, 0xb6, 0xdf,
43 0xae, 0xa9, 0x20, 0xb4, 0xa8, 0x23, 0xc6, 0xd8,
44 0x20, 0xb1, 0x3c, 0x3e, 0xa5, 0xb5, 0xf0, 0x53,
45 0x50, 0x70, 0x2f, 0xaa, 0xba, 0x4f, 0xe6, 0xf8,
46 0xbf, 0xa1, 0xac, 0x2f, 0x66, 0x7e, 0x44, 0xab,
47 0xbb, 0x2e, 0x20, 0xc0, 0xc3, 0xd5, 0x4f, 0x6f,
48 0x2d, 0x2d, 0x22, 0x22, 0x60, 0x27, 0xf7, 0x20,
49 0xff, 0x59, 0x2f, 0xa4, 0x3c, 0x3e, 0x66, 0x66,
50 0x23, 0xb7, 0x2c, 0x22, 0x25, 0xc2, 0xca, 0xc1,
51 0xcb, 0xc8, 0xcd, 0xce, 0xcf, 0xcc, 0xd3, 0xd4,
52 0x20, 0xd2, 0xda, 0xdb, 0xd9, 0x69, 0x5e, 0x7e,
53 0xaf, 0x20, 0xb7, 0xb0, 0xb8, 0x22, 0xb8, 0x20
54 };
55
56
57 /*
58 * Initialization
59 */
60
61 void ClipInit(void)
62 {
63 }
64
65
66 /*
67 * Deinitialization
68 */
69
70 void ClipExit(void)
71 {
72 }
73
74
75 /*
76 * Mac application wrote to clipboard
77 */
78
79 void PutScrap(uint32 type, void *scrap, int32 length)
80 {
81 D(bug("PutScrap type %08lx, data %p, length %ld\n", type, scrap, length));
82 if (length <= 0)
83 return;
84
85 switch (type) {
86 case FOURCC('T','E','X','T'):
87 D(bug(" clipping TEXT\n"));
88
89 // Convert text from Mac charset to ISO-Latin1
90 uint8 *buf = new uint8[length];
91 uint8 *p = (uint8 *)scrap;
92 uint8 *q = buf;
93 for (int i=0; i<length; i++) {
94 uint8 c = *p++;
95 if (c < 0x80) {
96 if (c == 13) // CR -> LF
97 c = 10;
98 } else
99 c = mac2iso[c & 0x7f];
100 *q++ = c;
101 }
102
103 // Put text into cut buffer
104 //!! XStoreBytes(x_display, buf, length);
105 delete[] buf;
106 break;
107 }
108 }
109
110
111 /*
112 * Mac application reads clipboard
113 */
114
115 void GetScrap(void **handle, uint32 type, int32 offset)
116 {
117 D(bug("GetScrap handle %p, type %08x, offset %d\n", handle, type, offset));
118 switch (type) {
119 case FOURCC('T','E','X','T'):
120 D(bug(" clipping TEXT\n"));
121 //!!
122 break;
123 }
124 }