blob: 7e7fc3aa25f70c964fa6367b5df23f4ad245c454 [file] [log] [blame]
Jorim Jaggiecbab362014-04-23 16:13:15 +02001/*
2 * Copyright (C) 2014 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;
18
19/**
20 * Class to encapsulate all possible status bar states regarding Keyguard.
21 */
22public class StatusBarState {
23
24 /**
25 * The status bar is in the "normal" shade mode.
26 */
27 public static final int SHADE = 0;
28
29 /**
30 * Status bar is currently the Keyguard.
31 */
32 public static final int KEYGUARD = 1;
33
34 /**
35 * Status bar is in the special mode, where it is fully interactive but still locked. So
36 * dismissing the shade will still show the bouncer.
37 */
38 public static final int SHADE_LOCKED = 2;
39
Xiyuan Xiacc3a74f62015-07-22 14:16:34 -070040 /**
41 * Status bar is locked and shows the full screen user switcher.
42 */
43 public static final int FULLSCREEN_USER_SWITCHER = 3;
Jorim Jaggiecbab362014-04-23 16:13:15 +020044}