Loading packages/SystemUI/res/drawable/ic_qs_caffeine_off.xml 0 → 100644 +26 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2015 The CyanogenMod 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="64dp" android:height="64dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#4DFFFFFF" android:pathData="M2,21H20V19H2M20,8H18V5H20M20,3H4V13A4,4 0 0,0 8,17H14A4,4 0 0,0 18,13V10H20A2,2 0 0,0 22,8V5C22,3.89 21.1,3 20,3Z" /> </vector> packages/SystemUI/res/drawable/ic_qs_caffeine_on.xml 0 → 100644 +26 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2015 The CyanogenMod 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="64dp" android:height="64dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#FFFFFFFF" android:pathData="M2,21H20V19H2M20,8H18V5H20M20,3H4V13A4,4 0 0,0 8,17H14A4,4 0 0,0 18,13V10H20A2,2 0 0,0 22,8V5C22,3.89 21.1,3 20,3Z" /> </vector> packages/SystemUI/res/values/cm_strings.xml +6 −0 Original line number Diff line number Diff line Loading @@ -104,6 +104,7 @@ <string name="quick_settings_profiles_off">Profiles disabled</string> <string name="quick_settings_heads_up_label">Heads up</string> <string name="quick_settings_battery_saver_label">Battery saver</string> <string name="quick_settings_caffeine_label">Caffeine</string> <!-- Content description of the sync tile in quick settings when off (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_sync_off">Sync off.</string> Loading Loading @@ -182,6 +183,11 @@ <!-- Announcement made when heads up changes to on (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_heads_up_changed_on">Heads up turned on.</string> <!-- Content description of the caffeine tile in quick settings when off (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_caffeine_off">Caffeine off.</string> <!-- Content description of the caffeine tile in quick settings when on (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_caffeine_on">Caffeine on.</string> <!-- Content description of the battery saver tile in quick settings when off (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_battery_saver_off">Battery saver off.</string> <!-- Content description of the battery saver tile in quick settings when on (not shown on the screen). [CHAR LIMIT=NONE] --> Loading packages/SystemUI/src/com/android/systemui/qs/tiles/CaffeineTile.java 0 → 100644 +202 −0 Original line number Diff line number Diff line /* * Copyright (C) 2016 The CyanogenMod 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.systemui.qs.tiles; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.database.ContentObserver; import android.net.Uri; import android.os.CountDownTimer; import android.os.PowerManager; import android.os.SystemClock; import android.provider.Settings; import com.android.systemui.qs.QSTile; import com.android.systemui.R; import org.cyanogenmod.internal.logging.CMMetricsLogger; /** Quick settings tile: Caffeine **/ public class CaffeineTile extends QSTile<QSTile.BooleanState> { private final PowerManager.WakeLock mWakeLock; private int mSecondsRemaining; private int mDuration; private static int[] DURATIONS = new int[] { 5 * 60, // 5 min 10 * 60, // 10 min 30 * 60, // 30 min -1, // infinity }; private CountDownTimer mCountdownTimer = null; public long mLastClickTime = -1; private final Receiver mReceiver = new Receiver(); private boolean mListening; public CaffeineTile(Host host) { super(host); mWakeLock = ((PowerManager) mContext.getSystemService(Context.POWER_SERVICE)).newWakeLock( PowerManager.FULL_WAKE_LOCK, "CaffeineTile"); mReceiver.init(); } @Override protected BooleanState newTileState() { return new BooleanState(); } @Override protected void handleDestroy() { super.handleDestroy(); stopCountDown(); mReceiver.destroy(); if (mWakeLock.isHeld()) { mWakeLock.release(); } } @Override public void setListening(boolean listening) { } @Override public void handleClick() { // If last user clicks < 5 seconds // we cycle different duration // otherwise toggle on/off if (mWakeLock.isHeld() && (mLastClickTime != -1) && (SystemClock.elapsedRealtime() - mLastClickTime < 5000)) { // cycle duration mDuration++; if (mDuration >= DURATIONS.length) { // all durations cycled, turn if off mDuration = -1; stopCountDown(); if (mWakeLock.isHeld()) { mWakeLock.release(); } } else { // change duration startCountDown(DURATIONS[mDuration]); if (!mWakeLock.isHeld()) { mWakeLock.acquire(); } } } else { // toggle if (mWakeLock.isHeld()) { mWakeLock.release(); stopCountDown(); } else { mWakeLock.acquire(); mDuration = 0; startCountDown(DURATIONS[mDuration]); } } mLastClickTime = SystemClock.elapsedRealtime(); refreshState(); } private void startCountDown(long duration) { stopCountDown(); mSecondsRemaining = (int)duration; if (duration == -1) { // infinity timing, no need to start timer return; } mCountdownTimer = new CountDownTimer(duration * 1000, 1000) { @Override public void onTick(long millisUntilFinished) { mSecondsRemaining = (int) (millisUntilFinished / 1000); refreshState(); } @Override public void onFinish() { if (mWakeLock.isHeld()) mWakeLock.release(); refreshState(); } }.start(); } private void stopCountDown() { if (mCountdownTimer != null) { mCountdownTimer.cancel(); mCountdownTimer = null; } } private String formatValueWithRemainingTime() { if (mSecondsRemaining == -1) { return "\u221E"; // infinity } return String.format("%02d:%02d", mSecondsRemaining / 60 % 60, mSecondsRemaining % 60); } @Override protected void handleUpdateState(BooleanState state, Object arg) { state.value = mWakeLock.isHeld(); state.visible = true; if (state.value) { state.label = formatValueWithRemainingTime(); state.icon = ResourceIcon.get(R.drawable.ic_qs_caffeine_on); state.contentDescription = mContext.getString( R.string.accessibility_quick_settings_caffeine_on); } else { state.label = mContext.getString(R.string.quick_settings_caffeine_label); state.icon = ResourceIcon.get(R.drawable.ic_qs_caffeine_off); state.contentDescription = mContext.getString( R.string.accessibility_quick_settings_caffeine_off); } } @Override public int getMetricsCategory() { return CMMetricsLogger.TILE_CAFFEINE; } private final class Receiver extends BroadcastReceiver { public void init() { // Register for Intent broadcasts for... IntentFilter filter = new IntentFilter(); filter.addAction(Intent.ACTION_SCREEN_OFF); mContext.registerReceiver(this, filter, null, mHandler); } public void destroy() { mContext.unregisterReceiver(this); } @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (Intent.ACTION_SCREEN_OFF.equals(action)) { // disable caffeine if user force off (power button) stopCountDown(); if (mWakeLock.isHeld()) mWakeLock.release(); refreshState(); } } } } packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java +4 −0 Original line number Diff line number Diff line Loading @@ -42,6 +42,7 @@ import com.android.systemui.qs.tiles.AirplaneModeTile; import com.android.systemui.qs.tiles.AmbientDisplayTile; import com.android.systemui.qs.tiles.BatterySaverTile; import com.android.systemui.qs.tiles.BluetoothTile; import com.android.systemui.qs.tiles.CaffeineTile; import com.android.systemui.qs.tiles.CastTile; import com.android.systemui.qs.tiles.CellularTile; import com.android.systemui.qs.tiles.ColorInversionTile; Loading Loading @@ -363,6 +364,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (tileSpec.equals("live_display")) return new LiveDisplayTile(this); else if (tileSpec.equals("heads_up")) return new HeadsUpTile(this); else if (tileSpec.equals("battery_saver")) return new BatterySaverTile(this); else if (tileSpec.equals("caffeine")) return new CaffeineTile(this); else if (tileSpec.startsWith(IntentTile.PREFIX)) return IntentTile.create(this,tileSpec); else throw new IllegalArgumentException("Bad tile spec: " + tileSpec); } Loading Loading @@ -456,6 +458,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (spec.equals("live_display")) return R.string.live_display_title; else if (spec.equals("heads_up")) return R.string.quick_settings_heads_up_label; else if (spec.equals("battery_saver")) return R.string.quick_settings_battery_saver_label; else if (spec.equals("caffeine")) return R.string.quick_settings_caffeine_label; return 0; } Loading Loading @@ -486,6 +489,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (spec.equals("live_display")) return R.drawable.ic_livedisplay_auto; else if (spec.equals("heads_up")) return R.drawable.ic_qs_heads_up_on; else if (spec.equals("battery_saver")) return R.drawable.ic_qs_battery_saver_on; else if (spec.equals("caffeine")) return R.drawable.ic_qs_caffeine_on; return 0; } Loading Loading
packages/SystemUI/res/drawable/ic_qs_caffeine_off.xml 0 → 100644 +26 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2015 The CyanogenMod 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="64dp" android:height="64dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#4DFFFFFF" android:pathData="M2,21H20V19H2M20,8H18V5H20M20,3H4V13A4,4 0 0,0 8,17H14A4,4 0 0,0 18,13V10H20A2,2 0 0,0 22,8V5C22,3.89 21.1,3 20,3Z" /> </vector>
packages/SystemUI/res/drawable/ic_qs_caffeine_on.xml 0 → 100644 +26 −0 Original line number Diff line number Diff line <?xml version="1.0" encoding="utf-8"?> <!-- Copyright (c) 2015 The CyanogenMod 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. --> <vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="64dp" android:height="64dp" android:viewportWidth="24" android:viewportHeight="24"> <path android:fillColor="#FFFFFFFF" android:pathData="M2,21H20V19H2M20,8H18V5H20M20,3H4V13A4,4 0 0,0 8,17H14A4,4 0 0,0 18,13V10H20A2,2 0 0,0 22,8V5C22,3.89 21.1,3 20,3Z" /> </vector>
packages/SystemUI/res/values/cm_strings.xml +6 −0 Original line number Diff line number Diff line Loading @@ -104,6 +104,7 @@ <string name="quick_settings_profiles_off">Profiles disabled</string> <string name="quick_settings_heads_up_label">Heads up</string> <string name="quick_settings_battery_saver_label">Battery saver</string> <string name="quick_settings_caffeine_label">Caffeine</string> <!-- Content description of the sync tile in quick settings when off (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_sync_off">Sync off.</string> Loading Loading @@ -182,6 +183,11 @@ <!-- Announcement made when heads up changes to on (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_heads_up_changed_on">Heads up turned on.</string> <!-- Content description of the caffeine tile in quick settings when off (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_caffeine_off">Caffeine off.</string> <!-- Content description of the caffeine tile in quick settings when on (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_caffeine_on">Caffeine on.</string> <!-- Content description of the battery saver tile in quick settings when off (not shown on the screen). [CHAR LIMIT=NONE] --> <string name="accessibility_quick_settings_battery_saver_off">Battery saver off.</string> <!-- Content description of the battery saver tile in quick settings when on (not shown on the screen). [CHAR LIMIT=NONE] --> Loading
packages/SystemUI/src/com/android/systemui/qs/tiles/CaffeineTile.java 0 → 100644 +202 −0 Original line number Diff line number Diff line /* * Copyright (C) 2016 The CyanogenMod 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.systemui.qs.tiles; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import android.database.ContentObserver; import android.net.Uri; import android.os.CountDownTimer; import android.os.PowerManager; import android.os.SystemClock; import android.provider.Settings; import com.android.systemui.qs.QSTile; import com.android.systemui.R; import org.cyanogenmod.internal.logging.CMMetricsLogger; /** Quick settings tile: Caffeine **/ public class CaffeineTile extends QSTile<QSTile.BooleanState> { private final PowerManager.WakeLock mWakeLock; private int mSecondsRemaining; private int mDuration; private static int[] DURATIONS = new int[] { 5 * 60, // 5 min 10 * 60, // 10 min 30 * 60, // 30 min -1, // infinity }; private CountDownTimer mCountdownTimer = null; public long mLastClickTime = -1; private final Receiver mReceiver = new Receiver(); private boolean mListening; public CaffeineTile(Host host) { super(host); mWakeLock = ((PowerManager) mContext.getSystemService(Context.POWER_SERVICE)).newWakeLock( PowerManager.FULL_WAKE_LOCK, "CaffeineTile"); mReceiver.init(); } @Override protected BooleanState newTileState() { return new BooleanState(); } @Override protected void handleDestroy() { super.handleDestroy(); stopCountDown(); mReceiver.destroy(); if (mWakeLock.isHeld()) { mWakeLock.release(); } } @Override public void setListening(boolean listening) { } @Override public void handleClick() { // If last user clicks < 5 seconds // we cycle different duration // otherwise toggle on/off if (mWakeLock.isHeld() && (mLastClickTime != -1) && (SystemClock.elapsedRealtime() - mLastClickTime < 5000)) { // cycle duration mDuration++; if (mDuration >= DURATIONS.length) { // all durations cycled, turn if off mDuration = -1; stopCountDown(); if (mWakeLock.isHeld()) { mWakeLock.release(); } } else { // change duration startCountDown(DURATIONS[mDuration]); if (!mWakeLock.isHeld()) { mWakeLock.acquire(); } } } else { // toggle if (mWakeLock.isHeld()) { mWakeLock.release(); stopCountDown(); } else { mWakeLock.acquire(); mDuration = 0; startCountDown(DURATIONS[mDuration]); } } mLastClickTime = SystemClock.elapsedRealtime(); refreshState(); } private void startCountDown(long duration) { stopCountDown(); mSecondsRemaining = (int)duration; if (duration == -1) { // infinity timing, no need to start timer return; } mCountdownTimer = new CountDownTimer(duration * 1000, 1000) { @Override public void onTick(long millisUntilFinished) { mSecondsRemaining = (int) (millisUntilFinished / 1000); refreshState(); } @Override public void onFinish() { if (mWakeLock.isHeld()) mWakeLock.release(); refreshState(); } }.start(); } private void stopCountDown() { if (mCountdownTimer != null) { mCountdownTimer.cancel(); mCountdownTimer = null; } } private String formatValueWithRemainingTime() { if (mSecondsRemaining == -1) { return "\u221E"; // infinity } return String.format("%02d:%02d", mSecondsRemaining / 60 % 60, mSecondsRemaining % 60); } @Override protected void handleUpdateState(BooleanState state, Object arg) { state.value = mWakeLock.isHeld(); state.visible = true; if (state.value) { state.label = formatValueWithRemainingTime(); state.icon = ResourceIcon.get(R.drawable.ic_qs_caffeine_on); state.contentDescription = mContext.getString( R.string.accessibility_quick_settings_caffeine_on); } else { state.label = mContext.getString(R.string.quick_settings_caffeine_label); state.icon = ResourceIcon.get(R.drawable.ic_qs_caffeine_off); state.contentDescription = mContext.getString( R.string.accessibility_quick_settings_caffeine_off); } } @Override public int getMetricsCategory() { return CMMetricsLogger.TILE_CAFFEINE; } private final class Receiver extends BroadcastReceiver { public void init() { // Register for Intent broadcasts for... IntentFilter filter = new IntentFilter(); filter.addAction(Intent.ACTION_SCREEN_OFF); mContext.registerReceiver(this, filter, null, mHandler); } public void destroy() { mContext.unregisterReceiver(this); } @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (Intent.ACTION_SCREEN_OFF.equals(action)) { // disable caffeine if user force off (power button) stopCountDown(); if (mWakeLock.isHeld()) mWakeLock.release(); refreshState(); } } } }
packages/SystemUI/src/com/android/systemui/statusbar/phone/QSTileHost.java +4 −0 Original line number Diff line number Diff line Loading @@ -42,6 +42,7 @@ import com.android.systemui.qs.tiles.AirplaneModeTile; import com.android.systemui.qs.tiles.AmbientDisplayTile; import com.android.systemui.qs.tiles.BatterySaverTile; import com.android.systemui.qs.tiles.BluetoothTile; import com.android.systemui.qs.tiles.CaffeineTile; import com.android.systemui.qs.tiles.CastTile; import com.android.systemui.qs.tiles.CellularTile; import com.android.systemui.qs.tiles.ColorInversionTile; Loading Loading @@ -363,6 +364,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (tileSpec.equals("live_display")) return new LiveDisplayTile(this); else if (tileSpec.equals("heads_up")) return new HeadsUpTile(this); else if (tileSpec.equals("battery_saver")) return new BatterySaverTile(this); else if (tileSpec.equals("caffeine")) return new CaffeineTile(this); else if (tileSpec.startsWith(IntentTile.PREFIX)) return IntentTile.create(this,tileSpec); else throw new IllegalArgumentException("Bad tile spec: " + tileSpec); } Loading Loading @@ -456,6 +458,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (spec.equals("live_display")) return R.string.live_display_title; else if (spec.equals("heads_up")) return R.string.quick_settings_heads_up_label; else if (spec.equals("battery_saver")) return R.string.quick_settings_battery_saver_label; else if (spec.equals("caffeine")) return R.string.quick_settings_caffeine_label; return 0; } Loading Loading @@ -486,6 +489,7 @@ public class QSTileHost implements QSTile.Host, Tunable { else if (spec.equals("live_display")) return R.drawable.ic_livedisplay_auto; else if (spec.equals("heads_up")) return R.drawable.ic_qs_heads_up_on; else if (spec.equals("battery_saver")) return R.drawable.ic_qs_battery_saver_on; else if (spec.equals("caffeine")) return R.drawable.ic_qs_caffeine_on; return 0; } Loading