1 /*
   2  * Copyright (c) 1998, 2014, 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
  23  * questions.
  24  */
  25 
  26 package sun.awt.windows;
  27 
  28 import java.awt.*;
  29 import java.awt.peer.RobotPeer;
  30 
  31 final class WRobotPeer extends WObjectPeer implements RobotPeer
  32 {
  33     WRobotPeer() {
  34         create();
  35     }
  36     WRobotPeer(GraphicsDevice screen) {
  37         create();
  38     }
  39 
  40     private synchronized native void _dispose();
  41 
  42     @Override
  43     protected void disposeImpl() {
  44         _dispose();
  45     }
  46 
  47     public native void create();
  48     public native void mouseMoveImpl(int x, int y);
  49     @Override
  50     public void mouseMove(int x, int y) {
  51         mouseMoveImpl(x, y);
  52     }
  53     @Override
  54     public native void mousePress(int buttons);
  55     @Override
  56     public native void mouseRelease(int buttons);
  57     @Override
  58     public native void mouseWheel(int wheelAmt);
  59 
  60     @Override
  61     public native void keyPress( int keycode );
  62     @Override
  63     public native void keyRelease( int keycode );
  64 
  65     @Override
  66     public int getRGBPixel(int x, int y) {
  67          // See 7002846: that's ineffective, but works correctly with non-opaque windows
  68         return getRGBPixels(new Rectangle(x, y, 1, 1))[0];
  69     }
  70 
  71     @Override
  72     public int [] getRGBPixels(Rectangle bounds) {
  73         int pixelArray[] = new int[bounds.width*bounds.height];
  74         getRGBPixels(bounds.x, bounds.y, bounds.width, bounds.height, pixelArray);
  75         return pixelArray;
  76     }
  77 
  78     private native void getRGBPixels(int x, int y, int width, int height, int pixelArray[]);
  79 }