IStatusBar.aidl revision cde0a2a9ea00d6e4acfe6ce7a7c9061343df7fa3
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 state1, int state2);
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     * Notifies the status bar that an app transition is pending to delay applying some flags with
49     * visual impact until {@link #appTransitionReady} is called.
50     */
51    void appTransitionPending();
52
53    /**
54     * Notifies the status bar that a pending app transition has been cancelled.
55     */
56    void appTransitionCancelled();
57
58    /**
59     * Notifies the status bar that an app transition is now being executed.
60     *
61     * @param statusBarAnimationsStartTime the desired start time for all visual animations in the
62     *        status bar caused by this app transition in uptime millis
63     * @param statusBarAnimationsDuration the duration for all visual animations in the status
64     *        bar caused by this app transition in millis
65     */
66    void appTransitionStarting(long statusBarAnimationsStartTime, long statusBarAnimationsDuration);
67}
68
69