1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
/*
* Copyright (C) 2021 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 android.accessibilityservice;
import android.annotation.FloatRange;
import android.annotation.IntDef;
import android.annotation.NonNull;
import android.os.Parcel;
import android.os.Parcelable;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* This class describes the magnification config for {@link AccessibilityService} to control the
* magnification.
*
* <p>
* When the magnification config uses {@link #MAGNIFICATION_MODE_DEFAULT},
* {@link AccessibilityService} will be able to control the activated magnifier on the display.
* If there is no magnifier activated, it controls the last-activated magnification mode.
* If there is no magnifier activated before, it controls full-screen magnifier by default.
* </p>
*
* <p>
* When the magnification config uses {@link #MAGNIFICATION_MODE_FULLSCREEN}.
* {@link AccessibilityService} will be able to control full-screen magnifier on the display.
* </p>
*
* <p>
* When the magnification config uses {@link #MAGNIFICATION_MODE_WINDOW} and the platform
* supports {@link android.content.pm.PackageManager#FEATURE_WINDOW_MAGNIFICATION} feature.
* {@link AccessibilityService} will be able to control window magnifier on the display.
* </p>
*
* <p>
* If the other magnification configs, scale centerX and centerY, are not set by the
* {@link Builder}, the configs should be current values or default values. And the center
* position ordinarily is the center of the screen.
* </p>
*/
public final class MagnificationConfig implements Parcelable {
/** The controlling magnification mode. It controls the activated magnifier. */
public static final int MAGNIFICATION_MODE_DEFAULT = 0;
/** The controlling magnification mode. It controls full-screen magnifier. */
public static final int MAGNIFICATION_MODE_FULLSCREEN = 1;
/**
* The controlling magnification mode. It is valid if the platform supports
* {@link android.content.pm.PackageManager#FEATURE_WINDOW_MAGNIFICATION} feature.
*/
public static final int MAGNIFICATION_MODE_WINDOW = 2;
/** @hide */
@IntDef(prefix = {"MAGNIFICATION_MODE"}, value = {
MAGNIFICATION_MODE_DEFAULT,
MAGNIFICATION_MODE_FULLSCREEN,
MAGNIFICATION_MODE_WINDOW,
})
@Retention(RetentionPolicy.SOURCE)
@interface MagnificationMode {
}
private int mMode = MAGNIFICATION_MODE_DEFAULT;
private float mScale = Float.NaN;
private float mCenterX = Float.NaN;
private float mCenterY = Float.NaN;
private MagnificationConfig() {
/* do nothing */
}
private MagnificationConfig(@NonNull Parcel parcel) {
mMode = parcel.readInt();
mScale = parcel.readFloat();
mCenterX = parcel.readFloat();
mCenterY = parcel.readFloat();
}
/**
* Returns the magnification mode that is the current activated mode or the controlling mode of
* the config.
*
* @return The magnification mode
*/
public int getMode() {
return mMode;
}
/**
* Returns the magnification scale of the controlling magnifier
*
* @return the scale If the controlling magnifier is not activated, it returns 1 by default
*/
public float getScale() {
return mScale;
}
/**
* Returns the screen-relative X coordinate of the center of the magnification viewport.
*
* @return the X coordinate. If the controlling magnifier is {@link #MAGNIFICATION_MODE_WINDOW}
* but not enabled, it returns {@link Float#NaN}. If the controlling magnifier is {@link
* #MAGNIFICATION_MODE_FULLSCREEN} but not enabled, it returns 0
*/
public float getCenterX() {
return mCenterX;
}
/**
* Returns the screen-relative Y coordinate of the center of the magnification viewport.
*
* @return the Y coordinate If the controlling magnifier is {@link #MAGNIFICATION_MODE_WINDOW}
* but not enabled, it returns {@link Float#NaN}. If the controlling magnifier is {@link
* #MAGNIFICATION_MODE_FULLSCREEN} but not enabled, it returns 0
*/
public float getCenterY() {
return mCenterY;
}
@NonNull
@Override
public String toString() {
StringBuilder stringBuilder = new StringBuilder("MagnificationConfig[");
stringBuilder.append("mode: ").append(getMode());
stringBuilder.append(", ");
stringBuilder.append("scale: ").append(getScale());
stringBuilder.append(", ");
stringBuilder.append("centerX: ").append(getCenterX());
stringBuilder.append(", ");
stringBuilder.append("centerY: ").append(getCenterY());
stringBuilder.append("] ");
return stringBuilder.toString();
}
@Override
public int describeContents() {
return 0;
}
@Override
public void writeToParcel(@NonNull Parcel parcel, int flags) {
parcel.writeInt(mMode);
parcel.writeFloat(mScale);
parcel.writeFloat(mCenterX);
parcel.writeFloat(mCenterY);
}
/**
* Builder for creating {@link MagnificationConfig} objects.
*/
public static final class Builder {
private int mMode = MAGNIFICATION_MODE_DEFAULT;
private float mScale = Float.NaN;
private float mCenterX = Float.NaN;
private float mCenterY = Float.NaN;
/**
* Creates a new Builder.
*/
public Builder() {
}
/**
* Sets the magnification mode.
*
* @param mode The magnification mode
* @return This builder
*/
@NonNull
public MagnificationConfig.Builder setMode(@MagnificationMode int mode) {
mMode = mode;
return this;
}
/**
* Sets the magnification scale.
*
* @param scale The magnification scale, in the range [1, 8]
* @return This builder
*/
@NonNull
public MagnificationConfig.Builder setScale(@FloatRange(from = 1f, to = 8f) float scale) {
mScale = scale;
return this;
}
/**
* Sets the X coordinate of the center of the magnification viewport.
* The controlling magnifier will apply the given position.
*
* @param centerX the screen-relative X coordinate around which to
* center and scale that is in the range [0, screenWidth],
* or {@link Float#NaN} to leave unchanged
* @return This builder
*/
@NonNull
public MagnificationConfig.Builder setCenterX(float centerX) {
mCenterX = centerX;
return this;
}
/**
* Sets the Y coordinate of the center of the magnification viewport.
* The controlling magnifier will apply the given position.
*
* @param centerY the screen-relative Y coordinate around which to
* center and scale that is in the range [0, screenHeight],
* or {@link Float#NaN} to leave unchanged
* @return This builder
*/
@NonNull
public MagnificationConfig.Builder setCenterY(float centerY) {
mCenterY = centerY;
return this;
}
/**
* Builds and returns a {@link MagnificationConfig}
*/
@NonNull
public MagnificationConfig build() {
MagnificationConfig magnificationConfig = new MagnificationConfig();
magnificationConfig.mMode = mMode;
magnificationConfig.mScale = mScale;
magnificationConfig.mCenterX = mCenterX;
magnificationConfig.mCenterY = mCenterY;
return magnificationConfig;
}
}
/**
* @see Parcelable.Creator
*/
public static final @NonNull Parcelable.Creator<MagnificationConfig> CREATOR =
new Parcelable.Creator<MagnificationConfig>() {
public MagnificationConfig createFromParcel(Parcel parcel) {
return new MagnificationConfig(parcel);
}
public MagnificationConfig[] newArray(int size) {
return new MagnificationConfig[size];
}
};
}
|