fc455275e41b261cefbcb71d3bfe7fd97ae53001
[platform/core/api/device.git] / include / display-enum.h
1 #ifndef __TIZEN_SYSTEM_DISPLAY_ENUM_H__
2 #define __TIZEN_SYSTEM_DISPLAY_ENUM_H__
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7 /**
8  * @addtogroup CAPI_SYSTEM_DEVICE_DISPLAY_MODULE
9  * @{
10  */
11 /**
12  * @brief Enumeration for the available display states.
13  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
14  * @remarks #DISPLAY_STATE_SCREEN_DIM may be ignored if the DIM state is disabled on the platform.
15  */
16
17 typedef enum
18 {
19     DISPLAY_STATE_NORMAL, /**< Normal state */
20     DISPLAY_STATE_SCREEN_DIM, /**< Screen dim state */
21     DISPLAY_STATE_SCREEN_OFF, /**< Screen off state */
22 } display_state_e;
23
24 /**
25  * @}
26  */
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif // __TIZEN_SYSTEM_DISPLAY_ENUM_H__