Functions | |
EAPI int | ecore_config_set (const char *key, const char *val) |
Sets the indicated property to the value indicated by val. | |
EAPI int | ecore_config_as_string_set (const char *key, const char *val) |
Sets the indicated property to the value given in the string. | |
EAPI int | ecore_config_boolean_set (const char *key, int val) |
Sets the indicated property to the given boolean. | |
EAPI int | ecore_config_int_set (const char *key, int val) |
Sets the indicated property to the given integer. | |
EAPI int | ecore_config_string_set (const char *key, const char *val) |
Sets the indicated property to the given string. | |
EAPI int | ecore_config_float_set (const char *key, float val) |
Sets the indicated property to the given float value. | |
EAPI int | ecore_config_argb_set (const char *key, int a, int r, int g, int b) |
Sets the indicated property to a color value. | |
EAPI int | ecore_config_argbint_set (const char *key, long argb) |
Sets the indicated property to a color value. | |
EAPI int | ecore_config_argbstr_set (const char *key, const char *val) |
Sets the indicated property to a color value. | |
EAPI int | ecore_config_theme_set (const char *key, const char *val) |
Sets the indicated property to a theme name. | |
EAPI int | ecore_config_theme_preview_group_set (const char *key, const char *group) |
Sets the theme preview group of an indicated property. |
EAPI int ecore_config_argb_set | ( | const char * | key, | |
int | a, | |||
int | r, | |||
int | g, | |||
int | b | |||
) |
Sets the indicated property to a color value.
key | The property key | |
a | integer 0..255 | |
r | integer 0..255 | |
g | integer 0..255 | |
b | integer 0..255 |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_argbint_set | ( | const char * | key, | |
long | argb | |||
) |
Sets the indicated property to a color value.
key | The property key | |
argb | ARGB data as long |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_argbstr_set | ( | const char * | key, | |
const char * | val | |||
) |
Sets the indicated property to a color value.
key | The property key | |
val | Color value in ARGB format. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_as_string_set | ( | const char * | key, | |
const char * | val | |||
) |
Sets the indicated property to the value given in the string.
key | The property key. | |
val | String representation of the value. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_boolean_set | ( | const char * | key, | |
int | val | |||
) |
Sets the indicated property to the given boolean.
key | The property key. | |
val | Boolean integer to set the property to. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_float_set | ( | const char * | key, | |
float | val | |||
) |
Sets the indicated property to the given float value.
key | The property key. | |
val | Float to set the property to. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_int_set | ( | const char * | key, | |
int | val | |||
) |
Sets the indicated property to the given integer.
key | The property key. | |
val | Integer to set the property to. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_set | ( | const char * | key, | |
const char * | val | |||
) |
Sets the indicated property to the value indicated by val.
key | The property key. | |
val | String representation of value to set. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_string_set | ( | const char * | key, | |
const char * | val | |||
) |
Sets the indicated property to the given string.
key | The property key. | |
val | String to set the property to. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully. EAPI int ecore_config_theme_preview_group_set | ( | const char * | key, | |
const char * | group | |||
) |
Sets the theme preview group of an indicated property.
key | The property key. | |
group | The group name. |
ECORE_CONFIG_ERR_SUCC
on success. EAPI int ecore_config_theme_set | ( | const char * | key, | |
const char * | val | |||
) |
Sets the indicated property to a theme name.
key | The property key. | |
val | String giving the name of the theme. |
ECORE_CONFIG_ERR_SUCC
if the property is set successfully.