StatusBarManagerInternal.java revision f2efdd8c7ca65745245a0ac26c681a8d376adb87
1/**
2 * Copyright (c) 2013, 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.server.statusbar;
18
19import android.graphics.Rect;
20import android.os.Bundle;
21
22import com.android.server.notification.NotificationDelegate;
23
24public interface StatusBarManagerInternal {
25    void setNotificationDelegate(NotificationDelegate delegate);
26    void buzzBeepBlinked();
27    void notificationLightPulse(int argb, int onMillis, int offMillis);
28    void notificationLightOff();
29    void showScreenPinningRequest(int taskId);
30    void showAssistDisclosure();
31
32    void preloadRecentApps();
33
34    void cancelPreloadRecentApps();
35
36    void showRecentApps(boolean triggeredFromAltTab, boolean fromHome);
37
38    void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
39
40    void toggleKeyboardShortcutsMenu(int deviceId);
41
42    /**
43     * Request picture-in-picture.
44     *
45     * <p>
46     * This is called when an user presses picture-in-picture key or equivalent.
47     * TV device may start picture-in-picture from foreground activity if there's none.
48     * Picture-in-picture overlay menu will be shown instead otherwise.
49     */
50    void requestTvPictureInPicture();
51
52    void setWindowState(int window, int state);
53
54    /**
55     * Notifies the status bar that an app transition is pending to delay applying some flags with
56     * visual impact until {@link #appTransitionReady} is called.
57     */
58    void appTransitionPending();
59
60    /**
61     * Notifies the status bar that a pending app transition has been cancelled.
62     */
63    void appTransitionCancelled();
64
65    /**
66     * Notifies the status bar that an app transition is now being executed.
67     *
68     * @param statusBarAnimationsStartTime the desired start time for all visual animations in the
69     *        status bar caused by this app transition in uptime millis
70     * @param statusBarAnimationsDuration the duration for all visual animations in the status
71     *        bar caused by this app transition in millis
72     */
73    void appTransitionStarting(long statusBarAnimationsStartTime, long statusBarAnimationsDuration);
74
75    void startAssist(Bundle args);
76    void onCameraLaunchGestureDetected(int source);
77    void topAppWindowChanged(boolean menuVisible);
78    void setSystemUiVisibility(int vis, int fullscreenStackVis, int dockedStackVis, int mask,
79            Rect fullscreenBounds, Rect dockedBounds, String cause);
80    void toggleSplitScreen();
81    void appTransitionFinished();
82
83    void toggleRecentApps();
84
85    void setCurrentUser(int newUserId);
86}
87