blob: cf909f305f760bbf01e871db1f40907e12733637 [file] [log] [blame]
Christopher Tateacad1832012-02-17 16:01:27 -08001/*
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
Christopher Tateacad1832012-02-17 16:01:27 -080019import android.os.IBinder;
John Spurlockde84f0e2013-06-12 12:41:00 -040020import android.service.notification.StatusBarNotification;
Christopher Tateacad1832012-02-17 16:01:27 -080021import android.view.View;
22import android.view.ViewGroup.LayoutParams;
23import android.view.WindowManager;
24
John Spurlockde84f0e2013-06-12 12:41:00 -040025import com.android.internal.statusbar.StatusBarIcon;
26import com.android.systemui.statusbar.BaseStatusBar;
27
Christopher Tateacad1832012-02-17 16:01:27 -080028/*
29 * Status bar implementation for "large screen" products that mostly present no on-screen nav
30 */
31
32public class TvStatusBar extends BaseStatusBar {
Christopher Tateacad1832012-02-17 16:01:27 -080033
34 @Override
35 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) {
36 }
37
38 @Override
39 public void updateIcon(String slot, int index, int viewIndex, StatusBarIcon old,
40 StatusBarIcon icon) {
41 }
42
43 @Override
44 public void removeIcon(String slot, int index, int viewIndex) {
45 }
46
47 @Override
48 public void addNotification(IBinder key, StatusBarNotification notification) {
49 }
50
51 @Override
52 public void updateNotification(IBinder key, StatusBarNotification notification) {
53 }
54
55 @Override
56 public void removeNotification(IBinder key) {
57 }
58
59 @Override
60 public void disable(int state) {
61 }
62
63 @Override
Daniel Sandler11cf1782012-09-27 14:03:08 -040064 public void animateExpandNotificationsPanel() {
Christopher Tateacad1832012-02-17 16:01:27 -080065 }
66
67 @Override
Daniel Sandler11cf1782012-09-27 14:03:08 -040068 public void animateCollapsePanels(int flags) {
Christopher Tateacad1832012-02-17 16:01:27 -080069 }
70
71 @Override
72 public void setSystemUiVisibility(int vis, int mask) {
73 }
74
75 @Override
76 public void topAppWindowChanged(boolean visible) {
77 }
78
79 @Override
80 public void setImeWindowStatus(IBinder token, int vis, int backDisposition) {
81 }
82
83 @Override
84 public void setHardKeyboardStatus(boolean available, boolean enabled) {
85 }
86
87 @Override
88 public void toggleRecentApps() {
89 }
90
91 @Override // CommandQueue
92 public void setNavigationIconHints(int hints) {
93 }
94
95 @Override
96 protected void createAndAddWindows() {
97 }
98
99 @Override
Christopher Tateacad1832012-02-17 16:01:27 -0800100 protected WindowManager.LayoutParams getSearchLayoutParams(
101 LayoutParams layoutParams) {
102 return null;
103 }
104
105 @Override
106 protected void haltTicker() {
107 }
108
109 @Override
110 protected void setAreThereNotifications() {
111 }
112
113 @Override
114 protected void updateNotificationIcons() {
115 }
116
117 @Override
118 protected void tick(IBinder key, StatusBarNotification n, boolean firstTime) {
119 }
120
121 @Override
122 protected void updateExpandedViewPos(int expandedPosition) {
123 }
124
125 @Override
126 protected int getExpandedViewMaxHeight() {
127 return 0;
128 }
129
130 @Override
131 protected boolean shouldDisableNavbarGestures() {
132 return true;
133 }
134
Michael Jurkacb2522c2012-04-13 09:32:47 -0700135 public View getStatusBarView() {
136 return null;
137 }
138
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700139 @Override
Daniel Sandler11cf1782012-09-27 14:03:08 -0400140 public void animateExpandSettingsPanel() {
Christopher Tateacad1832012-02-17 16:01:27 -0800141 }
Fabrice Di Meglio8afcd142012-07-27 18:27:11 -0700142
143 @Override
144 protected void refreshLayout(int layoutDirection) {
145 }
146
Christopher Tateacad1832012-02-17 16:01:27 -0800147}