Tizen Native API
7.0
|
Handle properties of windows.
Required Header
#include <efl_util.h>
Overview
The EFL UTIL WINDOW PROPERTY API provides functions to set/get properties of windows such as the notification level, the screen mode and the brightness.
Functions | |
int | efl_util_set_notification_window_level (Evas_Object *window, efl_util_notification_level_e level) |
Sets the priority level for the specified notification window. | |
int | efl_util_get_notification_window_level (Evas_Object *window, efl_util_notification_level_e *level) |
Gets the priority level for the specified notification window. | |
int | efl_util_set_window_opaque_state (Evas_Object *window, int opaque) |
Sets the alpha window's visual state to opaque state. | |
int | efl_util_set_window_screen_mode (Evas_Object *window, efl_util_screen_mode_e mode) |
Sets the window's screen mode. | |
int | efl_util_get_window_screen_mode (Evas_Object *window, efl_util_screen_mode_e *mode) |
Gets the screen mode of the specified window. | |
int | efl_util_set_window_brightness (Evas_Object *window, int brightness) |
Sets the user's preferred brightness of the specified window. | |
int | efl_util_get_window_brightness (Evas_Object *window, int *brightness) |
Gets the user's preferred brightness of the specified window. |
Enumeration Type Documentation
enum efl_util_error_e |
Enumeration for EFL UTIL ERROR.
- Since :
- 2.3
- Enumerator:
Enumeration of notification window's priority level.
- Since :
- 2.3
- Enumerator:
Function Documentation
int efl_util_get_notification_window_level | ( | Evas_Object * | window, |
efl_util_notification_level_e * | level | ||
) |
Gets the priority level for the specified notification window.
- Since :
- 2.3
- Remarks:
- This API can be used for a notification type window only. Up to the version 2.4, it supports as async APIs. But it is synchronous call since Tizen 3.0
- Parameters:
-
[in] window The EFL window [out] level The notification window level
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE Window type not supported
int efl_util_get_window_brightness | ( | Evas_Object * | window, |
int * | brightness | ||
) |
Gets the user's preferred brightness of the specified window.
- Since :
- 3.0
- Parameters:
-
[in] window The EFL window [out] brightness The preferred brightness
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
- See also:
- efl_util_set_window_brightness()
int efl_util_get_window_screen_mode | ( | Evas_Object * | window, |
efl_util_screen_mode_e * | mode | ||
) |
Gets the screen mode of the specified window.
- Since :
- 2.4
- Parameters:
-
[in] window The EFL window [out] mode The screen mode
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
int efl_util_set_notification_window_level | ( | Evas_Object * | window, |
efl_util_notification_level_e | level | ||
) |
Sets the priority level for the specified notification window.
- Since :
- 2.3
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/window.priority.set
- Remarks:
- This API can be used for a notification type window only. Up to the version 2.4, it supports as async APIs. But it is synchronous call since Tizen 3.0
- Parameters:
-
[in] window The EFL window [in] level The notification window level
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter EFL_UTIL_ERROR_NOT_SUPPORTED_WINDOW_TYPE Window type not supported EFL_UTIL_ERROR_PERMISSION_DENIED Permission denied
int efl_util_set_window_brightness | ( | Evas_Object * | window, |
int | brightness | ||
) |
Sets the user's preferred brightness of the specified window.
This API is useful when the application need to change the brightness of the screen when it is appeared on the screen. If the application sets the brightness 0 to 100 to its window and the application window is shown wholly or partially, the window manager requests the display system to change the brightness of the screen using user's preferred brightness. If the window is no longer shown, then the window manger request the display system to go back to default brightness. If the brightness is less than 0, this means to use the default screen brightness.
- Since :
- 3.0
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/display
- Remarks:
- This API needs the privilege. If the application which is not get the privilege use this API, the window manager generates the permission deny error.
- Parameters:
-
[in] window The EFL window [in] brightness The preferred brightness
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter EFL_UTIL_ERROR_PERMISSION_DENIED Permission denied EFL_UTIL_ERROR_OUT_OF_MEMORY Out of memory
- See also:
- efl_util_get_window_brightness()
int efl_util_set_window_opaque_state | ( | Evas_Object * | window, |
int | opaque | ||
) |
Sets the alpha window's visual state to opaque state.
This API sets the alpha window's visual state to opaque state. If the alpha window sets the visual state to the opaque, then the window manager could handle it as the opaque window while calculating visibility. This API will have no effect when used by a non-alpha window.
- Since :
- 2.4
- Parameters:
-
[in] window The EFL window [in] opaque The value that indicates whether the window has set a visual state to opaque (0: unset, 1: set)
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter
int efl_util_set_window_screen_mode | ( | Evas_Object * | window, |
efl_util_screen_mode_e | mode | ||
) |
Sets the window's screen mode.
This API is useful when the application need to keep the display turned on. If the application set the mode to EFL_UTIL_SCREEN_MODE_ALWAYS_ON to its window and the window is shown wholly or partially, the window manager requests the display system to keep the display on as long as the window is shown. If the window is no longer shown, then the window manger request the display system to go back to normal operation. Default screen mode of window is EFL_UTIL_SCREEN_MODE_DEFAULT.
- Since :
- 2.4
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/display
- Remarks:
- This API needs the privilege. If the application which is not get the privilege use this API, the window manager generates the permission deny error.
- Parameters:
-
[in] window The EFL window [in] mode The screen mode
- Returns:
0
on success, otherwise a negative error value
- Return values:
-
EFL_UTIL_ERROR_NONE Successful EFL_UTIL_ERROR_INVALID_PARAMETER Invalid parameter EFL_UTIL_ERROR_PERMISSION_DENIED Permission denied