summaryrefslogtreecommitdiff
path: root/src/modules/temperature/e_mod_main.h
blob: 543dee013901fb8c9e6d91287ef81179a8a3115b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * 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 _Config_Face      Config_Face;
typedef struct _Temperature      Temperature;
typedef struct _Temperature_Face Temperature_Face;
	
typedef enum _Unit
{
   CELCIUS,
   FAHRENHEIT
} Unit;

struct _Config
{
   double poll_time;
   int low, high;
   Evas_List *faces;
   char *sensor_name;
   Unit units;
   int	allow_overlap;
};

struct _Config_Face
{
   unsigned char enabled;
};

struct _Temperature
{
   Config           *conf;
   Ecore_Timer      *temperature_check_timer;
   E_Config_Dialog  *config_dialog;
   unsigned char    have_temp;
   E_Gadget	    *gad;
};

struct _Temperature_Face
{
   Temperature *temp;
   Config_Face *conf;

};

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_info     (E_Module *m);
EAPI int   e_modapi_about    (E_Module *m);
EAPI int   e_modapi_config   (E_Module *m);

void	_temperature_face_cb_config_updated(Temperature *temp);

#endif