blob: 790029b9c09f880c626483e325fd0dc50c357baa [file] [log] [blame]
Craig Mautner48d0d182013-06-11 07:53:06 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.view;
18
19import android.content.res.CompatibilityInfo;
Wale Ogunwale7c726682015-02-06 17:34:28 -080020import android.content.res.Configuration;
Craig Mautner48d0d182013-06-11 07:53:06 -070021
Kenny Roote6585b32013-12-13 12:00:26 -080022import java.util.Objects;
Craig Mautner48d0d182013-06-11 07:53:06 -070023
24/** @hide */
25public class DisplayAdjustments {
Craig Mautner48d0d182013-06-11 07:53:06 -070026 public static final DisplayAdjustments DEFAULT_DISPLAY_ADJUSTMENTS = new DisplayAdjustments();
27
28 private volatile CompatibilityInfo mCompatInfo = CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO;
Andrii Kuliana8a9bc52016-10-14 11:00:13 -070029 private Configuration mConfiguration;
Craig Mautner48d0d182013-06-11 07:53:06 -070030
31 public DisplayAdjustments() {
32 }
33
Wale Ogunwale7c726682015-02-06 17:34:28 -080034 public DisplayAdjustments(Configuration configuration) {
Andrii Kuliana8a9bc52016-10-14 11:00:13 -070035 mConfiguration = new Configuration(configuration != null
36 ? configuration : Configuration.EMPTY);
Craig Mautner48d0d182013-06-11 07:53:06 -070037 }
38
Craig Mautner1abaa532013-06-28 12:03:32 -070039 public DisplayAdjustments(DisplayAdjustments daj) {
Wale Ogunwale7c726682015-02-06 17:34:28 -080040 setCompatibilityInfo(daj.mCompatInfo);
Andrii Kuliana8a9bc52016-10-14 11:00:13 -070041 mConfiguration = new Configuration(daj.mConfiguration != null
42 ? daj.mConfiguration : Configuration.EMPTY);
Craig Mautner48d0d182013-06-11 07:53:06 -070043 }
44
45 public void setCompatibilityInfo(CompatibilityInfo compatInfo) {
46 if (this == DEFAULT_DISPLAY_ADJUSTMENTS) {
47 throw new IllegalArgumentException(
48 "setCompatbilityInfo: Cannot modify DEFAULT_DISPLAY_ADJUSTMENTS");
49 }
50 if (compatInfo != null && (compatInfo.isScalingRequired()
51 || !compatInfo.supportsScreen())) {
52 mCompatInfo = compatInfo;
53 } else {
54 mCompatInfo = CompatibilityInfo.DEFAULT_COMPATIBILITY_INFO;
55 }
56 }
57
58 public CompatibilityInfo getCompatibilityInfo() {
59 return mCompatInfo;
60 }
61
Wale Ogunwale7c726682015-02-06 17:34:28 -080062 public void setConfiguration(Configuration configuration) {
Craig Mautner48d0d182013-06-11 07:53:06 -070063 if (this == DEFAULT_DISPLAY_ADJUSTMENTS) {
64 throw new IllegalArgumentException(
Wale Ogunwale7c726682015-02-06 17:34:28 -080065 "setConfiguration: Cannot modify DEFAULT_DISPLAY_ADJUSTMENTS");
Craig Mautner48d0d182013-06-11 07:53:06 -070066 }
Andrii Kuliana8a9bc52016-10-14 11:00:13 -070067 mConfiguration.setTo(configuration != null ? configuration : Configuration.EMPTY);
Craig Mautner48d0d182013-06-11 07:53:06 -070068 }
69
Wale Ogunwale7c726682015-02-06 17:34:28 -080070 public Configuration getConfiguration() {
71 return mConfiguration;
Craig Mautner48d0d182013-06-11 07:53:06 -070072 }
73
74 @Override
75 public int hashCode() {
76 int hash = 17;
Adam Lesinski4ece3d62016-06-16 18:05:41 -070077 hash = hash * 31 + Objects.hashCode(mCompatInfo);
78 hash = hash * 31 + Objects.hashCode(mConfiguration);
Craig Mautner48d0d182013-06-11 07:53:06 -070079 return hash;
80 }
81
82 @Override
83 public boolean equals(Object o) {
84 if (!(o instanceof DisplayAdjustments)) {
85 return false;
86 }
87 DisplayAdjustments daj = (DisplayAdjustments)o;
Kenny Roote6585b32013-12-13 12:00:26 -080088 return Objects.equals(daj.mCompatInfo, mCompatInfo) &&
Wale Ogunwale7c726682015-02-06 17:34:28 -080089 Objects.equals(daj.mConfiguration, mConfiguration);
Craig Mautner48d0d182013-06-11 07:53:06 -070090 }
91}