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