FSF GCC merge 02/23/03
[official-gcc.git] / libjava / gnu / java / awt / peer / gtk / GtkClipboard.java
blobd2587d970a159937f5028f53538fc067ad54438d
1 /* GtkClipboard.java
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU Classpath.
6 GNU Classpath 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, or (at your option)
9 any later version.
11 GNU Classpath is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Classpath; see the file COPYING. If not, write to the
18 Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA.
21 Linking this library statically or dynamically with other modules is
22 making a combined work based on this library. Thus, the terms and
23 conditions of the GNU General Public License cover the whole
24 combination.
26 As a special exception, the copyright holders of this library give you
27 permission to link this library with independent modules to produce an
28 executable, regardless of the license terms of these independent
29 modules, and to copy and distribute the resulting executable under
30 terms of your choice, provided that you also meet, for each linked
31 independent module, the terms and conditions of the license of that
32 module. An independent module is a module which is not derived from
33 or based on this library. If you modify this library, you may extend
34 this exception to your version of the library, but you are not
35 obligated to do so. If you do not wish to do so, delete this
36 exception statement from your version. */
38 package gnu.java.awt.peer.gtk;
40 import java.awt.*;
41 import java.io.*;
42 import java.net.*;
43 import java.util.*;
44 import java.awt.datatransfer.*;
45 import java.awt.image.*;
46 import java.awt.peer.*;
48 public class GtkClipboard extends Clipboard
50 /* the number of milliseconds that we'll wait around for the
51 owner of the GDK_SELECTION_PRIMARY selection to convert
52 the requested data */
53 final static int SELECTION_RECEIVED_TIMEOUT = 5000;
55 /* We currently only support transferring of text between applications */
56 static String selection;
57 static Object selectionLock = new Object ();
59 static boolean hasSelection = false;
61 protected
62 GtkClipboard ()
64 super ("System Clipboard");
65 initNativeState ();
68 public Transferable
69 getContents (Object requestor)
71 synchronized (this)
73 if (hasSelection)
74 return contents;
77 /* Java doesn't own the selection, so we need to ask X11 */
78 synchronized (selectionLock)
80 requestStringConversion ();
81 try
83 selectionLock.wait (SELECTION_RECEIVED_TIMEOUT);
85 catch (InterruptedException e)
87 return null;
90 return (selection == null) ? null : new StringSelection (selection);
94 void
95 stringSelectionReceived (String newSelection)
97 synchronized (selectionLock)
99 selection = newSelection;
100 selectionLock.notify ();
104 /* convert Java clipboard data into a String suitable for sending
105 to another application */
106 synchronized String
107 stringSelectionHandler () throws IOException
109 String selection = null;
111 try {
112 if (contents.isDataFlavorSupported (DataFlavor.stringFlavor))
113 selection = (String)contents.getTransferData (DataFlavor.stringFlavor);
114 else if (contents.isDataFlavorSupported (DataFlavor.plainTextFlavor))
116 StringBuffer sbuf = new StringBuffer ();
117 InputStreamReader reader;
118 char readBuf[] = new char[512];
119 int numChars;
121 reader = new InputStreamReader
122 ((InputStream)
123 contents.getTransferData (DataFlavor.plainTextFlavor), "UNICODE");
125 while (true)
127 numChars = reader.read (readBuf);
128 if (numChars == -1)
129 break;
130 sbuf.append (readBuf, 0, numChars);
133 selection = new String (sbuf);
135 } catch (Exception e) { }
137 return selection;
140 public synchronized void
141 setContents (Transferable contents, ClipboardOwner owner)
143 selectionGet ();
145 this.contents = contents;
146 this.owner = owner;
148 hasSelection = true;
151 synchronized
152 void selectionClear ()
154 hasSelection = false;
156 if (owner != null)
158 owner.lostOwnership (this, contents);
159 owner = null;
160 contents = null;
164 native void initNativeState ();
165 native static void requestStringConversion ();
166 native static void selectionGet ();