mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-20 19:38:21 +00:00
This is necessary because otherwise those are included in several gradle projects. Gradle doesn't support the same files imported in different projects, and it removes them from a random one if it happens, resulting in missing symbols. This extracts the shared files in a new target, and adds it as dep of the original target. Test: Build launcher + execute a few tests manually with gradle + verify that Launcher.java can resolve all symbols with gradle config Bug: 262267728 Change-Id: Ida5b25c45320d517603834112f4699e4d3344c03
139 lines
3.9 KiB
Java
139 lines
3.9 KiB
Java
/*
|
|
* Copyright (C) 2022 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.testing.shared;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
|
|
/**
|
|
* Request object for querying a workspace cell region in Rect.
|
|
*/
|
|
public class WorkspaceCellCenterRequest implements TestInformationRequest {
|
|
public final int cellX;
|
|
public final int cellY;
|
|
public final int spanX;
|
|
public final int spanY;
|
|
|
|
@Override
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public void writeToParcel(Parcel dest, int flags) {
|
|
dest.writeInt(cellX);
|
|
dest.writeInt(cellY);
|
|
dest.writeInt(spanX);
|
|
dest.writeInt(spanY);
|
|
}
|
|
|
|
public static final Parcelable.Creator<WorkspaceCellCenterRequest> CREATOR =
|
|
new Parcelable.Creator<WorkspaceCellCenterRequest>() {
|
|
|
|
@Override
|
|
public WorkspaceCellCenterRequest createFromParcel(Parcel source) {
|
|
return new WorkspaceCellCenterRequest(source);
|
|
}
|
|
|
|
@Override
|
|
public WorkspaceCellCenterRequest[] newArray(int size) {
|
|
return new WorkspaceCellCenterRequest[size];
|
|
}
|
|
};
|
|
|
|
private WorkspaceCellCenterRequest(int cellX, int cellY, int spanX, int spanY) {
|
|
this.cellX = cellX;
|
|
this.cellY = cellY;
|
|
this.spanX = spanX;
|
|
this.spanY = spanY;
|
|
}
|
|
|
|
private WorkspaceCellCenterRequest(Parcel in) {
|
|
this(in.readInt(), in.readInt(), in.readInt(), in.readInt());
|
|
}
|
|
|
|
/**
|
|
* Create a builder for WorkspaceCellRectRequest.
|
|
*
|
|
* @return WorkspaceCellRectRequest builder.
|
|
*/
|
|
public static WorkspaceCellCenterRequest.Builder builder() {
|
|
return new WorkspaceCellCenterRequest.Builder();
|
|
}
|
|
|
|
@Override
|
|
public String getRequestName() {
|
|
return TestProtocol.REQUEST_WORKSPACE_CELL_CENTER;
|
|
}
|
|
|
|
/**
|
|
* WorkspaceCellRectRequest Builder.
|
|
*/
|
|
public static final class Builder {
|
|
private int mCellX;
|
|
private int mCellY;
|
|
private int mSpanX;
|
|
private int mSpanY;
|
|
|
|
private Builder() {
|
|
this.mCellX = 0;
|
|
this.mCellY = 0;
|
|
this.mSpanX = 1;
|
|
this.mSpanY = 1;
|
|
}
|
|
|
|
/**
|
|
* Set X coordinate of upper left corner expressed as a cell position
|
|
*/
|
|
public WorkspaceCellCenterRequest.Builder setCellX(int x) {
|
|
this.mCellX = x;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Set Y coordinate of upper left corner expressed as a cell position
|
|
*/
|
|
public WorkspaceCellCenterRequest.Builder setCellY(int y) {
|
|
this.mCellY = y;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Set span Width in cells
|
|
*/
|
|
public WorkspaceCellCenterRequest.Builder setSpanX(int x) {
|
|
this.mSpanX = x;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* Set span Height in cells
|
|
*/
|
|
public WorkspaceCellCenterRequest.Builder setSpanY(int y) {
|
|
this.mSpanY = y;
|
|
return this;
|
|
}
|
|
|
|
/**
|
|
* build the WorkspaceCellRectRequest.
|
|
*/
|
|
public WorkspaceCellCenterRequest build() {
|
|
return new WorkspaceCellCenterRequest(mCellX, mCellY, mSpanX, mSpanY);
|
|
}
|
|
}
|
|
}
|