summaryrefslogtreecommitdiff
path: root/src/bin/e_xinerama.h
blob: f802bc3ffe235c4cb92f49b723c5addf63348136 (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
#ifdef E_TYPEDEFS

typedef struct _E_Screen E_Screen;

#else
#ifndef E_XINERAMA_H
#define E_XINERAMA_H

struct _E_Screen
{
   int screen, escreen;
   int x, y, w, h;
};

EINTERN int           e_xinerama_init(void);
EINTERN int           e_xinerama_shutdown(void);
EAPI void             e_xinerama_update(void);
EAPI const Eina_List *e_xinerama_screens_get(void);
EAPI const Eina_List *e_xinerama_screens_all_get(void);
EAPI void e_xinerama_screens_set(Eina_List *screens);
EAPI void             e_xinerama_fake_screen_add(int x, int y, int w, int h);
EAPI Eina_Bool        e_xinerama_fake_screens_exist(void);

#endif
#endif