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 import com.android.systemui.statusbar.policy.ZenModeController.Callback; 26 27 public interface ZenModeController extends CallbackController<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(); isZenAvailable()33 boolean isZenAvailable(); getEffectsSuppressor()34 ComponentName getEffectsSuppressor(); isCountdownConditionSupported()35 boolean isCountdownConditionSupported(); getCurrentUser()36 int getCurrentUser(); isVolumeRestricted()37 boolean isVolumeRestricted(); 38 39 public static interface Callback { onZenChanged(int zen)40 default void onZenChanged(int zen) {} onConditionsChanged(Condition[] conditions)41 default void onConditionsChanged(Condition[] conditions) {} onNextAlarmChanged()42 default void onNextAlarmChanged() {} onZenAvailableChanged(boolean available)43 default void onZenAvailableChanged(boolean available) {} onEffectsSupressorChanged()44 default void onEffectsSupressorChanged() {} onManualRuleChanged(ZenRule rule)45 default void onManualRuleChanged(ZenRule rule) {} onConfigChanged(ZenModeConfig config)46 default void onConfigChanged(ZenModeConfig config) {} 47 } 48 49 }