12314aab5064ce09f09270e52fa12a38d07464278Joe Onorato/**
22314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * Copyright (c) 2007, The Android Open Source Project
32314aab5064ce09f09270e52fa12a38d07464278Joe Onorato *
42314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * Licensed under the Apache License, Version 2.0 (the "License");
52314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * you may not use this file except in compliance with the License.
62314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * You may obtain a copy of the License at
72314aab5064ce09f09270e52fa12a38d07464278Joe Onorato *
82314aab5064ce09f09270e52fa12a38d07464278Joe Onorato *     http://www.apache.org/licenses/LICENSE-2.0
92314aab5064ce09f09270e52fa12a38d07464278Joe Onorato *
102314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * Unless required by applicable law or agreed to in writing, software
112314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * distributed under the License is distributed on an "AS IS" BASIS,
122314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * See the License for the specific language governing permissions and
142314aab5064ce09f09270e52fa12a38d07464278Joe Onorato * limitations under the License.
152314aab5064ce09f09270e52fa12a38d07464278Joe Onorato */
162314aab5064ce09f09270e52fa12a38d07464278Joe Onorato
170cbda99f8721ad9b03ada04d2637fb75a2a0fecaJoe Onoratopackage com.android.internal.statusbar;
180cbda99f8721ad9b03ada04d2637fb75a2a0fecaJoe Onorato
190cbda99f8721ad9b03ada04d2637fb75a2a0fecaJoe Onoratoimport com.android.internal.statusbar.StatusBarIcon;
20a0c56fe93925d20d9c0b830b9664699ce557e78cJoe Onoratoimport com.android.internal.statusbar.StatusBarNotification;
212314aab5064ce09f09270e52fa12a38d07464278Joe Onorato
222314aab5064ce09f09270e52fa12a38d07464278Joe Onorato/** @hide */
230cbda99f8721ad9b03ada04d2637fb75a2a0fecaJoe Onoratooneway interface IStatusBar
242314aab5064ce09f09270e52fa12a38d07464278Joe Onorato{
250cbda99f8721ad9b03ada04d2637fb75a2a0fecaJoe Onorato    void setIcon(int index, in StatusBarIcon icon);
260cbda99f8721ad9b03ada04d2637fb75a2a0fecaJoe Onorato    void removeIcon(int index);
27a0c56fe93925d20d9c0b830b9664699ce557e78cJoe Onorato    void addNotification(IBinder key, in StatusBarNotification notification);
28a0c56fe93925d20d9c0b830b9664699ce557e78cJoe Onorato    void updateNotification(IBinder key, in StatusBarNotification notification);
29a0c56fe93925d20d9c0b830b9664699ce557e78cJoe Onorato    void removeNotification(IBinder key);
30f3f0e053f0cc66249a11639eb67d0cdc2da26dedJoe Onorato    void disable(int state);
314762c2d75a55e0854bbff2f996748116d4ab1a37Joe Onorato    void animateExpand();
324762c2d75a55e0854bbff2f996748116d4ab1a37Joe Onorato    void animateCollapse();
3360ee25643e0a7b8841063a4e97b0f18c51807e91Daniel Sandler    void setSystemUiVisibility(int vis);
347d04932ef5c001769ccef244f551b75773f1666bDianne Hackborn    void topAppWindowChanged(boolean menuVisible);
35857fd9b8562c29913e03ed29288bd1802d37dc60Joe Onorato    void setImeWindowStatus(in IBinder token, int vis, int backDisposition);
362992ea782fa61780d8e0de7a36a2a84622f8694bJeff Brown    void setHardKeyboardStatus(boolean available, boolean enabled);
373b1fc47d004f6b29af8f40d181baa3460b1e3b15Michael Jurka    void toggleRecentApps();
382314aab5064ce09f09270e52fa12a38d07464278Joe Onorato}
392314aab5064ce09f09270e52fa12a38d07464278Joe Onorato
40