summaryrefslogtreecommitdiff
path: root/src/bin/e_xinerama.c
blob: d30883fe5e7ab04d25db3217c9d7b4de2dde1604 (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
/*
 * vim:ts=8:sw=3:sts=8:noexpandtab:cino=>5n-3f0^-2{2
 */
#include "e.h"

static void _e_xinerama_clean(void);
static void _e_xinerama_update(void);

static Evas_List *all_screens = NULL;
static Evas_List *chosen_screens = NULL;
static Evas_List *fake_screens = NULL;

int
e_xinerama_init(void)
{
   _e_xinerama_update();
   return 1;
}

int
e_xinerama_shutdown(void)
{
   _e_xinerama_clean();
   return 1;
}

void
e_xinerama_update(void)
{
   _e_xinerama_clean();
   _e_xinerama_update();
}

const Evas_List *
e_xinerama_screens_get(void)
{
   if (fake_screens) return fake_screens;
   return chosen_screens;
}

const Evas_List *
e_xinerama_screens_all_get(void)
{
   if (fake_screens) return fake_screens;
   return all_screens;
}

void
e_xinerama_fake_screen_add(int x, int y, int w, int h)
{
   E_Screen *scr;

   scr = calloc(1, sizeof(E_Screen));
   scr->screen = evas_list_count(fake_screens);
   scr->x = x;
   scr->y = y;
   scr->w = w;
   scr->h = h;
   fake_screens = evas_list_append(fake_screens, scr);
}

/* local subsystem functions */
static void
_e_xinerama_clean(void)
{
   while (all_screens)
     {
	free(all_screens->data);
	all_screens = evas_list_remove_list(all_screens, all_screens);
     }
   while (chosen_screens)
     {
	chosen_screens = evas_list_remove_list(chosen_screens, chosen_screens);
     }
}

static void
_e_xinerama_update(void)
{
   int n;
   Ecore_X_Window *roots;
   Evas_List *l;
   
   roots = ecore_x_window_root_list(&n);
   if (roots)
     {
	int i;
	int rw, rh;
	Ecore_X_Window root;
	
	/* more than 1 root window - xinerama wont be active */
	if (n > 1)
	  {
	     free(roots);
	     return;
	  }
	/* first (and only) root window */
	root = roots[0];
	free(roots);
	/* get root size */
	ecore_x_window_size_get(root, &rw, &rh);
	/* get number of xinerama screens */
	n = ecore_x_xinerama_screen_count_get();
	if (n < 1)
	  {
	     E_Screen *scr;
	     
	     scr = calloc(1, sizeof(E_Screen));
	     scr->screen = 0;
	     scr->x = 0;
	     scr->y = 0;
	     scr->w = rw;
	     scr->h = rh;
	     all_screens = evas_list_append(all_screens, scr);
	  }
	else
	  {
	     for (i = 0; i < n; i++)
	       {
		  int x, y, w, h;
		  
		  /* get each xinerama screen geometry */
		  if (ecore_x_xinerama_screen_geometry_get(i, &x, &y, &w, &h))
		    {
		       E_Screen *scr;
		       
		       printf("E17 INIT: XINERAMA SCREEN: [%i], %ix%i+%i+%i\n",
			      i, w, h, x, y);
		       /* add it to our list */
		       scr = calloc(1, sizeof(E_Screen));
		       scr->screen = i;
		       scr->x = x;
		       scr->y = y;
		       scr->w = w;
		       scr->h = h;
		       all_screens = evas_list_append(all_screens, scr);
		    }
	       }
	  }
     }
   /* now go through all_screens... and build a list of chosen screens */
   for (l = all_screens; l; l = l->next)
     {
	Evas_List *ll;
	E_Screen *scr;
	int add = 0;
	Evas_List *removes;
	
	scr = l->data;
	add = 1;
	removes = NULL;
	/* does this screen intersect with any we have chosen? */
	for (ll = chosen_screens; ll; ll = ll->next)
	  {
	     E_Screen *scr2;
	     
	     scr2 = ll->data;
	     /* if they intersect */
	     if (E_INTERSECTS(scr->x, scr->y, scr->w, scr->h,
			      scr2->x, scr2->y, scr2->w, scr2->h))
	       {
		  int sz, sz2;
		  
		  /* calculate pixel area */
		  sz = scr->w * scr->h;
		  sz2 = scr2->w * scr2->h;
		  /* if the one we already have is bigger, DONT add the new */
		  if (sz2 >= sz)
		    add = 0;
		  /* add the old to a list to remove */
		  else
		    removes = evas_list_append(removes, scr);
	       }
	  }
	/* if there are screens to remove - remove them */
	while (removes)
	  {
	     chosen_screens = evas_list_remove(chosen_screens, removes->data);
	     removes = evas_list_remove_list(removes, removes);
	  }
	/* if this screen is to be added, add it */
	if (add)
	  {
	     printf("E17 INIT: XINERAMA CHOSEN: [%i], %ix%i+%i+%i\n",
		    scr->screen, scr->w, scr->h, scr->x, scr->y); 
	     chosen_screens = evas_list_append(chosen_screens, scr);
	  }
     }
}