< prev index next >

src/java.desktop/windows/classes/sun/awt/windows/WRobotPeer.java

Print this page


   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
   1 /*
   2  * Copyright (c) 1998, 2016, 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 sun.awt.Win32GraphicsDevice;
  29 
  30 import java.awt.*;
  31 import java.awt.peer.RobotPeer;
  32 
  33 final class WRobotPeer extends WObjectPeer implements RobotPeer
  34 {



  35     WRobotPeer(GraphicsDevice screen) {
  36         create(((Win32GraphicsDevice)screen).getScreen());
  37     }
  38 
  39     private synchronized native void _dispose();
  40 
  41     @Override
  42     protected void disposeImpl() {
  43         _dispose();
  44     }
  45 
  46     public native void create(int screen);
  47     public native void mouseMoveImpl(int x, int y);
  48     @Override
  49     public void mouseMove(int x, int y) {
  50         mouseMoveImpl(x, y);
  51     }
  52     @Override
  53     public native void mousePress(int buttons);
  54     @Override
  55     public native void mouseRelease(int buttons);
  56     @Override
  57     public native void mouseWheel(int wheelAmt);
  58 
  59     @Override
  60     public native void keyPress( int keycode );
  61     @Override
  62     public native void keyRelease( int keycode );
  63 
  64     @Override
  65     public int getRGBPixel(int x, int y) {
  66          // See 7002846: that's ineffective, but works correctly with non-opaque windows
< prev index next >