enlightenment/src/modules/clock/e_mod_main.h

46 lines
852 B
C
Raw Normal View History

/*
* vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
*/
#ifndef E_MOD_MAIN_H
#define E_MOD_MAIN_H
typedef struct _Config Config;
typedef struct _Clock Clock;
typedef struct _Clock_Face Clock_Face;
struct _Config
{
int dummy; /* just here to hold space */
};
struct _Clock
{
Evas_List *faces;
E_Menu *config_menu;
/* E_Config_DD *conf_edd;*/
Config *conf;
};
struct _Clock_Face
{
Clock *clock;
E_Container *con;
Evas *evas;
E_Menu *menu;
Evas_Object *clock_object;
Evas_Object *event_object;
E_Gadman_Client *gmc;
unsigned char enabled : 1;
};
EAPI void *init (E_Module *module);
EAPI int shutdown (E_Module *module);
EAPI int save (E_Module *module);
EAPI int info (E_Module *module);
EAPI int about (E_Module *module);
#endif