< prev index next >

src/java.desktop/share/classes/java/awt/peer/RobotPeer.java

Print this page
rev 60071 : 8211999: Window positioning bugs due to overlapping GraphicsDevice bounds (Windows/HiDPI)
Reviewed-by: XXX

*** 1,7 **** /* ! * Copyright (c) 1999, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this --- 1,7 ---- /* ! * Copyright (c) 1999, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this
*** 115,120 **** --- 115,130 ---- * @return the RGB values of the specified screen area * * @see Robot#createScreenCapture(Rectangle) */ int[] getRGBPixels(Rectangle bounds); + + /** + * Determines if absolute coordinates should be used by this peer. + * + * @return {@code true} if absolute coordinates should be used, + * {@code false} otherwise + */ + default boolean useAbsoluteCoordinates() { + return false; + } }
< prev index next >