blob: a53b25a5d9d63e9c6ce94dc9d7826d715656b114 [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
John Spurlock97642182013-07-29 17:58:39 -040095 @Override // CommandQueue
96 public void setWindowState(int window, int state) {
97 }
98
Christopher Tateacad1832012-02-17 16:01:27 -080099 @Override
100 protected void createAndAddWindows() {
101 }
102
103 @Override
Christopher Tateacad1832012-02-17 16:01:27 -0800104 protected WindowManager.LayoutParams getSearchLayoutParams(
105 LayoutParams layoutParams) {
106 return null;
107 }
108
109 @Override
110 protected void haltTicker() {
111 }
112
113 @Override
114 protected void setAreThereNotifications() {
115 }
116
117 @Override
118 protected void updateNotificationIcons() {
119 }
120
121 @Override
122 protected void tick(IBinder key, StatusBarNotification n, boolean firstTime) {
123 }
124
125 @Override
126 protected void updateExpandedViewPos(int expandedPosition) {
127 }
128
129 @Override
130 protected int getExpandedViewMaxHeight() {
131 return 0;
132 }
133
134 @Override
135 protected boolean shouldDisableNavbarGestures() {
136 return true;
137 }
138
Michael Jurkacb2522c2012-04-13 09:32:47 -0700139 public View getStatusBarView() {
140 return null;
141 }
142
Svetoslav Ganove20a1772012-09-25 16:07:46 -0700143 @Override
Chris Wren51c75102013-07-16 20:49:17 -0400144 public void resetHeadsUpDecayTimer() {
145 }
146
147 @Override
Daniel Sandler11cf1782012-09-27 14:03:08 -0400148 public void animateExpandSettingsPanel() {
Christopher Tateacad1832012-02-17 16:01:27 -0800149 }
Fabrice Di Meglio8afcd142012-07-27 18:27:11 -0700150
151 @Override
152 protected void refreshLayout(int layoutDirection) {
153 }
154
Christopher Tateacad1832012-02-17 16:01:27 -0800155}