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();
requestConditions(boolean request)30     void requestConditions(boolean request);
getManualRule()31     ZenRule getManualRule();
getConfig()32     ZenModeConfig getConfig();
getNextAlarm()33     long getNextAlarm();
setUserId(int userId)34     void setUserId(int userId);
isZenAvailable()35     boolean isZenAvailable();
getEffectsSuppressor()36     ComponentName getEffectsSuppressor();
isCountdownConditionSupported()37     boolean isCountdownConditionSupported();
getCurrentUser()38     int getCurrentUser();
isVolumeRestricted()39     boolean isVolumeRestricted();
40 
41     public static class Callback {
onZenChanged(int zen)42         public void onZenChanged(int zen) {}
onConditionsChanged(Condition[] conditions)43         public void onConditionsChanged(Condition[] conditions) {}
onNextAlarmChanged()44         public void onNextAlarmChanged() {}
onZenAvailableChanged(boolean available)45         public void onZenAvailableChanged(boolean available) {}
onEffectsSupressorChanged()46         public void onEffectsSupressorChanged() {}
onManualRuleChanged(ZenRule rule)47         public void onManualRuleChanged(ZenRule rule) {}
onConfigChanged(ZenModeConfig config)48         public void onConfigChanged(ZenModeConfig config) {}
49     }
50 
51 }