efl/legacy/elementary/src/lib/elm_app_common.h

31 lines
524 B
C

/**
* @addtogroup App
*
* @{
*/
/**
* Elm_App_View_State
*/
typedef enum
{
ELM_APP_VIEW_STATE_UNKNOWN = 0,
ELM_APP_VIEW_STATE_LIVE,
ELM_APP_VIEW_STATE_PAUSED,
ELM_APP_VIEW_STATE_CLOSED,
ELM_APP_VIEW_STATE_SHALLOW
} Elm_App_View_State;
/**
* @}
*/
char *_dbus_package_to_path(const char *package);
Elm_App_View_State _string_state_to_id(const char *state);
const char *_state_id_to_string(Elm_App_View_State state);
void elm_app_client_view_internal_state_set(Eo *eo, Elm_App_View_State state);