TvStatusBar.java revision d7daab7b9e33cd56f2692b9ebea87ef21290c1ea
1/*
2 * Copyright (C) 2012 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.systemui.statusbar.tv;
18
19import android.os.IBinder;
20import android.service.notification.StatusBarNotification;
21import android.view.View;
22import android.view.ViewGroup.LayoutParams;
23import android.view.WindowManager;
24
25import com.android.internal.policy.IKeyguardShowCallback;
26import com.android.internal.statusbar.StatusBarIcon;
27import com.android.systemui.statusbar.BaseStatusBar;
28
29/*
30 * Status bar implementation for "large screen" products that mostly present no on-screen nav
31 */
32
33public class TvStatusBar extends BaseStatusBar {
34
35    @Override
36    public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) {
37    }
38
39    @Override
40    public void updateIcon(String slot, int index, int viewIndex, StatusBarIcon old,
41            StatusBarIcon icon) {
42    }
43
44    @Override
45    public void removeIcon(String slot, int index, int viewIndex) {
46    }
47
48    @Override
49    public void addNotification(IBinder key, StatusBarNotification notification) {
50    }
51
52    @Override
53    public void updateNotification(IBinder key, StatusBarNotification notification) {
54    }
55
56    @Override
57    public void removeNotification(IBinder key) {
58    }
59
60    @Override
61    public void disable(int state) {
62    }
63
64    @Override
65    public void animateExpandNotificationsPanel() {
66    }
67
68    @Override
69    public void animateCollapsePanels(int flags) {
70    }
71
72    @Override
73    public void setSystemUiVisibility(int vis, int mask) {
74    }
75
76    @Override
77    public void topAppWindowChanged(boolean visible) {
78    }
79
80    @Override
81    public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
82            boolean showImeSwitcher) {
83    }
84
85    @Override
86    public void setHardKeyboardStatus(boolean available, boolean enabled) {
87    }
88
89    @Override
90    public void toggleRecentApps() {
91    }
92
93    @Override // CommandQueue
94    public void setWindowState(int window, int state) {
95    }
96
97    @Override
98    protected WindowManager.LayoutParams getSearchLayoutParams(
99            LayoutParams layoutParams) {
100        return null;
101    }
102
103    @Override
104    protected void haltTicker() {
105    }
106
107    @Override
108    protected void setAreThereNotifications() {
109    }
110
111    @Override
112    protected void updateNotificationIcons() {
113    }
114
115    @Override
116    protected void tick(IBinder key, StatusBarNotification n, boolean firstTime) {
117    }
118
119    @Override
120    protected void updateExpandedViewPos(int expandedPosition) {
121    }
122
123    @Override
124    protected boolean shouldDisableNavbarGestures() {
125        return true;
126    }
127
128    public View getStatusBarView() {
129        return null;
130    }
131
132    @Override
133    public void resetHeadsUpDecayTimer() {
134    }
135
136    @Override
137    protected int getMaxKeyguardNotifications() {
138        return 0;
139    }
140
141    @Override
142    public void animateExpandSettingsPanel() {
143    }
144
145    @Override
146    protected void createAndAddWindows() {
147    }
148
149    @Override
150    protected void refreshLayout(int layoutDirection) {
151    }
152
153}
154