Functions |
Eina_List * | elm_config_color_classes_list_get (void) |
| Gets Elementary's list of supported color classes.
|
void | elm_config_color_classes_list_free (Eina_List *list) |
| Frees Elementary's list of supported color classes.
|
const Eina_List * | elm_config_color_overlay_list_get (void) |
| Gets Elementary's list of color overlays, set with elm_config_color_overlay_set().
|
void | elm_config_color_overlay_set (const char *color_class, int r, int g, int b, int a, int r2, int g2, int b2, int a2, int r3, int g3, int b3, int a3) |
| Sets a color overlay for a given Elementary color class.
|
void | elm_config_color_overlay_unset (const char *color_class) |
| Unsets a color overlay for a given Elementary color class.
|
void | elm_config_color_overlay_apply (void) |
| Applies the changes made with elm_config_color_overlay_set() and elm_config_color_overlay_unset() on the current Elementary window.
|
Configuration for Elementary colors.
Function Documentation
Gets Elementary's list of supported color classes.
- Since (EFL) :
- 1.10
- Since :
- 2.3.1
- Returns:
- The color classes list with
Elm_Color_Class
blobs as data
void elm_config_color_overlay_set |
( |
const char * |
color_class, |
|
|
int |
r, |
|
|
int |
g, |
|
|
int |
b, |
|
|
int |
a, |
|
|
int |
r2, |
|
|
int |
g2, |
|
|
int |
b2, |
|
|
int |
a2, |
|
|
int |
r3, |
|
|
int |
g3, |
|
|
int |
b3, |
|
|
int |
a3 |
|
) |
| |
Sets a color overlay for a given Elementary color class.
- Since (EFL) :
- 1.10
- Since :
- 2.3.1
- Parameters:
-
[in] | color_class | The color class name |
[in] | r | The object red value |
[in] | g | The object green value |
[in] | b | The object blue value |
[in] | a | The object alpha value |
[in] | r2 | The outline red value |
[in] | g2 | The outline green value |
[in] | b2 | The outline blue value |
[in] | a2 | The outline alpha value |
[in] | r3 | The shadow red value |
[in] | g3 | The shadow green value |
[in] | b3 | The shadow blue value |
[in] | a3 | The shadow alpha value |
- See also:
- elm_config_color_overlay_list_get()
-
elm_config_color_overlay_unset()
-
edje_color_class_set()
Unsets a color overlay for a given Elementary color class.
- Since (EFL) :
- 1.10
- Since :
- 2.3.1
- Parameters:
-
[in] | color_class | The color class name |