blob: a608316f8f72f7605496cd75e28dc3a655bb837d [file] [log] [blame]
John Spurlockaf8d6c42014-05-07 17:49:08 -04001/*
2 * Copyright (C) 2014 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 com.android.systemui.qs.tiles;
18
Jason Monk76c67aa2016-02-19 14:49:42 -050019import android.content.Intent;
20import android.provider.Settings;
John Spurlockaf8d6c42014-05-07 17:49:08 -040021import android.provider.Settings.Secure;
Chris Wrenf6e9228b2016-01-26 18:04:35 -050022
Chris Wren457a21c2015-05-06 17:50:34 -040023import com.android.internal.logging.MetricsLogger;
Chris Wrenf6e9228b2016-01-26 18:04:35 -050024import com.android.internal.logging.MetricsProto.MetricsEvent;
John Spurlockaf8d6c42014-05-07 17:49:08 -040025import com.android.systemui.R;
26import com.android.systemui.qs.QSTile;
27import com.android.systemui.qs.SecureSetting;
28
29/** Quick settings tile: Invert colors **/
30public class ColorInversionTile extends QSTile<QSTile.BooleanState> {
31
John Spurlockc6df3cf2014-11-04 19:36:44 -050032 private final AnimationIcon mEnable
Jason Monk1aec93f2016-03-01 09:39:30 -050033 = new AnimationIcon(R.drawable.ic_invert_colors_enable_animation,
34 R.drawable.ic_invert_colors_disable);
John Spurlockc6df3cf2014-11-04 19:36:44 -050035 private final AnimationIcon mDisable
Jason Monk1aec93f2016-03-01 09:39:30 -050036 = new AnimationIcon(R.drawable.ic_invert_colors_disable_animation,
37 R.drawable.ic_invert_colors_enable);
John Spurlockaf8d6c42014-05-07 17:49:08 -040038 private final SecureSetting mSetting;
John Spurlockaf8d6c42014-05-07 17:49:08 -040039
John Spurlocke1f65332014-08-18 15:37:59 -040040 private boolean mListening;
41
John Spurlockaf8d6c42014-05-07 17:49:08 -040042 public ColorInversionTile(Host host) {
43 super(host);
44
45 mSetting = new SecureSetting(mContext, mHandler,
46 Secure.ACCESSIBILITY_DISPLAY_INVERSION_ENABLED) {
47 @Override
John Spurlock18764bf2014-11-19 20:33:40 -050048 protected void handleValueChanged(int value, boolean observedChange) {
Jason Monkba2318e2015-12-08 09:04:23 -050049 handleRefreshState(value);
John Spurlockaf8d6c42014-05-07 17:49:08 -040050 }
51 };
John Spurlockbceed062014-08-10 18:04:16 -040052 }
53
54 @Override
55 protected void handleDestroy() {
56 super.handleDestroy();
John Spurlocke1f65332014-08-18 15:37:59 -040057 mSetting.setListening(false);
John Spurlockaf8d6c42014-05-07 17:49:08 -040058 }
59
60 @Override
Jason Monk62b63a02016-02-02 15:15:31 -050061 public BooleanState newTileState() {
John Spurlockaf8d6c42014-05-07 17:49:08 -040062 return new BooleanState();
63 }
64
65 @Override
John Spurlockccb6b9a2014-05-17 15:54:40 -040066 public void setListening(boolean listening) {
Jason Monkba2318e2015-12-08 09:04:23 -050067 mSetting.setListening(listening);
John Spurlockaf8d6c42014-05-07 17:49:08 -040068 }
69
70 @Override
71 protected void handleUserSwitch(int newUserId) {
Adrian Roos32d88e82014-09-24 17:08:22 +020072 mSetting.setUserId(newUserId);
73 handleRefreshState(mSetting.getValue());
John Spurlockaf8d6c42014-05-07 17:49:08 -040074 }
75
76 @Override
Jason Monk76c67aa2016-02-19 14:49:42 -050077 public Intent getLongClickIntent() {
78 return new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);
79 }
80
81 @Override
John Spurlockaf8d6c42014-05-07 17:49:08 -040082 protected void handleClick() {
Chris Wren9e7283f2015-05-08 17:23:47 -040083 MetricsLogger.action(mContext, getMetricsCategory(), !mState.value);
John Spurlockaf8d6c42014-05-07 17:49:08 -040084 mSetting.setValue(mState.value ? 0 : 1);
85 }
86
87 @Override
88 protected void handleUpdateState(BooleanState state, Object arg) {
89 final int value = arg instanceof Integer ? (Integer) arg : mSetting.getValue();
90 final boolean enabled = value != 0;
John Spurlockaf8d6c42014-05-07 17:49:08 -040091 state.value = enabled;
92 state.label = mContext.getString(R.string.quick_settings_inversion_label);
John Spurlockc6df3cf2014-11-04 19:36:44 -050093 state.icon = enabled ? mEnable : mDisable;
John Spurlockaf8d6c42014-05-07 17:49:08 -040094 }
Selim Cinek4fda7b22014-08-18 22:07:25 +020095
96 @Override
Chris Wren457a21c2015-05-06 17:50:34 -040097 public int getMetricsCategory() {
Chris Wrenf6e9228b2016-01-26 18:04:35 -050098 return MetricsEvent.QS_COLORINVERSION;
Chris Wren457a21c2015-05-06 17:50:34 -040099 }
100
101 @Override
Selim Cinek4fda7b22014-08-18 22:07:25 +0200102 protected String composeChangeAnnouncement() {
103 if (mState.value) {
104 return mContext.getString(
105 R.string.accessibility_quick_settings_color_inversion_changed_on);
106 } else {
107 return mContext.getString(
108 R.string.accessibility_quick_settings_color_inversion_changed_off);
109 }
110 }
John Spurlockaf8d6c42014-05-07 17:49:08 -0400111}