summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoe Onorato <joeo@google.com>2010-11-24 10:26:50 -0800
committerJoe Onorato <joeo@google.com>2010-11-24 10:26:50 -0800
commit29fc2c9705e1bb8ae098fca016032d2325031587 (patch)
tree2b7e7ed7a40e3d31fa843094f31ecfb4fb257a19 /include
parent93fbae34ce8b6a1907b6f1daf42f17e3f0025346 (diff)
downloadframeworks_base-29fc2c9705e1bb8ae098fca016032d2325031587.zip
frameworks_base-29fc2c9705e1bb8ae098fca016032d2325031587.tar.gz
frameworks_base-29fc2c9705e1bb8ae098fca016032d2325031587.tar.bz2
Allow status bar panels to be on top of the status bar.
Change-Id: I3c74ece5f7042e6302717f4263746d59d5447ec9
Diffstat (limited to 'include')
-rw-r--r--include/ui/InputDispatcher.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ui/InputDispatcher.h b/include/ui/InputDispatcher.h
index 15a3925..d0812de 100644
--- a/include/ui/InputDispatcher.h
+++ b/include/ui/InputDispatcher.h
@@ -179,8 +179,10 @@ struct InputWindow {
TYPE_INPUT_METHOD = FIRST_SYSTEM_WINDOW+11,
TYPE_INPUT_METHOD_DIALOG= FIRST_SYSTEM_WINDOW+12,
TYPE_WALLPAPER = FIRST_SYSTEM_WINDOW+13,
- TYPE_STATUS_BAR_PANEL = FIRST_SYSTEM_WINDOW+14,
+ TYPE_STATUS_BAR_SUB_PANEL = FIRST_SYSTEM_WINDOW+14,
TYPE_SECURE_SYSTEM_OVERLAY = FIRST_SYSTEM_WINDOW+15,
+ TYPE_DRAG = FIRST_SYSTEM_WINDOW+16,
+ TYPE_STATUS_BAR_PANEL = FIRST_SYSTEM_WINDOW+17,
LAST_SYSTEM_WINDOW = 2999,
};