author | yan |
Mon, 06 Oct 2008 16:45:00 +0400 | |
changeset 1966 | 12a51fb0db0d |
parent 1962 | 6c293d33645b |
child 2810 | fa49c6a06baf |
permissions | -rw-r--r-- |
2 | 1 |
/* |
1962
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
2
diff
changeset
|
2 |
* Copyright 2003-2008 Sun Microsystems, Inc. All Rights Reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. Sun designates this |
|
8 |
* particular file as subject to the "Classpath" exception as provided |
|
9 |
* by Sun in the LICENSE file that accompanied this code. |
|
10 |
* |
|
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
21 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
* have any questions. |
|
24 |
*/ |
|
25 |
package sun.awt.X11; |
|
26 |
||
27 |
import java.awt.*; |
|
28 |
import java.awt.peer.*; |
|
29 |
import sun.awt.X11GraphicsConfig; |
|
30 |
||
31 |
class XRobotPeer implements RobotPeer { |
|
32 |
private X11GraphicsConfig xgc = null; |
|
33 |
/* |
|
34 |
* native implementation uses some static shared data (pipes, processes) |
|
35 |
* so use a class lock to synchronize native method calls |
|
36 |
*/ |
|
37 |
static Object robotLock = new Object(); |
|
38 |
||
39 |
XRobotPeer(GraphicsConfiguration gc) { |
|
40 |
this.xgc = (X11GraphicsConfig)gc; |
|
41 |
setup(); |
|
42 |
} |
|
43 |
||
44 |
public void dispose() { |
|
45 |
// does nothing |
|
46 |
} |
|
47 |
||
48 |
public void mouseMove(int x, int y) { |
|
49 |
mouseMoveImpl(xgc, x, y); |
|
50 |
} |
|
51 |
||
52 |
public void mousePress(int buttons) { |
|
53 |
mousePressImpl(buttons); |
|
54 |
} |
|
55 |
||
56 |
public void mouseRelease(int buttons) { |
|
57 |
mouseReleaseImpl(buttons); |
|
58 |
} |
|
59 |
||
60 |
public void mouseWheel(int wheelAmt) { |
|
61 |
mouseWheelImpl(wheelAmt); |
|
62 |
} |
|
63 |
||
64 |
public void keyPress(int keycode) { |
|
65 |
keyPressImpl(keycode); |
|
66 |
} |
|
67 |
||
68 |
public void keyRelease(int keycode) { |
|
69 |
keyReleaseImpl(keycode); |
|
70 |
} |
|
71 |
||
72 |
public int getRGBPixel(int x, int y) { |
|
73 |
int pixelArray[] = new int[1]; |
|
74 |
getRGBPixelsImpl(xgc, x, y, 1, 1, pixelArray); |
|
75 |
return pixelArray[0]; |
|
76 |
} |
|
77 |
||
78 |
public int [] getRGBPixels(Rectangle bounds) { |
|
79 |
int pixelArray[] = new int[bounds.width*bounds.height]; |
|
80 |
getRGBPixelsImpl(xgc, bounds.x, bounds.y, bounds.width, bounds.height, pixelArray); |
|
81 |
return pixelArray; |
|
82 |
} |
|
83 |
||
1962
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
2
diff
changeset
|
84 |
public int getNumberOfButtons(){ |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
2
diff
changeset
|
85 |
return getNumberOfButtonsImpl(); |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
2
diff
changeset
|
86 |
} |
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
2
diff
changeset
|
87 |
|
2 | 88 |
private static native synchronized void setup(); |
89 |
||
90 |
private static native synchronized void mouseMoveImpl(X11GraphicsConfig xgc, int x, int y); |
|
91 |
private static native synchronized void mousePressImpl(int buttons); |
|
92 |
private static native synchronized void mouseReleaseImpl(int buttons); |
|
1962
6c293d33645b
6315717: Support for mouse with multiple scroll wheels and 4 or more buttons
dav
parents:
2
diff
changeset
|
93 |
private static native synchronized int getNumberOfButtonsImpl(); |
2 | 94 |
private static native synchronized void mouseWheelImpl(int wheelAmt); |
95 |
||
96 |
private static native synchronized void keyPressImpl(int keycode); |
|
97 |
private static native synchronized void keyReleaseImpl(int keycode); |
|
98 |
||
99 |
private static native synchronized void getRGBPixelsImpl(X11GraphicsConfig xgc, int x, int y, int width, int height, int pixelArray[]); |
|
100 |
} |