IStatusBar.aidl revision 5565cb42f2ac07fcdbe3aab2503de07fbeb39504
1/**
2 * Copyright (c) 2007, 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.internal.statusbar;
18
19import com.android.internal.statusbar.StatusBarIcon;
20import android.service.notification.StatusBarNotification;
21
22/** @hide */
23oneway interface IStatusBar
24{
25    void setIcon(int index, in StatusBarIcon icon);
26    void removeIcon(int index);
27    void disable(int state);
28    void animateExpandNotificationsPanel();
29    void animateExpandSettingsPanel();
30    void animateCollapsePanels();
31    void setSystemUiVisibility(int vis, int mask);
32    void topAppWindowChanged(boolean menuVisible);
33    void setImeWindowStatus(in IBinder token, int vis, int backDisposition,
34            boolean showImeSwitcher);
35    void setWindowState(int window, int state);
36    void buzzBeepBlinked();
37    void notificationLightOff();
38    void notificationLightPulse(int argb, int millisOn, int millisOff);
39
40    void showRecentApps(boolean triggeredFromAltTab);
41    void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
42    void toggleRecentApps();
43    void preloadRecentApps();
44    void cancelPreloadRecentApps();
45    void showScreenPinningRequest();
46}
47
48