Tizen Native API

Functions

const char * elm_config_profile_get (void)
 Get Elementary's profile in use.
const char * elm_config_profile_dir_get (const char *profile, Eina_Bool is_user)
 Get an Elementary's profile directory path in the filesystem. One may want to fetch a system profile's dir or a user one (fetched inside $HOME).
void elm_config_profile_dir_free (const char *p_dir)
 Free an Elementary's profile directory path, as returned by elm_config_profile_dir_get().
Eina_Listelm_config_profile_list_get (void)
 Get Elementary's list of available profiles.
void elm_config_profile_list_free (Eina_List *l)
 Free Elementary's list of available profiles.
void elm_config_profile_set (const char *profile)
 Set Elementary's profile.

Profiles are pre-set options that affect the whole look-and-feel of Elementary-based applications. There are, for example, profiles aimed at desktop computer applications and others aimed at mobile, touchscreen-based ones. You most probably don't want to use the functions in this group unless you're writing an elementary configuration manager.


Function Documentation

void elm_config_profile_dir_free ( const char *  p_dir)

Free an Elementary's profile directory path, as returned by elm_config_profile_dir_get().

Since :
2.3
Parameters:
[in]p_dirThe profile's path
const char* elm_config_profile_dir_get ( const char *  profile,
Eina_Bool  is_user 
)

Get an Elementary's profile directory path in the filesystem. One may want to fetch a system profile's dir or a user one (fetched inside $HOME).

Since :
2.3
Parameters:
[in]profileThe profile's name
[in]is_userWhether to lookup for a user profile (EINA_TRUE) or a system one (EINA_FALSE)
Returns:
The profile's directory path.
Remarks:
You must free it with elm_config_profile_dir_free().
const char* elm_config_profile_get ( void  )

Get Elementary's profile in use.

Since :
2.3
Remarks:
This gets the global profile that is applied to all Elementary applications.
Returns:
The profile's name

Free Elementary's list of available profiles.

Since :
2.3
Parameters:
[in]lThe profiles list, as returned by elm_config_profile_list_get().

Get Elementary's list of available profiles.

Since :
2.3
Returns:
The profiles list. List node data are the profile name strings.
Remarks:
One must free this list, after usage, with the function elm_config_profile_list_free().
void elm_config_profile_set ( const char *  profile)

Set Elementary's profile.

Since :
2.3
Remarks:
This sets the global profile that is applied to Elementary applications. Just the process the call comes from will be affected.
Parameters:
[in]profileThe profile's name