First version of Xinerama support

This commit is contained in:
Michael Stapelberg
2009-02-13 18:15:10 +01:00
parent 764946df5f
commit af6aee4f4f
3 changed files with 79 additions and 23 deletions

4
data.h
View File

@ -36,6 +36,7 @@ struct Workspace {
int y;
int width;
int height;
int screen_num;
int num;
/* table dimensions */
@ -129,6 +130,9 @@ struct Container {
/* Position of the container inside our table */
int row;
int col;
/* Xinerama: X/Y of the container */
int x;
int y;
/* Width/Height of the container. Changeable by the user */
int width;
int height;