1 /* 2 * Copyright (C) 2017 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 5 * except in compliance with the License. You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software distributed under the 10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 11 * KIND, either express or implied. See the License for the specific language governing 12 * permissions and limitations under the License. 13 */ 14 15 package com.android.systemui.plugins; 16 17 import com.android.systemui.plugins.VolumeDialog.Callback; 18 import com.android.systemui.plugins.annotations.DependsOn; 19 import com.android.systemui.plugins.annotations.ProvidesInterface; 20 21 /** 22 * This interface is really just a stub for initialization/teardown, actual handling of 23 * when to show will be done through {@link VolumeDialogController} 24 */ 25 @ProvidesInterface(action = VolumeDialog.ACTION, version = VolumeDialog.VERSION) 26 @DependsOn(target = Callback.class) 27 public interface VolumeDialog extends Plugin { 28 String ACTION = "com.android.systemui.action.PLUGIN_VOLUME"; 29 int VERSION = 1; 30 init(int windowType, Callback callback)31 void init(int windowType, Callback callback); destroy()32 void destroy(); 33 34 @ProvidesInterface(version = VERSION) 35 public interface Callback { 36 int VERSION = 1; 37 onZenSettingsClicked()38 void onZenSettingsClicked(); onZenPrioritySettingsClicked()39 void onZenPrioritySettingsClicked(); 40 } 41 } 42