You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.1 KiB
45 lines
1.1 KiB
/* |
|
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2 |
|
*/ |
|
#ifdef E_TYPEDEFS |
|
|
|
typedef struct _E_Font_Default E_Font_Default; |
|
typedef struct _E_Font_Fallback E_Font_Fallback; |
|
|
|
#else |
|
#ifndef E_FONT_H |
|
#define E_FONT_H |
|
|
|
struct _E_Font_Default |
|
{ |
|
char * text_class; |
|
char * font; |
|
int size; |
|
}; |
|
|
|
struct _E_Font_Fallback |
|
{ |
|
char * name; |
|
}; |
|
|
|
EAPI int e_font_init(void); |
|
EAPI int e_font_shutdown(void); |
|
EAPI void e_font_apply(void); |
|
EAPI Evas_List * e_font_available_list(void); |
|
EAPI void e_font_available_list_free(Evas_List * available); |
|
|
|
/* global font fallbacks */ |
|
EAPI void e_font_fallback_clear(void); |
|
EAPI void e_font_fallback_append(const char * font); |
|
EAPI void e_font_fallback_prepend(const char * font); |
|
EAPI void e_font_fallback_remove(const char * font); |
|
EAPI Evas_List * e_font_fallback_list(void); |
|
|
|
/* setup edje text classes */ |
|
EAPI void e_font_default_set(const char * text_class, const char * font, int size); |
|
EAPI E_Font_Default * e_font_default_get(const char * text_class); |
|
EAPI void e_font_default_remove(const char * text_class); |
|
EAPI Evas_List * e_font_default_list(void); |
|
|
|
#endif |
|
#endif
|
|
|