Files
Lawnchair/src/com/android/launcher3/util/WindowBounds.java
T
Sunny Goyal 187b16cb91 Updating window manager estimation logic:
> Moving the code from ApiWrapper to Resource overlays for better maintainability
> Accounting for display cutouts in insets estimation
> Using same logic in display controller and view inset dispatching

Test: Verified on device
Bug: 221961069
Change-Id: I78466353563692ce3f7512b0146ef8b61ef14bc0
2022-03-09 11:15:58 -08:00

99 lines
3.1 KiB
Java

/*
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.launcher3.util;
import android.graphics.Insets;
import android.graphics.Point;
import android.graphics.Rect;
import android.view.WindowInsets.Type;
import android.view.WindowMetrics;
import androidx.annotation.Nullable;
import java.util.Objects;
/**
* Utility class to hold information about window position and layout
*/
public class WindowBounds {
public final Rect bounds;
public final Rect insets;
public final Point availableSize;
public final int rotationHint;
public WindowBounds(Rect bounds, Rect insets) {
this(bounds, insets, -1);
}
public WindowBounds(Rect bounds, Rect insets, int rotationHint) {
this.bounds = bounds;
this.insets = insets;
this.rotationHint = rotationHint;
availableSize = new Point(bounds.width() - insets.left - insets.right,
bounds.height() - insets.top - insets.bottom);
}
public WindowBounds(int width, int height, int availableWidth, int availableHeight,
int rotationHint) {
this.bounds = new Rect(0, 0, width, height);
this.availableSize = new Point(availableWidth, availableHeight);
// We don't care about insets in this case
this.insets = new Rect(0, 0, width - availableWidth, height - availableHeight);
this.rotationHint = rotationHint;
}
@Override
public int hashCode() {
return Objects.hash(bounds, insets);
}
@Override
public boolean equals(@Nullable Object obj) {
if (!(obj instanceof WindowBounds)) {
return false;
}
WindowBounds other = (WindowBounds) obj;
return other.bounds.equals(bounds) && other.insets.equals(insets);
}
@Override
public String toString() {
return "WindowBounds{"
+ "bounds=" + bounds
+ ", insets=" + insets
+ ", availableSize=" + availableSize
+ '}';
}
/**
* Returns true if the device is in landscape orientation
*/
public final boolean isLandscape() {
return availableSize.x > availableSize.y;
}
/**
* Returns the bounds corresponding to the provided WindowMetrics
*/
@SuppressWarnings("NewApi")
public static WindowBounds fromWindowMetrics(WindowMetrics wm) {
Insets insets = wm.getWindowInsets().getInsets(Type.systemBars());
return new WindowBounds(wm.getBounds(),
new Rect(insets.left, insets.top, insets.right, insets.bottom));
}
}