X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fscreen.h;h=1e9697028c8185021c01280e4123ce5ab77b5725;hb=ad44e8a708b6836c9d84be7205457cfa82800a65;hp=1c0a4f7704df918b41c3682362e7aaba88866857;hpb=a86421d7d87dd1336101a7df62878d213020f38b;p=chaz%2Fopenbox diff --git a/openbox/screen.h b/openbox/screen.h index 1c0a4f77..1e969702 100644 --- a/openbox/screen.h +++ b/openbox/screen.h @@ -2,6 +2,7 @@ #define __screen_h #include "geom.h" +#include "client.h" struct Client; @@ -18,13 +19,13 @@ extern gboolean screen_showing_desktop; /*! Orientation of the desktops */ typedef enum { - Orientation_Horz, - Orientation_Vert + Orientation_Horz = 0, + Orientation_Vert = 1 } Orientation; typedef struct DesktopLayout { - guint orientation; - guint start_corner; + Orientation orientation; + Corner start_corner; guint rows; guint columns; } DesktopLayout;