Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 4ca2792

Browse files
author
duke
committedAug 29, 2020
Automatic merge of client:master into master
2 parents 80d4f49 + 22afbe5 commit 4ca2792

File tree

1 file changed

+5
-165
lines changed

1 file changed

+5
-165
lines changed
 

‎src/java.desktop/unix/classes/sun/awt/X11/XToolkit.java

+5-165
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@
121121
import java.util.Map;
122122
import java.util.NoSuchElementException;
123123
import java.util.Properties;
124-
import java.util.Set;
125124
import java.util.SortedMap;
126125
import java.util.TreeMap;
127126
import java.util.Vector;
@@ -213,12 +212,6 @@ public final class XToolkit extends UNIXToolkit implements Runnable {
213212

214213
private static XMouseInfoPeer xPeer;
215214

216-
/**
217-
* Should we check "_NET_WM_STRUT/_NET_WM_STRUT_PARTIAL" during insets
218-
* calculation.
219-
*/
220-
private static Boolean checkSTRUT;
221-
222215
static {
223216
initSecurityWarning();
224217
if (GraphicsEnvironment.isHeadless()) {
@@ -861,24 +854,10 @@ public Insets getScreenInsets(final GraphicsConfiguration gc) {
861854
}
862855

863856
XToolkit.awtLock();
864-
try
865-
{
866-
X11GraphicsEnvironment x11ge = (X11GraphicsEnvironment)
867-
GraphicsEnvironment.getLocalGraphicsEnvironment();
868-
X11GraphicsConfig x11gc = (X11GraphicsConfig) gc;
869-
long root = XlibUtil.getRootWindow(x11gc.getDevice().getScreen());
870-
int scale = x11gc.getScale();
871-
if (x11ge.runningXinerama() && checkSTRUT()) {
872-
// implementation based on _NET_WM_STRUT/_NET_WM_STRUT_PARTIAL
873-
Rectangle rootBounds = XlibUtil.getWindowGeometry(root, scale);
874-
Insets insets = getScreenInsetsManually(root, rootBounds,
875-
gc.getBounds(), scale);
876-
if ((insets.left | insets.top | insets.bottom | insets.right) != 0
877-
|| rootBounds == null) {
878-
return insets;
879-
}
880-
}
881-
Rectangle workArea = XToolkit.getWorkArea(root, scale);
857+
try {
858+
X11GraphicsDevice x11gd = (X11GraphicsDevice) gd;
859+
long root = XlibUtil.getRootWindow(x11gd.getScreen());
860+
Rectangle workArea = getWorkArea(root, x11gd.getScaleFactor());
882861
Rectangle screen = gc.getBounds();
883862
if (workArea != null && screen.contains(workArea.getLocation())) {
884863
workArea = workArea.intersection(screen);
@@ -890,150 +869,11 @@ public Insets getScreenInsets(final GraphicsConfiguration gc) {
890869
}
891870
// Note that it is better to return zeros than inadequate values
892871
return new Insets(0, 0, 0, 0);
893-
}
894-
finally
895-
{
872+
} finally {
896873
XToolkit.awtUnlock();
897874
}
898875
}
899876

900-
/**
901-
* Returns the value of "sun.awt.X11.checkSTRUT" property. Default value is
902-
* {@code false}.
903-
*/
904-
private static boolean checkSTRUT() {
905-
if (checkSTRUT == null) {
906-
checkSTRUT = AccessController.doPrivileged(
907-
new GetBooleanAction("sun.awt.X11.checkSTRUT"));
908-
}
909-
return checkSTRUT;
910-
}
911-
912-
/*
913-
* Manual calculation of screen insets: get all the windows with
914-
* _NET_WM_STRUT/_NET_WM_STRUT_PARTIAL hints and add these
915-
* hints' values to screen insets.
916-
*
917-
* This method should be called under XToolkit.awtLock()
918-
*
919-
* This method is unused by default because of two reasons:
920-
* - Iteration over windows may be extremely slow, and execution of
921-
* getScreenInsets() can be x100 slower than in one monitor config.
922-
* - _NET_WM_STRUT/_NET_WM_STRUT_PARTIAL are hints for the applications.
923-
* WM should take into account these hints when "_NET_WORKAREA" is
924-
* calculated, but the system panels do not necessarily contain these
925-
* hints(Gnome 3 for example).
926-
*/
927-
private Insets getScreenInsetsManually(long root, Rectangle rootBounds,
928-
Rectangle screenBounds, int scale)
929-
{
930-
/*
931-
* During the manual calculation of screen insets we iterate
932-
* all the X windows hierarchy starting from root window. This
933-
* constant is the max level inspected in this hierarchy.
934-
* 3 is a heuristic value: I suppose any the toolbar-like
935-
* window is a child of either root or desktop window.
936-
*/
937-
final int MAX_NESTED_LEVEL = 3;
938-
939-
XAtom XA_NET_WM_STRUT = XAtom.get("_NET_WM_STRUT");
940-
XAtom XA_NET_WM_STRUT_PARTIAL = XAtom.get("_NET_WM_STRUT_PARTIAL");
941-
942-
Insets insets = new Insets(0, 0, 0, 0);
943-
944-
java.util.List<Object> search = new LinkedList<>();
945-
search.add(root);
946-
search.add(0);
947-
while (!search.isEmpty())
948-
{
949-
long window = (Long)search.remove(0);
950-
int windowLevel = (Integer)search.remove(0);
951-
952-
/*
953-
* Note that most of the modern window managers unmap
954-
* application window if it is iconified. Thus, any
955-
* _NET_WM_STRUT[_PARTIAL] hints for iconified windows
956-
* are not included to the screen insets.
957-
*/
958-
if (XlibUtil.getWindowMapState(window) == XConstants.IsUnmapped)
959-
{
960-
continue;
961-
}
962-
963-
long native_ptr = Native.allocateLongArray(4);
964-
try
965-
{
966-
// first, check if _NET_WM_STRUT or _NET_WM_STRUT_PARTIAL are present
967-
// if both are set on the window, _NET_WM_STRUT_PARTIAL is used (see _NET spec)
968-
boolean strutPresent = XA_NET_WM_STRUT_PARTIAL.getAtomData(window, XAtom.XA_CARDINAL, native_ptr, 4);
969-
if (!strutPresent)
970-
{
971-
strutPresent = XA_NET_WM_STRUT.getAtomData(window, XAtom.XA_CARDINAL, native_ptr, 4);
972-
}
973-
if (strutPresent)
974-
{
975-
// second, verify that window is located on the proper screen
976-
Rectangle windowBounds = XlibUtil.getWindowGeometry(window,
977-
scale);
978-
if (windowLevel > 1)
979-
{
980-
windowBounds = XlibUtil.translateCoordinates(window, root,
981-
windowBounds,
982-
scale);
983-
}
984-
// if _NET_WM_STRUT_PARTIAL is present, we should use its values to detect
985-
// if the struts area intersects with screenBounds, however some window
986-
// managers don't set this hint correctly, so we just get intersection with windowBounds
987-
if (windowBounds != null && windowBounds.intersects(screenBounds))
988-
{
989-
int left = scaleDown((int)Native.getLong(native_ptr, 0), scale);
990-
int right = scaleDown((int)Native.getLong(native_ptr, 1), scale);
991-
int top = scaleDown((int)Native.getLong(native_ptr, 2), scale);
992-
int bottom = scaleDown((int)Native.getLong(native_ptr, 3), scale);
993-
994-
/*
995-
* struts could be relative to root window bounds, so
996-
* make them relative to the screen bounds in this case
997-
*/
998-
left = rootBounds.x + left > screenBounds.x ?
999-
rootBounds.x + left - screenBounds.x : 0;
1000-
right = rootBounds.x + rootBounds.width - right <
1001-
screenBounds.x + screenBounds.width ?
1002-
screenBounds.x + screenBounds.width -
1003-
(rootBounds.x + rootBounds.width - right) : 0;
1004-
top = rootBounds.y + top > screenBounds.y ?
1005-
rootBounds.y + top - screenBounds.y : 0;
1006-
bottom = rootBounds.y + rootBounds.height - bottom <
1007-
screenBounds.y + screenBounds.height ?
1008-
screenBounds.y + screenBounds.height -
1009-
(rootBounds.y + rootBounds.height - bottom) : 0;
1010-
1011-
insets.left = Math.max(left, insets.left);
1012-
insets.right = Math.max(right, insets.right);
1013-
insets.top = Math.max(top, insets.top);
1014-
insets.bottom = Math.max(bottom, insets.bottom);
1015-
}
1016-
}
1017-
}
1018-
finally
1019-
{
1020-
XlibWrapper.unsafe.freeMemory(native_ptr);
1021-
}
1022-
1023-
if (windowLevel < MAX_NESTED_LEVEL)
1024-
{
1025-
Set<Long> children = XlibUtil.getChildWindows(window);
1026-
for (long child : children)
1027-
{
1028-
search.add(child);
1029-
search.add(windowLevel + 1);
1030-
}
1031-
}
1032-
}
1033-
1034-
return insets;
1035-
}
1036-
1037877
/*
1038878
* The current implementation of disabling background erasing for
1039879
* canvases is that we don't set any native background color

0 commit comments

Comments
 (0)
This repository has been archived.