blob: cae54b6c0611fbdc640eeb81d53ca5342407ba07 [file] [log] [blame]
Tobias Haamel27b28b32010-02-09 23:09:17 +01001/*
2 * Copyright (C) 2010 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 android.app;
18
19/**
20 * Interface used to control special UI modes.
21 * @hide
22 */
23interface IUiModeManager {
24 /**
25 * Enables the car mode. Only the system can do this.
26 * @hide
27 */
Dianne Hackbornf5c5d222010-04-09 13:14:48 -070028 void enableCarMode(int flags);
Tobias Haamel27b28b32010-02-09 23:09:17 +010029
30 /**
31 * Disables the car mode.
32 */
Dianne Hackbornd49258f2010-03-26 00:44:29 -070033 void disableCarMode(int flags);
Tobias Haamel27b28b32010-02-09 23:09:17 +010034
35 /**
Dianne Hackborn7299c412010-03-04 18:41:49 -080036 * Return the current running mode.
37 */
38 int getCurrentModeType();
39
40 /**
Tobias Haamel27b28b32010-02-09 23:09:17 +010041 * Sets the night mode.
42 * The mode can be one of:
43 * 1 - notnight mode
44 * 2 - night mode
45 * 3 - automatic mode switching
46 */
47 void setNightMode(int mode);
48
49 /**
50 * Gets the currently configured night mode. Return 1 for notnight,
51 * 2 for night, and 3 for automatic mode switching.
52 */
53 int getNightMode();
keunyounga7710492015-09-23 11:33:58 -070054
55 /**
56 * Tells if UI mode is locked or not.
57 */
58 boolean isUiModeLocked();
59
60 /**
61 * Tells if Night mode is locked or not.
62 */
63 boolean isNightModeLocked();
Tobias Haamel27b28b32010-02-09 23:09:17 +010064}