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.
59 lines
1.1 KiB
59 lines
1.1 KiB
#define D_(str) dgettext(PACKAGE, str) |
|
|
|
#ifndef E_MOD_MAIN_H |
|
#define E_MOD_MAIN_H |
|
|
|
#define DEGREES_F 0 |
|
#define DEGREES_C 1 |
|
|
|
typedef struct _Config Config; |
|
typedef struct _Config_Item Config_Item; |
|
typedef struct _Popup Popup; |
|
|
|
struct _Config |
|
{ |
|
E_Module *module; |
|
E_Config_Dialog *config_dialog; |
|
Evas_List *instances; |
|
Evas_List *items; |
|
E_Menu *menu; |
|
}; |
|
|
|
struct _Config_Item |
|
{ |
|
const char *id; |
|
|
|
double poll_time; |
|
int degrees; |
|
const char *host, *code; |
|
int show_text; |
|
}; |
|
|
|
struct _Popup |
|
{ |
|
E_Popup *win; |
|
|
|
int w, h; |
|
|
|
Evas_Object *o_list, *o_bg, *o_ft[3]; |
|
Evas_Object *current_desc; |
|
Evas_Object *wind_chill, *wind_speed; |
|
Evas_Object *icon; |
|
Evas_Object *humidity, *visibility, *pressure, *rising; |
|
Evas_Object *sunrise, *sunset; |
|
Evas_Object *desc[2], *high[2], *low[2], *f_icon[2]; |
|
}; |
|
|
|
EAPI extern E_Module_Api e_modapi; |
|
|
|
EAPI void *e_modapi_init(E_Module *m); |
|
EAPI int e_modapi_shutdown(E_Module *m); |
|
EAPI int e_modapi_save(E_Module *m); |
|
EAPI int e_modapi_about(E_Module *m); |
|
|
|
void _config_forecasts_module(Config_Item *ci); |
|
void _forecasts_config_updated(const char *id); |
|
|
|
extern Config *forecasts_config; |
|
|
|
#endif
|
|
|