1 /* 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 17 package com.android.systemui.statusbar.policy; 18 19 import android.content.ComponentName; 20 import android.net.Uri; 21 import android.service.notification.Condition; 22 import android.service.notification.ZenModeConfig; 23 import android.service.notification.ZenModeConfig.ZenRule; 24 25 public interface ZenModeController { addCallback(Callback callback)26 void addCallback(Callback callback); removeCallback(Callback callback)27 void removeCallback(Callback callback); setZen(int zen, Uri conditionId, String reason)28 void setZen(int zen, Uri conditionId, String reason); getZen()29 int getZen(); getManualRule()30 ZenRule getManualRule(); getConfig()31 ZenModeConfig getConfig(); getNextAlarm()32 long getNextAlarm(); setUserId(int userId)33 void setUserId(int userId); isZenAvailable()34 boolean isZenAvailable(); getEffectsSuppressor()35 ComponentName getEffectsSuppressor(); isCountdownConditionSupported()36 boolean isCountdownConditionSupported(); getCurrentUser()37 int getCurrentUser(); isVolumeRestricted()38 boolean isVolumeRestricted(); 39 40 public static class Callback { onZenChanged(int zen)41 public void onZenChanged(int zen) {} onConditionsChanged(Condition[] conditions)42 public void onConditionsChanged(Condition[] conditions) {} onNextAlarmChanged()43 public void onNextAlarmChanged() {} onZenAvailableChanged(boolean available)44 public void onZenAvailableChanged(boolean available) {} onEffectsSupressorChanged()45 public void onEffectsSupressorChanged() {} onManualRuleChanged(ZenRule rule)46 public void onManualRuleChanged(ZenRule rule) {} onConfigChanged(ZenModeConfig config)47 public void onConfigChanged(ZenModeConfig config) {} 48 } 49 50 }