Tizen Native API
5.5
|
The External Output Manager provides APIs for external outputs.
Required Header
#include <eom.h>
Overview
The External Output Manager (EOM) is for managing external outputs. User can get the information of external outputs and control them via eom API.
Features :
- Get information.(output ID, type, resolution, physical size etc)
- Receive state changing information by callback function. (add, remove, mode change, attribute change)
- - Use external output device.(set attribute, set external window)
Functions | |
int | eom_init (void) |
Initializes External Output Manager (EOM). | |
void | eom_deinit (void) |
Finalizes External Output Manager (EOM). | |
int | eom_set_output_added_cb (eom_output_added_cb callback, void *user_data) |
Registers a callback function to get output connection notification from External Output Manager (EOM) module. | |
int | eom_unset_output_added_cb (eom_output_added_cb callback) |
Unregisters the callback function. | |
int | eom_set_output_removed_cb (eom_output_removed_cb callback, void *user_data) |
Registers a callback function to get output disconnection notification from External Output Manager (EOM) module. | |
int | eom_unset_output_removed_cb (eom_output_removed_cb callback) |
Unregisters the callback function. | |
int | eom_set_mode_changed_cb (eom_mode_changed_cb callback, void *user_data) |
Registers a callback function to get output mode changing notification from External Output Manager (EOM) module. | |
int | eom_unset_mode_changed_cb (eom_mode_changed_cb callback) |
Unregisters the callback function. | |
int | eom_set_attribute_changed_cb (eom_attribute_changed_cb callback, void *user_data) |
Registers a callback function to get output attribute changing notification from External Output Manager (EOM) module. | |
int | eom_unset_attribute_changed_cb (eom_attribute_changed_cb callback) |
Unregisters the callback function. | |
eom_output_id * | eom_get_eom_output_ids (int *count) |
Gets the IDs and count of external output. | |
int | eom_get_output_type (eom_output_id output_id, eom_output_type_e *type) |
Gets type of external output. | |
int | eom_get_output_mode (eom_output_id output_id, eom_output_mode_e *mode) |
Gets mode of external output. | |
int | eom_get_output_attribute (eom_output_id output_id, eom_output_attribute_e *attribute) |
Gets attribute of external output. | |
int | eom_get_output_attribute_state (eom_output_id output_id, eom_output_attribute_state_e *state) |
Gets attribute state of external output. | |
int | eom_get_output_resolution (eom_output_id output_id, int *width, int *height) |
Gets resolution of external output. | |
int | eom_get_output_physical_size (eom_output_id output_id, int *phy_width, int *phy_height) |
Gets physical width/height (millimeters) of external output. | |
int | eom_set_output_attribute (eom_output_id output_id, eom_output_attribute_e attr) |
Sets the attribute of the external output ID. | |
int | eom_set_output_window (eom_output_id output_id, Evas_Object *win) |
Sets window to the external output best resolution of external output device. | |
Typedefs | |
typedef unsigned int | eom_output_id |
Definition for external output ID. | |
typedef void(* | eom_output_added_cb )(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output connection notification. | |
typedef void(* | eom_output_removed_cb )(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output disconnection notification. | |
typedef void(* | eom_mode_changed_cb )(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output mode changing notification. | |
typedef void(* | eom_attribute_changed_cb )(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output attribute changing notification. |
Typedef Documentation
typedef void(* eom_attribute_changed_cb)(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output attribute changing notification.
- Since :
- 2.4
- Parameters:
-
[in] output_id The output id which is connected output [in] user_data The pointer of user data which is passed to eom_attribute_changed_cb() function
typedef void(* eom_mode_changed_cb)(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output mode changing notification.
- Since :
- 2.4
- Parameters:
-
[in] output_id The output id which is connected output [in] user_data The pointer of user data which is passed to eom_mode_changed_cb() function
typedef void(* eom_output_added_cb)(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output connection notification.
- Since :
- 2.4
- Parameters:
-
[in] output_id The output id which is connected output [in] user_data The pointer of user data which is passed to eom_output_added_cb() function
typedef unsigned int eom_output_id |
Definition for external output ID.
- Since :
- 2.4
typedef void(* eom_output_removed_cb)(eom_output_id output_id, void *user_data) |
Called when External Output Manager (EOM) module sends output disconnection notification.
- Since :
- 2.4
- Parameters:
-
[in] output_id The output id which is connected output [in] user_data The pointer of user data which is passed to eom_output_removed_cb() function
Enumeration Type Documentation
enum eom_error_e |
Enumeration of External Output Manager (EOM) error type.
- Since :
- 2.4
- Enumerator:
Enumeration of External Output Manager (EOM) attributes.
- Since :
- 2.4
- Enumerator:
Enumeration of External Output Manager (EOM) attribute state.
- Since :
- 2.4
enum eom_output_mode_e |
enum eom_output_type_e |
Enumeration of external output type.
- Since :
- 2.4
- Enumerator:
Function Documentation
void eom_deinit | ( | void | ) |
Finalizes External Output Manager (EOM).
User should call this function after using EOM to release all resources of EOM.
- Since :
- 2.4
- See also:
- eom_init()
eom_output_id* eom_get_eom_output_ids | ( | int * | count | ) |
Gets the IDs and count of external output.
This function returns the IDs of external output which are available to connect to target device, and the count of them also. User can get the id of external output. which user want to watch.
- Since :
- 2.4
- Remarks:
- User should free return value by using free(). The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- Parameters:
-
[out] count The count of the eom_output_id supported by system
- Returns:
- The array of the eom_output_id if this function succeeds, otherwise NULL
- Return values:
-
The pointer of eom_output_id
- Exceptions:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_OUT_OF_MEMORY Memory allocation failure
- Precondition:
- eom_init()
- See also:
- eom_output_id
- eom_error_e
int eom_get_output_attribute | ( | eom_output_id | output_id, |
eom_output_attribute_e * | attribute | ||
) |
Gets attribute of external output.
- Since :
- 2.4
- Remarks:
- The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- Parameters:
-
[in] output_id The id of external output device [out] attribute The attribute of external output instance
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_get_output_attribute_state | ( | eom_output_id | output_id, |
eom_output_attribute_state_e * | state | ||
) |
Gets attribute state of external output.
- Since :
- 2.4
- Remarks:
- The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- Parameters:
-
[in] output_id The id of external output device [out] state The attribute state of external output instance
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_get_output_mode | ( | eom_output_id | output_id, |
eom_output_mode_e * | mode | ||
) |
Gets mode of external output.
- Since :
- 2.4
- Remarks:
- The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- Parameters:
-
[in] output_id The id of external output device [out] mode The mode of external output instance
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
- See also:
- eom_output_id
- eom_error_e
- eom_output_mode_e
int eom_get_output_physical_size | ( | eom_output_id | output_id, |
int * | phy_width, | ||
int * | phy_height | ||
) |
Gets physical width/height (millimeters) of external output.
- Since :
- 2.4
- Parameters:
-
[in] output_id The id of external output device [out] phy_width The physical mm width of external output instance [out] phy_height The physical mm height of external output instance
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
- See also:
- eom_output_id
- eom_error_e
int eom_get_output_resolution | ( | eom_output_id | output_id, |
int * | width, | ||
int * | height | ||
) |
Gets resolution of external output.
- Since :
- 2.4
- Parameters:
-
[in] output_id The id of external output device [out] width The width of external output instance [out] height The height of external output instance
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
- See also:
- eom_output_id
- eom_error_e
int eom_get_output_type | ( | eom_output_id | output_id, |
eom_output_type_e * | type | ||
) |
Gets type of external output.
- Since :
- 2.4
- Remarks:
- The specific error code can be obtained using the get_last_result() method. Error codes are described in Exception section.
- Parameters:
-
[in] output_id The id of external output device [out] type The type of external output instance
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
- See also:
- eom_output_id
- eom_error_e
- eom_output_type_e
int eom_init | ( | void | ) |
Initializes External Output Manager (EOM).
User should call this function previously for using EOM.
- Since :
- 2.4
- Remarks:
- After all using, call eom_deinit() function for resource returning.
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_CONNECTION_FAILURE The EOM connection failure
- See also:
- eom_deinit()
- eom_error_e
int eom_set_attribute_changed_cb | ( | eom_attribute_changed_cb | callback, |
void * | user_data | ||
) |
Registers a callback function to get output attribute changing notification from External Output Manager (EOM) module.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_attribute_changed_cb() callback function [in] user_data The pointer of user data which is passed to eom_attribute_changed_cb() function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_OUT_OF_MEMORY Memory allocation failure EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_set_mode_changed_cb | ( | eom_mode_changed_cb | callback, |
void * | user_data | ||
) |
Registers a callback function to get output mode changing notification from External Output Manager (EOM) module.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_mode_changed_cb() callback function [in] user_data The pointer of user data which is passed to eom_mode_changed_cb() function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_OUT_OF_MEMORY Memory allocation failure EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_set_output_added_cb | ( | eom_output_added_cb | callback, |
void * | user_data | ||
) |
Registers a callback function to get output connection notification from External Output Manager (EOM) module.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_output_added_cb() callback function [in] user_data The pointer of user data which is passed to eom_output_added_cb() function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_OUT_OF_MEMORY Memory allocation failure EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_set_output_attribute | ( | eom_output_id | output_id, |
eom_output_attribute_e | attr | ||
) |
Sets the attribute of the external output ID.
The application can set the External Output Manager (EOM) attribute to the external output ID. The EOM module manages the windows to display on external output and control the policy of external output. The application can recognize the attribute state and manage the resources when the application receives several notification callback from EOM module.
- Since :
- 2.4
- Parameters:
-
[in] output_id The id of external output device [in] attr The attribute of the external output
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance EOM_ERROR_MESSAGE_SENDING_FAILURE Communication failure with EOM module EOM_ERROR_MESSAGE_OPERATION_FAILURE Operation failure
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
- See also:
- eom_output_id
- eom_error_e
int eom_set_output_removed_cb | ( | eom_output_removed_cb | callback, |
void * | user_data | ||
) |
Registers a callback function to get output disconnection notification from External Output Manager (EOM) module.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_output_removed_cb() callback function [in] user_data The pointer of user data which is passed to eom_output_removed_cb() function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_OUT_OF_MEMORY Memory allocation failure EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_set_output_window | ( | eom_output_id | output_id, |
Evas_Object * | win | ||
) |
Sets window to the external output best resolution of external output device.
- Since :
- 2.4
- Parameters:
-
[in] output_id The id of external output device [in] win The pointer of evas object
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter EOM_ERROR_NO_SUCH_DEVICE Invalid external output instance EOM_ERROR_MESSAGE_SENDING_FAILURE Communication failure with EOM module EOM_ERROR_MESSAGE_OPERATION_FAILURE Operation failure
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
- See also:
- eom_output_id
- eom_error_e
int eom_unset_attribute_changed_cb | ( | eom_attribute_changed_cb | callback | ) |
Unregisters the callback function.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_attribute_changed_cb() callback function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_unset_mode_changed_cb | ( | eom_mode_changed_cb | callback | ) |
Unregisters the callback function.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_mode_changed_cb() callback function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_unset_output_added_cb | ( | eom_output_added_cb | callback | ) |
Unregisters the callback function.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_output_added_cb() callback function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()
int eom_unset_output_removed_cb | ( | eom_output_removed_cb | callback | ) |
Unregisters the callback function.
- Since :
- 2.4
- Parameters:
-
[in] callback The function pointer of eom_output_removed_cb() callback function
- Returns:
- 0 on success, otherwise a negative error value
- Return values:
-
EOM_ERROR_NONE Successful EOM_ERROR_INVALID_PARAMETER Invalid parameter
- Precondition:
- eom_init()
- eom_get_eom_output_ids()