enlightenment/src/modules/illume-home/e_busycover.h

31 lines
738 B
C

#ifndef E_BUSYCOVER_H
#define E_BUSYCOVER_H
#define E_BUSYCOVER_TYPE 0xE1b0782
typedef struct _E_Busycover E_Busycover;
typedef struct _E_Busycover_Handle E_Busycover_Handle;
struct _E_Busycover
{
E_Object e_obj_inherit;
E_Zone *zone;
Evas_Object *o_base;
Eina_List *handlers, *handles;
const char *themedir;
};
struct _E_Busycover_Handle
{
E_Busycover *busycover;
const char *msg, *icon;
};
EAPI int e_busycover_init(void);
EAPI int e_busycover_shutdown(void);
EAPI E_Busycover *e_busycover_new(E_Zone *zone, const char *themedir);
EAPI E_Busycover_Handle *e_busycover_push(E_Busycover *esw, const char *msg, const char *icon);
EAPI void e_busycover_pop(E_Busycover *esw, E_Busycover_Handle *handle);
#endif