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