Skip to content

Commit

Permalink
get rid of AWT dependencies(Rectangle, Dimension)
Browse files Browse the repository at this point in the history
  • Loading branch information
azvegint committed Jun 26, 2024
1 parent e267212 commit 880a833
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

import com.sun.glass.ui.Screen;

import java.awt.Rectangle;
import com.sun.javafx.geom.Rectangle;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.List;
Expand Down Expand Up @@ -103,7 +103,7 @@ private static List<Rectangle> getSystemScreensBounds() {
return Screen
.getScreens()
.stream()
.map(screen -> new Rectangle( //TODO should we get rid of AWT Rectangle?
.map(screen -> new Rectangle(
clipRound(screen.getPlatformX() * screen.getPlatformScaleX()),
clipRound(screen.getPlatformY() * screen.getPlatformScaleY()),
clipRound(screen.getPlatformWidth() * screen.getPlatformScaleX()),
Expand Down Expand Up @@ -140,7 +140,7 @@ public static synchronized void getRGBPixels(

List<Rectangle> affectedScreenBounds = getSystemScreensBounds()
.stream()
.filter(captureArea::intersects)
.filter(r -> !captureArea.intersection(r).isEmpty())
.toList();

if (SCREENCAST_DEBUG) {
Expand All @@ -162,7 +162,7 @@ public static synchronized void getRGBPixels(

int[] affectedScreenBoundsArray = affectedScreenBounds
.stream()
.filter(captureArea::intersects)
.filter(r -> !captureArea.intersection(r).isEmpty())
.flatMapToInt(bounds -> IntStream.of(
bounds.x, bounds.y,
bounds.width, bounds.height
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package com.sun.glass.ui.gtk.screencast;

import java.awt.Dimension;
import java.awt.Rectangle;
import com.sun.javafx.geom.Dimension;
import com.sun.javafx.geom.Rectangle;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

package com.sun.glass.ui.gtk.screencast;

import java.awt.Dimension;
import java.awt.Rectangle;
import com.sun.javafx.geom.Dimension;
import com.sun.javafx.geom.Rectangle;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
/*
* Copyright (c) 2024, 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
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

package com.sun.javafx.geom;

import java.util.Objects;

public class Dimension {
public int width;
public int height;

public Dimension(int width, int height) {
this.width = width;
this.height = height;
}

public boolean equals(Object obj) {
if (obj instanceof Dimension) {
Dimension d = (Dimension) obj;
return (width == d.width) && (height == d.height);
}
return false;
}

public int hashCode() {
return Objects.hash(width, height);
}
}

0 comments on commit 880a833

Please sign in to comment.