< prev index next >

src/java.desktop/unix/classes/sun/awt/X11/XRobotPeer.java

Print this page


   1 /*
   2  * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
   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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  98     }
  99 
 100     @Override
 101     public void mouseWheel(int wheelAmt) {
 102         mouseWheelImpl(wheelAmt);
 103     }
 104 
 105     @Override
 106     public void keyPress(int keycode) {
 107         keyPressImpl(keycode);
 108     }
 109 
 110     @Override
 111     public void keyRelease(int keycode) {
 112         keyReleaseImpl(keycode);
 113     }
 114 
 115     @Override
 116     public int getRGBPixel(int x, int y) {
 117         int pixelArray[] = new int[1];
 118         getRGBPixelsImpl(xgc, x, y, 1, 1, xgc.getScale(), pixelArray,
 119                          useGtk);
 120         return pixelArray[0];
 121     }
 122 
 123     @Override
 124     public int [] getRGBPixels(Rectangle bounds) {
 125         int pixelArray[] = new int[bounds.width*bounds.height];
 126         getRGBPixelsImpl(xgc, bounds.x, bounds.y, bounds.width, bounds.height,
 127                          xgc.getScale(), pixelArray, useGtk);
 128         return pixelArray;
 129     }
 130 
 131     private static synchronized native void setup(int numberOfButtons, int[] buttonDownMasks);
 132     private static native void loadNativeLibraries();
 133 
 134     private static synchronized native void mouseMoveImpl(X11GraphicsConfig xgc, int x, int y);
 135     private static synchronized native void mousePressImpl(int buttons);
 136     private static synchronized native void mouseReleaseImpl(int buttons);
 137     private static synchronized native void mouseWheelImpl(int wheelAmt);
 138 
 139     private static synchronized native void keyPressImpl(int keycode);
 140     private static synchronized native void keyReleaseImpl(int keycode);
 141 
 142     private static synchronized native void getRGBPixelsImpl(X11GraphicsConfig xgc,
 143             int x, int y, int width, int height, int scale,
 144             int pixelArray[], boolean isGtkSupported);
 145 }
   1 /*
   2  * Copyright (c) 2003, 2017, Oracle and/or its affiliates. All rights reserved.
   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.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any


  98     }
  99 
 100     @Override
 101     public void mouseWheel(int wheelAmt) {
 102         mouseWheelImpl(wheelAmt);
 103     }
 104 
 105     @Override
 106     public void keyPress(int keycode) {
 107         keyPressImpl(keycode);
 108     }
 109 
 110     @Override
 111     public void keyRelease(int keycode) {
 112         keyReleaseImpl(keycode);
 113     }
 114 
 115     @Override
 116     public int getRGBPixel(int x, int y) {
 117         int pixelArray[] = new int[1];
 118         getRGBPixelsImpl(xgc, x, y, 1, 1, pixelArray, useGtk);

 119         return pixelArray[0];
 120     }
 121 
 122     @Override
 123     public int [] getRGBPixels(Rectangle bounds) {
 124         int pixelArray[] = new int[bounds.width*bounds.height];
 125         getRGBPixelsImpl(xgc, bounds.x, bounds.y, bounds.width, bounds.height,
 126                             pixelArray, useGtk);
 127         return pixelArray;
 128     }
 129 
 130     private static synchronized native void setup(int numberOfButtons, int[] buttonDownMasks);
 131     private static native void loadNativeLibraries();
 132 
 133     private static synchronized native void mouseMoveImpl(X11GraphicsConfig xgc, int x, int y);
 134     private static synchronized native void mousePressImpl(int buttons);
 135     private static synchronized native void mouseReleaseImpl(int buttons);
 136     private static synchronized native void mouseWheelImpl(int wheelAmt);
 137 
 138     private static synchronized native void keyPressImpl(int keycode);
 139     private static synchronized native void keyReleaseImpl(int keycode);
 140 
 141     private static synchronized native void getRGBPixelsImpl(X11GraphicsConfig xgc,
 142             int x, int y, int width, int height, int pixelArray[], boolean isGtkSupported);

 143 }
< prev index next >