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 String ACTION_VOLUME_UNDO = "com.android.systemui.volume.ACTION_VOLUME_UNDO"; 30 int VERSION = 1; 31 init(int windowType, Callback callback)32 void init(int windowType, Callback callback); destroy()33 void destroy(); 34 35 @ProvidesInterface(version = VERSION) 36 public interface Callback { 37 int VERSION = 1; 38 onZenSettingsClicked()39 void onZenSettingsClicked(); onZenPrioritySettingsClicked()40 void onZenPrioritySettingsClicked(); 41 } 42 } 43