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
25import com.android.systemui.statusbar.policy.ZenModeController.Callback;
26
27public interface ZenModeController extends CallbackController<Callback> {
28    void setZen(int zen, Uri conditionId, String reason);
29    int getZen();
30    ZenRule getManualRule();
31    ZenModeConfig getConfig();
32    long getNextAlarm();
33    boolean isZenAvailable();
34    ComponentName getEffectsSuppressor();
35    boolean isCountdownConditionSupported();
36    int getCurrentUser();
37    boolean isVolumeRestricted();
38    boolean areNotificationsHiddenInShade();
39
40    public static interface Callback {
41        default void onZenChanged(int zen) {}
42        default void onConditionsChanged(Condition[] conditions) {}
43        default void onNextAlarmChanged() {}
44        default void onZenAvailableChanged(boolean available) {}
45        default void onEffectsSupressorChanged() {}
46        default void onManualRuleChanged(ZenRule rule) {}
47        default void onConfigChanged(ZenModeConfig config) {}
48    }
49
50}