summaryrefslogtreecommitdiff
path: root/src/modules/pager/e_mod_main.h
blob: 40f030192ab7b5b28febcecc1dcc4e3d336f8e44 (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
/*
 * 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_Item Config_Item;

#define PAGER_RESIZE_NONE 0
#define PAGER_RESIZE_HORZ 1
#define PAGER_RESIZE_VERT 2
#define PAGER_RESIZE_BOTH 3

#define PAGER_DESKNAME_NONE   0
#define PAGER_DESKNAME_TOP    1
#define PAGER_DESKNAME_BOTTOM 2
#define PAGER_DESKNAME_LEFT   3
#define PAGER_DESKNAME_RIGHT  4

struct _Config
{
   /* saved * loaded config values */
   unsigned int    popup;
   double          popup_speed;
   unsigned int    popup_urgent;
   unsigned int    popup_urgent_stick;
   double          popup_urgent_speed;
   unsigned int    show_desk_names;
   int             popup_act_height; /*keyaction popup */
   int             popup_height;    /* urgent/on-deskswitch popup*/
   unsigned int    drag_resist;
   unsigned int    btn_drag;
   unsigned int    btn_noplace;
   unsigned int    btn_desk;
   unsigned int    flip_desk;

   /* just config state */
   E_Module        *module;
   E_Config_Dialog *config_dialog;
   Evas_List       *instances;
   E_Menu          *menu;
   Evas_List       *handlers;
};

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);

void  _pager_cb_config_updated(void);
void _config_pager_module(Config_Item *ci);
extern Config *pager_config;

#endif